fixup-pnx8550.c 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * Philips PNX8550 pci fixups.
  3. *
  4. * Copyright 2005 Embedded Alley Solutions, Inc
  5. * source@embeddealley.com
  6. *
  7. * This program is free software; you can distribute it and/or modify it
  8. * under the terms of the GNU General Public License (Version 2) as
  9. * published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope it will be useful, but WITHOUT
  12. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  14. * for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License along
  17. * with this program; if not, write to the Free Software Foundation, Inc.,
  18. * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
  19. */
  20. #include <linux/types.h>
  21. #include <linux/pci.h>
  22. #include <linux/kernel.h>
  23. #include <linux/init.h>
  24. #include <asm/mach-pnx8550/pci.h>
  25. #include <asm/mach-pnx8550/int.h>
  26. #undef DEBUG
  27. #ifdef DEBUG
  28. #define DBG(x...) printk(x)
  29. #else
  30. #define DBG(x...)
  31. #endif
  32. extern char pnx8550_irq_tab[][5];
  33. void __init pcibios_fixup_resources(struct pci_dev *dev)
  34. {
  35. /* no need to fixup IO resources */
  36. }
  37. void __init pcibios_fixup(void)
  38. {
  39. /* nothing to do here */
  40. }
  41. int __init pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
  42. {
  43. return pnx8550_irq_tab[slot][pin];
  44. }
  45. /* Do platform specific device initialization at pci_enable_device() time */
  46. int pcibios_plat_dev_init(struct pci_dev *dev)
  47. {
  48. return 0;
  49. }