Paul Mundt | 5283ecb | 2006-09-27 15:59:17 +0900 | [diff] [blame^] | 1 | /* |
| 2 | * arch/sh/drivers/pci/fixups-r7780rp.c |
| 3 | * |
| 4 | * Highlander R7780RP-1 PCI fixups |
| 5 | * |
| 6 | * Copyright (C) 2003 Lineo uSolutions, Inc. |
| 7 | * Copyright (C) 2004 Paul Mundt |
| 8 | * |
| 9 | * This file is subject to the terms and conditions of the GNU General Public |
| 10 | * License. See the file "COPYING" in the main directory of this archive |
| 11 | * for more details. |
| 12 | */ |
| 13 | #include "pci-sh7780.h" |
| 14 | #include <asm/io.h> |
| 15 | |
| 16 | int pci_fixup_pcic(void) |
| 17 | { |
| 18 | outl(0x000043ff, PCI_REG(SH7780_PCIIMR)); |
| 19 | outl(0x0000380f, PCI_REG(SH7780_PCIAINTM)); |
| 20 | |
| 21 | outl(0xfbb00047, PCI_REG(SH7780_PCICMD)); |
| 22 | outl(0x00000000, PCI_REG(SH7780_PCIIBAR)); |
| 23 | |
| 24 | outl(0x00011912, PCI_REG(SH7780_PCISVID)); |
| 25 | outl(0x08000000, PCI_REG(SH7780_PCICSCR0)); |
| 26 | outl(0x0000001b, PCI_REG(SH7780_PCICSAR0)); |
| 27 | outl(0xfd000000, PCI_REG(SH7780_PCICSCR1)); |
| 28 | outl(0x0000000f, PCI_REG(SH7780_PCICSAR1)); |
| 29 | |
| 30 | outl(0xfd000000, PCI_REG(SH7780_PCIMBR0)); |
| 31 | outl(0x00fc0000, PCI_REG(SH7780_PCIMBMR0)); |
| 32 | |
| 33 | /* Set IOBR for windows containing area specified in pci.h */ |
| 34 | outl((PCIBIOS_MIN_IO & ~(SH7780_PCI_IO_SIZE-1)), PCI_REG(SH7780_PCIIOBR)); |
| 35 | outl(((SH7780_PCI_IO_SIZE-1) & (7<<18)), PCI_REG(SH7780_PCIIOBMR)); |
| 36 | |
| 37 | return 0; |
| 38 | } |
| 39 | |