fixup-loongson3.c 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * fixup-loongson3.c
  3. *
  4. * Copyright (C) 2012 Lemote, Inc.
  5. * Author: Xiang Yu, xiangy@lemote.com
  6. * Chen Huacai, chenhc@lemote.com
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU General Public License as published by the
  10. * Free Software Foundation; either version 2 of the License, or (at your
  11. * option) any later version.
  12. *
  13. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
  14. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  15. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
  16. * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  17. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  18. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  19. * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  20. * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  21. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  22. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  23. *
  24. */
  25. #include <linux/pci.h>
  26. #include <boot_param.h>
  27. static void print_fixup_info(const struct pci_dev *pdev)
  28. {
  29. dev_info(&pdev->dev, "Device %x:%x, irq %d\n",
  30. pdev->vendor, pdev->device, pdev->irq);
  31. }
  32. int __init pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
  33. {
  34. print_fixup_info(dev);
  35. return dev->irq;
  36. }
  37. static void pci_fixup_radeon(struct pci_dev *pdev)
  38. {
  39. struct resource *res = &pdev->resource[PCI_ROM_RESOURCE];
  40. if (res->start)
  41. return;
  42. if (!loongson_sysconf.vgabios_addr)
  43. return;
  44. pci_disable_rom(pdev);
  45. if (res->parent)
  46. release_resource(res);
  47. res->start = virt_to_phys((void *) loongson_sysconf.vgabios_addr);
  48. res->end = res->start + 256*1024 - 1;
  49. res->flags = IORESOURCE_MEM | IORESOURCE_ROM_SHADOW |
  50. IORESOURCE_PCI_FIXED;
  51. dev_info(&pdev->dev, "BAR %d: assigned %pR for Radeon ROM\n",
  52. PCI_ROM_RESOURCE, res);
  53. }
  54. DECLARE_PCI_FIXUP_CLASS_FINAL(PCI_VENDOR_ID_ATI, PCI_ANY_ID,
  55. PCI_CLASS_DISPLAY_VGA, 8, pci_fixup_radeon);
  56. /* Do platform specific device initialization at pci_enable_device() time */
  57. int pcibios_plat_dev_init(struct pci_dev *dev)
  58. {
  59. return 0;
  60. }