ops-dreamcast.c 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /*
  2. * PCI operations for the Sega Dreamcast
  3. *
  4. * Copyright (C) 2001, 2002 M. R. Brown
  5. * Copyright (C) 2002, 2003 Paul Mundt
  6. *
  7. * This file is subject to the terms and conditions of the GNU General Public
  8. * License. See the file "COPYING" in the main directory of this archive
  9. * for more details.
  10. */
  11. #include <linux/sched.h>
  12. #include <linux/kernel.h>
  13. #include <linux/param.h>
  14. #include <linux/interrupt.h>
  15. #include <linux/init.h>
  16. #include <linux/irq.h>
  17. #include <linux/pci.h>
  18. #include <linux/module.h>
  19. #include <linux/io.h>
  20. #include <mach/pci.h>
  21. /*
  22. * The !gapspci_config_access case really shouldn't happen, ever, unless
  23. * someone implicitly messes around with the last devfn value.. otherwise we
  24. * only support a single device anyways, and if we didn't have a BBA, we
  25. * wouldn't make it terribly far through the PCI setup anyways.
  26. *
  27. * Also, we could very easily support both Type 0 and Type 1 configurations
  28. * here, but since it doesn't seem that there is any such implementation in
  29. * existence, we don't bother.
  30. *
  31. * I suppose if someone actually gets around to ripping the chip out of
  32. * the BBA and hanging some more devices off of it, then this might be
  33. * something to take into consideration. However, due to the cost of the BBA,
  34. * and the general lack of activity by DC hardware hackers, this doesn't seem
  35. * likely to happen anytime soon.
  36. */
  37. static int gapspci_config_access(unsigned char bus, unsigned int devfn)
  38. {
  39. return (bus == 0) && (devfn == 0);
  40. }
  41. /*
  42. * We can also actually read and write in b/w/l sizes! Thankfully this part
  43. * was at least done right, and we don't have to do the stupid masking and
  44. * shifting that we do on the 7751! Small wonders never cease to amaze.
  45. */
  46. static int gapspci_read(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 *val)
  47. {
  48. *val = 0xffffffff;
  49. if (!gapspci_config_access(bus->number, devfn))
  50. return PCIBIOS_DEVICE_NOT_FOUND;
  51. switch (size) {
  52. case 1: *val = inb(GAPSPCI_BBA_CONFIG+where); break;
  53. case 2: *val = inw(GAPSPCI_BBA_CONFIG+where); break;
  54. case 4: *val = inl(GAPSPCI_BBA_CONFIG+where); break;
  55. }
  56. return PCIBIOS_SUCCESSFUL;
  57. }
  58. static int gapspci_write(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 val)
  59. {
  60. if (!gapspci_config_access(bus->number, devfn))
  61. return PCIBIOS_DEVICE_NOT_FOUND;
  62. switch (size) {
  63. case 1: outb(( u8)val, GAPSPCI_BBA_CONFIG+where); break;
  64. case 2: outw((u16)val, GAPSPCI_BBA_CONFIG+where); break;
  65. case 4: outl((u32)val, GAPSPCI_BBA_CONFIG+where); break;
  66. }
  67. return PCIBIOS_SUCCESSFUL;
  68. }
  69. struct pci_ops gapspci_pci_ops = {
  70. .read = gapspci_read,
  71. .write = gapspci_write,
  72. };