1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * pci-vr41xx.c, PCI Control Unit routines for the NEC VR4100 series.
5 * Copyright (C) 2001-2003 MontaVista Software Inc.
6 * Author: Yoichi Yuasa <source@mvista.com>
7 * Copyright (C) 2004-2008 Yoichi Yuasa <yuasa@linux-mips.org>
8 * Copyright (C) 2004 by Ralf Baechle (ralf@linux-mips.org)
12 * MontaVista Software Inc. <source@mvista.com>
13 * - New creation, NEC VR4122 and VR4131 are supported.
15 #include <linux/init.h>
16 #include <linux/pci.h>
17 #include <linux/types.h>
21 #include <asm/vr41xx/pci.h>
22 #include <asm/vr41xx/vr41xx.h>
24 #include "pci-vr41xx.h"
26 extern struct pci_ops vr41xx_pci_ops
;
28 static void __iomem
*pciu_base
;
30 #define pciu_read(offset) readl(pciu_base + (offset))
31 #define pciu_write(offset, value) writel((value), pciu_base + (offset))
33 static struct pci_master_address_conversion pci_master_memory1
= {
34 .bus_base_address
= PCI_MASTER_MEM1_BUS_BASE_ADDRESS
,
35 .address_mask
= PCI_MASTER_MEM1_ADDRESS_MASK
,
36 .pci_base_address
= PCI_MASTER_MEM1_PCI_BASE_ADDRESS
,
39 static struct pci_target_address_conversion pci_target_memory1
= {
40 .address_mask
= PCI_TARGET_MEM1_ADDRESS_MASK
,
41 .bus_base_address
= PCI_TARGET_MEM1_BUS_BASE_ADDRESS
,
44 static struct pci_master_address_conversion pci_master_io
= {
45 .bus_base_address
= PCI_MASTER_IO_BUS_BASE_ADDRESS
,
46 .address_mask
= PCI_MASTER_IO_ADDRESS_MASK
,
47 .pci_base_address
= PCI_MASTER_IO_PCI_BASE_ADDRESS
,
50 static struct pci_mailbox_address pci_mailbox
= {
51 .base_address
= PCI_MAILBOX_BASE_ADDRESS
,
54 static struct pci_target_address_window pci_target_window1
= {
55 .base_address
= PCI_TARGET_WINDOW1_BASE_ADDRESS
,
58 static struct resource pci_mem_resource
= {
59 .name
= "PCI Memory resources",
60 .start
= PCI_MEM_RESOURCE_START
,
61 .end
= PCI_MEM_RESOURCE_END
,
62 .flags
= IORESOURCE_MEM
,
65 static struct resource pci_io_resource
= {
66 .name
= "PCI I/O resources",
67 .start
= PCI_IO_RESOURCE_START
,
68 .end
= PCI_IO_RESOURCE_END
,
69 .flags
= IORESOURCE_IO
,
72 static struct pci_controller_unit_setup vr41xx_pci_controller_unit_setup
= {
73 .master_memory1
= &pci_master_memory1
,
74 .target_memory1
= &pci_target_memory1
,
75 .master_io
= &pci_master_io
,
76 .exclusive_access
= CANNOT_LOCK_FROM_DEVICE
,
77 .wait_time_limit_from_irdy_to_trdy
= 0,
78 .mailbox
= &pci_mailbox
,
79 .target_window1
= &pci_target_window1
,
80 .master_latency_timer
= 0x80,
82 .arbiter_priority_control
= PCI_ARBITRATION_MODE_FAIR
,
83 .take_away_gnt_mode
= PCI_TAKE_AWAY_GNT_DISABLE
,
86 static struct pci_controller vr41xx_pci_controller
= {
87 .pci_ops
= &vr41xx_pci_ops
,
88 .mem_resource
= &pci_mem_resource
,
89 .io_resource
= &pci_io_resource
,
92 void __init
vr41xx_pciu_setup(struct pci_controller_unit_setup
*setup
)
94 vr41xx_pci_controller_unit_setup
= *setup
;
97 static int __init
vr41xx_pciu_init(void)
99 struct pci_controller_unit_setup
*setup
;
100 struct pci_master_address_conversion
*master
;
101 struct pci_target_address_conversion
*target
;
102 struct pci_mailbox_address
*mailbox
;
103 struct pci_target_address_window
*window
;
104 unsigned long vtclock
, pci_clock_max
;
107 setup
= &vr41xx_pci_controller_unit_setup
;
109 if (request_mem_region(PCIU_BASE
, PCIU_SIZE
, "PCIU") == NULL
)
112 pciu_base
= ioremap(PCIU_BASE
, PCIU_SIZE
);
113 if (pciu_base
== NULL
) {
114 release_mem_region(PCIU_BASE
, PCIU_SIZE
);
118 /* Disable PCI interrupt */
119 vr41xx_disable_pciint();
121 /* Supply VTClock to PCIU */
122 vr41xx_supply_clock(PCIU_CLOCK
);
124 /* Dummy write, waiting for supply of VTClock. */
125 vr41xx_disable_pciint();
127 /* Select PCI clock */
128 if (setup
->pci_clock_max
!= 0)
129 pci_clock_max
= setup
->pci_clock_max
;
131 pci_clock_max
= PCI_CLOCK_MAX
;
132 vtclock
= vr41xx_get_vtclock_frequency();
133 if (vtclock
< pci_clock_max
)
134 pciu_write(PCICLKSELREG
, EQUAL_VTCLOCK
);
135 else if ((vtclock
/ 2) < pci_clock_max
)
136 pciu_write(PCICLKSELREG
, HALF_VTCLOCK
);
137 else if (current_cpu_data
.processor_id
>= PRID_VR4131_REV2_1
&&
138 (vtclock
/ 3) < pci_clock_max
)
139 pciu_write(PCICLKSELREG
, ONE_THIRD_VTCLOCK
);
140 else if ((vtclock
/ 4) < pci_clock_max
)
141 pciu_write(PCICLKSELREG
, QUARTER_VTCLOCK
);
143 printk(KERN_ERR
"PCI Clock is over 33MHz.\n");
148 /* Supply PCI clock by PCI bus */
149 vr41xx_supply_clock(PCI_CLOCK
);
151 if (setup
->master_memory1
!= NULL
) {
152 master
= setup
->master_memory1
;
153 val
= IBA(master
->bus_base_address
) |
154 MASTER_MSK(master
->address_mask
) |
156 PCIA(master
->pci_base_address
);
157 pciu_write(PCIMMAW1REG
, val
);
159 val
= pciu_read(PCIMMAW1REG
);
161 pciu_write(PCIMMAW1REG
, val
);
164 if (setup
->master_memory2
!= NULL
) {
165 master
= setup
->master_memory2
;
166 val
= IBA(master
->bus_base_address
) |
167 MASTER_MSK(master
->address_mask
) |
169 PCIA(master
->pci_base_address
);
170 pciu_write(PCIMMAW2REG
, val
);
172 val
= pciu_read(PCIMMAW2REG
);
174 pciu_write(PCIMMAW2REG
, val
);
177 if (setup
->target_memory1
!= NULL
) {
178 target
= setup
->target_memory1
;
179 val
= TARGET_MSK(target
->address_mask
) |
181 ITA(target
->bus_base_address
);
182 pciu_write(PCITAW1REG
, val
);
184 val
= pciu_read(PCITAW1REG
);
186 pciu_write(PCITAW1REG
, val
);
189 if (setup
->target_memory2
!= NULL
) {
190 target
= setup
->target_memory2
;
191 val
= TARGET_MSK(target
->address_mask
) |
193 ITA(target
->bus_base_address
);
194 pciu_write(PCITAW2REG
, val
);
196 val
= pciu_read(PCITAW2REG
);
198 pciu_write(PCITAW2REG
, val
);
201 if (setup
->master_io
!= NULL
) {
202 master
= setup
->master_io
;
203 val
= IBA(master
->bus_base_address
) |
204 MASTER_MSK(master
->address_mask
) |
206 PCIIA(master
->pci_base_address
);
207 pciu_write(PCIMIOAWREG
, val
);
209 val
= pciu_read(PCIMIOAWREG
);
211 pciu_write(PCIMIOAWREG
, val
);
214 if (setup
->exclusive_access
== CANNOT_LOCK_FROM_DEVICE
)
215 pciu_write(PCIEXACCREG
, UNLOCK
);
217 pciu_write(PCIEXACCREG
, 0);
219 if (current_cpu_type() == CPU_VR4122
)
220 pciu_write(PCITRDYVREG
, TRDYV(setup
->wait_time_limit_from_irdy_to_trdy
));
222 pciu_write(LATTIMEREG
, MLTIM(setup
->master_latency_timer
));
224 if (setup
->mailbox
!= NULL
) {
225 mailbox
= setup
->mailbox
;
226 val
= MBADD(mailbox
->base_address
) | TYPE_32BITSPACE
|
227 MSI_MEMORY
| PREF_APPROVAL
;
228 pciu_write(MAILBAREG
, val
);
231 if (setup
->target_window1
) {
232 window
= setup
->target_window1
;
233 val
= PMBA(window
->base_address
) | TYPE_32BITSPACE
|
234 MSI_MEMORY
| PREF_APPROVAL
;
235 pciu_write(PCIMBA1REG
, val
);
238 if (setup
->target_window2
) {
239 window
= setup
->target_window2
;
240 val
= PMBA(window
->base_address
) | TYPE_32BITSPACE
|
241 MSI_MEMORY
| PREF_APPROVAL
;
242 pciu_write(PCIMBA2REG
, val
);
245 val
= pciu_read(RETVALREG
);
247 val
|= RTYVAL(setup
->retry_limit
);
248 pciu_write(RETVALREG
, val
);
250 val
= pciu_read(PCIAPCNTREG
);
251 val
&= ~(TKYGNT
| PAPC
);
253 switch (setup
->arbiter_priority_control
) {
254 case PCI_ARBITRATION_MODE_ALTERNATE_0
:
255 val
|= PAPC_ALTERNATE_0
;
257 case PCI_ARBITRATION_MODE_ALTERNATE_B
:
258 val
|= PAPC_ALTERNATE_B
;
265 if (setup
->take_away_gnt_mode
== PCI_TAKE_AWAY_GNT_ENABLE
)
266 val
|= TKYGNT_ENABLE
;
268 pciu_write(PCIAPCNTREG
, val
);
270 pciu_write(COMMANDREG
, PCI_COMMAND_IO
| PCI_COMMAND_MEMORY
|
271 PCI_COMMAND_MASTER
| PCI_COMMAND_PARITY
|
274 /* Clear bus error */
275 pciu_read(BUSERRADREG
);
277 pciu_write(PCIENREG
, PCIU_CONFIG_DONE
);
279 if (setup
->mem_resource
!= NULL
)
280 vr41xx_pci_controller
.mem_resource
= setup
->mem_resource
;
282 if (setup
->io_resource
!= NULL
) {
283 vr41xx_pci_controller
.io_resource
= setup
->io_resource
;
285 set_io_port_base(IO_PORT_BASE
);
286 ioport_resource
.start
= IO_PORT_RESOURCE_START
;
287 ioport_resource
.end
= IO_PORT_RESOURCE_END
;
290 if (setup
->master_io
) {
291 void __iomem
*io_map_base
;
292 struct resource
*res
= vr41xx_pci_controller
.io_resource
;
293 master
= setup
->master_io
;
294 io_map_base
= ioremap(master
->bus_base_address
,
301 vr41xx_pci_controller
.io_map_base
= (unsigned long)io_map_base
;
304 register_pci_controller(&vr41xx_pci_controller
);
309 arch_initcall(vr41xx_pciu_init
);