pci-ecam.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * Copyright 2016 Broadcom
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License, version 2, as
  6. * published by the Free Software Foundation (the "GPL").
  7. *
  8. * This program is distributed in the hope that it will be useful, but
  9. * WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. * General Public License version 2 (GPLv2) for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * version 2 (GPLv2) along with this source code.
  15. */
  16. #ifndef DRIVERS_PCI_ECAM_H
  17. #define DRIVERS_PCI_ECAM_H
  18. #include <linux/kernel.h>
  19. #include <linux/platform_device.h>
  20. /*
  21. * struct to hold pci ops and bus shift of the config window
  22. * for a PCI controller.
  23. */
  24. struct pci_config_window;
  25. struct pci_ecam_ops {
  26. unsigned int bus_shift;
  27. struct pci_ops pci_ops;
  28. int (*init)(struct pci_config_window *);
  29. };
  30. /*
  31. * struct to hold the mappings of a config space window. This
  32. * is expected to be used as sysdata for PCI controllers that
  33. * use ECAM.
  34. */
  35. struct pci_config_window {
  36. struct resource res;
  37. struct resource busr;
  38. void *priv;
  39. struct pci_ecam_ops *ops;
  40. union {
  41. void __iomem *win; /* 64-bit single mapping */
  42. void __iomem **winp; /* 32-bit per-bus mapping */
  43. };
  44. struct device *parent;/* ECAM res was from this dev */
  45. };
  46. /* create and free pci_config_window */
  47. struct pci_config_window *pci_ecam_create(struct device *dev,
  48. struct resource *cfgres, struct resource *busr,
  49. struct pci_ecam_ops *ops);
  50. void pci_ecam_free(struct pci_config_window *cfg);
  51. /* map_bus when ->sysdata is an instance of pci_config_window */
  52. void __iomem *pci_ecam_map_bus(struct pci_bus *bus, unsigned int devfn,
  53. int where);
  54. /* default ECAM ops */
  55. extern struct pci_ecam_ops pci_generic_ecam_ops;
  56. #ifdef CONFIG_PCI_HOST_GENERIC
  57. /* for DT-based PCI controllers that support ECAM */
  58. int pci_host_common_probe(struct platform_device *pdev,
  59. struct pci_ecam_ops *ops);
  60. #endif
  61. #endif