Thomas Gleixner | 1a59d1b8 | 2019-05-27 08:55:05 +0200 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * fixup-tb0219.c, The TANBAC TB0219 specific PCI fixups. |
| 4 | * |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 5 | * Copyright (C) 2003 Megasolution Inc. <matsu@megasolution.jp> |
Yoichi Yuasa | ada8e95 | 2009-07-03 00:39:38 +0900 | [diff] [blame] | 6 | * Copyright (C) 2004-2005 Yoichi Yuasa <yuasa@linux-mips.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | */ |
| 8 | #include <linux/init.h> |
| 9 | #include <linux/pci.h> |
| 10 | |
| 11 | #include <asm/vr41xx/tb0219.h> |
| 12 | |
Manuel Lauss | 8eba365 | 2017-09-12 20:36:28 +0200 | [diff] [blame] | 13 | int pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | { |
| 15 | int irq = -1; |
| 16 | |
| 17 | switch (slot) { |
| 18 | case 12: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | irq = TB0219_PCI_SLOT1_IRQ; |
| 20 | break; |
| 21 | case 13: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | irq = TB0219_PCI_SLOT2_IRQ; |
| 23 | break; |
| 24 | case 14: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | irq = TB0219_PCI_SLOT3_IRQ; |
| 26 | break; |
| 27 | default: |
| 28 | break; |
| 29 | } |
| 30 | |
| 31 | return irq; |
| 32 | } |
| 33 | |
| 34 | /* Do platform specific device initialization at pci_enable_device() time */ |
| 35 | int pcibios_plat_dev_init(struct pci_dev *dev) |
| 36 | { |
| 37 | return 0; |
| 38 | } |