1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * ops-vr41xx.c, PCI configuration routines for the PCIU of NEC VR4100 series.
5 * Copyright (C) 2001-2003 MontaVista Software Inc.
6 * Author: Yoichi Yuasa <source@mvista.com>
7 * Copyright (C) 2004-2005 Yoichi Yuasa <yuasa@linux-mips.org>
11 * MontaVista Software Inc. <source@mvista.com>
12 * - New creation, NEC VR4122 and VR4131 are supported.
14 #include <linux/pci.h>
15 #include <linux/types.h>
19 #define PCICONFDREG (void __iomem *)KSEG1ADDR(0x0f000c14)
20 #define PCICONFAREG (void __iomem *)KSEG1ADDR(0x0f000c18)
22 static inline int set_pci_configuration_address(unsigned char number
,
23 unsigned int devfn
, int where
)
27 * Type 0 configuration
29 if (PCI_SLOT(devfn
) < 11 || where
> 0xff)
32 writel((1U << PCI_SLOT(devfn
)) | (PCI_FUNC(devfn
) << 8) |
33 (where
& 0xfc), PCICONFAREG
);
36 * Type 1 configuration
41 writel(((uint32_t)number
<< 16) | ((devfn
& 0xff) << 8) |
42 (where
& 0xfc) | 1U, PCICONFAREG
);
48 static int pci_config_read(struct pci_bus
*bus
, unsigned int devfn
, int where
,
49 int size
, uint32_t *val
)
54 if (set_pci_configuration_address(bus
->number
, devfn
, where
) < 0)
55 return PCIBIOS_DEVICE_NOT_FOUND
;
57 data
= readl(PCICONFDREG
);
61 *val
= (data
>> ((where
& 3) << 3)) & 0xffU
;
64 *val
= (data
>> ((where
& 2) << 3)) & 0xffffU
;
70 return PCIBIOS_FUNC_NOT_SUPPORTED
;
73 return PCIBIOS_SUCCESSFUL
;
76 static int pci_config_write(struct pci_bus
*bus
, unsigned int devfn
, int where
,
77 int size
, uint32_t val
)
82 if (set_pci_configuration_address(bus
->number
, devfn
, where
) < 0)
83 return PCIBIOS_DEVICE_NOT_FOUND
;
85 data
= readl(PCICONFDREG
);
89 shift
= (where
& 3) << 3;
90 data
&= ~(0xffU
<< shift
);
91 data
|= ((val
& 0xffU
) << shift
);
94 shift
= (where
& 2) << 3;
95 data
&= ~(0xffffU
<< shift
);
96 data
|= ((val
& 0xffffU
) << shift
);
102 return PCIBIOS_FUNC_NOT_SUPPORTED
;
105 writel(data
, PCICONFDREG
);
107 return PCIBIOS_SUCCESSFUL
;
110 struct pci_ops vr41xx_pci_ops
= {
111 .read
= pci_config_read
,
112 .write
= pci_config_write
,