pci-keystone.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * Keystone PCI Controller's common includes
  3. *
  4. * Copyright (C) 2013-2014 Texas Instruments., Ltd.
  5. * http://www.ti.com
  6. *
  7. * Author: Murali Karicheri <m-karicheri2@ti.com>
  8. *
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License version 2 as
  12. * published by the Free Software Foundation.
  13. */
  14. #define MAX_LEGACY_IRQS 4
  15. #define MAX_MSI_HOST_IRQS 8
  16. #define MAX_LEGACY_HOST_IRQS 4
  17. struct keystone_pcie {
  18. struct pcie_port pp; /* pp.dbi_base is DT 0th res */
  19. struct clk *clk;
  20. /* PCI Device ID */
  21. u32 device_id;
  22. int num_legacy_host_irqs;
  23. int legacy_host_irqs[MAX_LEGACY_HOST_IRQS];
  24. struct device_node *legacy_intc_np;
  25. int num_msi_host_irqs;
  26. int msi_host_irqs[MAX_MSI_HOST_IRQS];
  27. struct device_node *msi_intc_np;
  28. struct irq_domain *legacy_irq_domain;
  29. struct device_node *np;
  30. int error_irq;
  31. /* Application register space */
  32. void __iomem *va_app_base; /* DT 1st resource */
  33. struct resource app;
  34. };
  35. /* Keystone DW specific MSI controller APIs/definitions */
  36. void ks_dw_pcie_handle_msi_irq(struct keystone_pcie *ks_pcie, int offset);
  37. phys_addr_t ks_dw_pcie_get_msi_addr(struct pcie_port *pp);
  38. /* Keystone specific PCI controller APIs */
  39. void ks_dw_pcie_enable_legacy_irqs(struct keystone_pcie *ks_pcie);
  40. void ks_dw_pcie_handle_legacy_irq(struct keystone_pcie *ks_pcie, int offset);
  41. void ks_dw_pcie_enable_error_irq(struct keystone_pcie *ks_pcie);
  42. irqreturn_t ks_dw_pcie_handle_error_irq(struct keystone_pcie *ks_pcie);
  43. int ks_dw_pcie_host_init(struct keystone_pcie *ks_pcie,
  44. struct device_node *msi_intc_np);
  45. int ks_dw_pcie_wr_other_conf(struct pcie_port *pp, struct pci_bus *bus,
  46. unsigned int devfn, int where, int size, u32 val);
  47. int ks_dw_pcie_rd_other_conf(struct pcie_port *pp, struct pci_bus *bus,
  48. unsigned int devfn, int where, int size, u32 *val);
  49. void ks_dw_pcie_setup_rc_app_regs(struct keystone_pcie *ks_pcie);
  50. int ks_dw_pcie_link_up(struct pcie_port *pp);
  51. void ks_dw_pcie_initiate_link_train(struct keystone_pcie *ks_pcie);
  52. void ks_dw_pcie_msi_set_irq(struct pcie_port *pp, int irq);
  53. void ks_dw_pcie_msi_clear_irq(struct pcie_port *pp, int irq);
  54. void ks_dw_pcie_v3_65_scan_bus(struct pcie_port *pp);
  55. int ks_dw_pcie_msi_host_init(struct pcie_port *pp,
  56. struct msi_controller *chip);