pcie-designware.h 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /*
  2. * Synopsys Designware PCIe host controller driver
  3. *
  4. * Copyright (C) 2013 Samsung Electronics Co., Ltd.
  5. * http://www.samsung.com
  6. *
  7. * Author: Jingoo Han <jg1.han@samsung.com>
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2 as
  11. * published by the Free Software Foundation.
  12. */
  13. #ifndef _PCIE_DESIGNWARE_H
  14. #define _PCIE_DESIGNWARE_H
  15. /*
  16. * Maximum number of MSI IRQs can be 256 per controller. But keep
  17. * it 32 as of now. Probably we will never need more than 32. If needed,
  18. * then increment it in multiple of 32.
  19. */
  20. #define MAX_MSI_IRQS 32
  21. #define MAX_MSI_CTRLS (MAX_MSI_IRQS / 32)
  22. /* Parameters for the waiting for link up routine */
  23. #define LINK_WAIT_MAX_RETRIES 10
  24. #define LINK_WAIT_USLEEP_MIN 90000
  25. #define LINK_WAIT_USLEEP_MAX 100000
  26. struct pcie_port {
  27. struct device *dev;
  28. u8 root_bus_nr;
  29. void __iomem *dbi_base;
  30. u64 cfg0_base;
  31. void __iomem *va_cfg0_base;
  32. u32 cfg0_size;
  33. u64 cfg1_base;
  34. void __iomem *va_cfg1_base;
  35. u32 cfg1_size;
  36. resource_size_t io_base;
  37. phys_addr_t io_bus_addr;
  38. u32 io_size;
  39. u64 mem_base;
  40. phys_addr_t mem_bus_addr;
  41. u32 mem_size;
  42. struct resource *cfg;
  43. struct resource *io;
  44. struct resource *mem;
  45. struct resource *busn;
  46. int irq;
  47. u32 lanes;
  48. struct pcie_host_ops *ops;
  49. int msi_irq;
  50. struct irq_domain *irq_domain;
  51. unsigned long msi_data;
  52. DECLARE_BITMAP(msi_irq_in_use, MAX_MSI_IRQS);
  53. };
  54. struct pcie_host_ops {
  55. void (*readl_rc)(struct pcie_port *pp,
  56. void __iomem *dbi_base, u32 *val);
  57. void (*writel_rc)(struct pcie_port *pp,
  58. u32 val, void __iomem *dbi_base);
  59. int (*rd_own_conf)(struct pcie_port *pp, int where, int size, u32 *val);
  60. int (*wr_own_conf)(struct pcie_port *pp, int where, int size, u32 val);
  61. int (*rd_other_conf)(struct pcie_port *pp, struct pci_bus *bus,
  62. unsigned int devfn, int where, int size, u32 *val);
  63. int (*wr_other_conf)(struct pcie_port *pp, struct pci_bus *bus,
  64. unsigned int devfn, int where, int size, u32 val);
  65. int (*link_up)(struct pcie_port *pp);
  66. void (*host_init)(struct pcie_port *pp);
  67. void (*msi_set_irq)(struct pcie_port *pp, int irq);
  68. void (*msi_clear_irq)(struct pcie_port *pp, int irq);
  69. phys_addr_t (*get_msi_addr)(struct pcie_port *pp);
  70. u32 (*get_msi_data)(struct pcie_port *pp, int pos);
  71. void (*scan_bus)(struct pcie_port *pp);
  72. int (*msi_host_init)(struct pcie_port *pp, struct msi_controller *chip);
  73. };
  74. int dw_pcie_cfg_read(void __iomem *addr, int size, u32 *val);
  75. int dw_pcie_cfg_write(void __iomem *addr, int size, u32 val);
  76. irqreturn_t dw_handle_msi_irq(struct pcie_port *pp);
  77. void dw_pcie_msi_init(struct pcie_port *pp);
  78. int dw_pcie_wait_for_link(struct pcie_port *pp);
  79. int dw_pcie_link_up(struct pcie_port *pp);
  80. void dw_pcie_setup_rc(struct pcie_port *pp);
  81. int dw_pcie_host_init(struct pcie_port *pp);
  82. #endif /* _PCIE_DESIGNWARE_H */