2 * TX4938/4937 setup routines
3 * Based on linux/arch/mips/txx9/rbtx4938/setup.c,
4 * and RBTX49xx patch from CELF patch archive.
6 * 2003-2005 (c) MontaVista Software, Inc.
7 * (C) Copyright TOSHIBA CORPORATION 2000-2001, 2004-2007
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
13 #include <linux/init.h>
14 #include <linux/ioport.h>
15 #include <linux/delay.h>
16 #include <linux/param.h>
17 #include <linux/ptrace.h>
18 #include <linux/mtd/physmap.h>
19 #include <linux/platform_device.h>
20 #include <asm/reboot.h>
21 #include <asm/traps.h>
22 #include <asm/txx9irq.h>
23 #include <asm/txx9tmr.h>
24 #include <asm/txx9pio.h>
25 #include <asm/txx9/generic.h>
26 #include <asm/txx9/ndfmc.h>
27 #include <asm/txx9/dmac.h>
28 #include <asm/txx9/tx4938.h>
30 static void __init
tx4938_wdr_init(void)
32 /* report watchdog reset status */
33 if (____raw_readq(&tx4938_ccfgptr
->ccfg
) & TX4938_CCFG_WDRST
)
34 pr_warn("Watchdog reset detected at 0x%lx\n",
36 /* clear WatchDogReset (W1C) */
37 tx4938_ccfg_set(TX4938_CCFG_WDRST
);
38 /* do reset on watchdog */
39 tx4938_ccfg_set(TX4938_CCFG_WR
);
42 void __init
tx4938_wdt_init(void)
44 txx9_wdt_init(TX4938_TMR_REG(2) & 0xfffffffffULL
);
47 static void tx4938_machine_restart(char *command
)
50 pr_emerg("Rebooting (with %s watchdog reset)...\n",
51 (____raw_readq(&tx4938_ccfgptr
->ccfg
) & TX4938_CCFG_WDREXEN
) ?
52 "external" : "internal");
53 /* clear watchdog status */
54 tx4938_ccfg_set(TX4938_CCFG_WDRST
); /* W1C */
55 txx9_wdt_now(TX4938_TMR_REG(2) & 0xfffffffffULL
);
56 while (!(____raw_readq(&tx4938_ccfgptr
->ccfg
) & TX4938_CCFG_WDRST
))
59 if (____raw_readq(&tx4938_ccfgptr
->ccfg
) & TX4938_CCFG_WDREXEN
) {
60 pr_emerg("Rebooting (with internal watchdog reset)...\n");
61 /* External WDRST failed. Do internal watchdog reset */
62 tx4938_ccfg_clear(TX4938_CCFG_WDREXEN
);
68 void show_registers(struct pt_regs
*regs
);
69 static int tx4938_be_handler(struct pt_regs
*regs
, int is_fixup
)
71 int data
= regs
->cp0_cause
& 4;
73 pr_err("%cBE exception at %#lx\n", data
? 'D' : 'I', regs
->cp0_epc
);
74 pr_err("ccfg:%llx, toea:%llx\n",
75 (unsigned long long)____raw_readq(&tx4938_ccfgptr
->ccfg
),
76 (unsigned long long)____raw_readq(&tx4938_ccfgptr
->toea
));
78 tx4927_report_pcic_status();
83 static void __init
tx4938_be_init(void)
85 board_be_handler
= tx4938_be_handler
;
88 static struct resource tx4938_sdram_resource
[4];
89 static struct resource tx4938_sram_resource
;
91 #define TX4938_SRAM_SIZE 0x800
93 void __init
tx4938_setup(void)
97 unsigned int cpuclk
= 0;
100 txx9_reg_res_init(TX4938_REV_PCODE(), TX4938_REG_BASE
,
102 set_c0_config(TX49_CONF_CWFON
);
104 /* SDRAMC,EBUSC are configured by PROM */
105 for (i
= 0; i
< 8; i
++) {
106 if (!(TX4938_EBUSC_CR(i
) & 0x8))
107 continue; /* disabled */
108 txx9_ce_res
[i
].start
= (unsigned long)TX4938_EBUSC_BA(i
);
110 txx9_ce_res
[i
].start
+ TX4938_EBUSC_SIZE(i
) - 1;
111 request_resource(&iomem_resource
, &txx9_ce_res
[i
]);
115 ccfg
= ____raw_readq(&tx4938_ccfgptr
->ccfg
);
116 if (txx9_master_clock
) {
117 /* calculate gbus_clock and cpu_clock from master_clock */
118 divmode
= (__u32
)ccfg
& TX4938_CCFG_DIVMODE_MASK
;
120 case TX4938_CCFG_DIVMODE_8
:
121 case TX4938_CCFG_DIVMODE_10
:
122 case TX4938_CCFG_DIVMODE_12
:
123 case TX4938_CCFG_DIVMODE_16
:
124 case TX4938_CCFG_DIVMODE_18
:
125 txx9_gbus_clock
= txx9_master_clock
* 4; break;
127 txx9_gbus_clock
= txx9_master_clock
;
130 case TX4938_CCFG_DIVMODE_2
:
131 case TX4938_CCFG_DIVMODE_8
:
132 cpuclk
= txx9_gbus_clock
* 2; break;
133 case TX4938_CCFG_DIVMODE_2_5
:
134 case TX4938_CCFG_DIVMODE_10
:
135 cpuclk
= txx9_gbus_clock
* 5 / 2; break;
136 case TX4938_CCFG_DIVMODE_3
:
137 case TX4938_CCFG_DIVMODE_12
:
138 cpuclk
= txx9_gbus_clock
* 3; break;
139 case TX4938_CCFG_DIVMODE_4
:
140 case TX4938_CCFG_DIVMODE_16
:
141 cpuclk
= txx9_gbus_clock
* 4; break;
142 case TX4938_CCFG_DIVMODE_4_5
:
143 case TX4938_CCFG_DIVMODE_18
:
144 cpuclk
= txx9_gbus_clock
* 9 / 2; break;
146 txx9_cpu_clock
= cpuclk
;
148 if (txx9_cpu_clock
== 0)
149 txx9_cpu_clock
= 300000000; /* 300MHz */
150 /* calculate gbus_clock and master_clock from cpu_clock */
151 cpuclk
= txx9_cpu_clock
;
152 divmode
= (__u32
)ccfg
& TX4938_CCFG_DIVMODE_MASK
;
154 case TX4938_CCFG_DIVMODE_2
:
155 case TX4938_CCFG_DIVMODE_8
:
156 txx9_gbus_clock
= cpuclk
/ 2; break;
157 case TX4938_CCFG_DIVMODE_2_5
:
158 case TX4938_CCFG_DIVMODE_10
:
159 txx9_gbus_clock
= cpuclk
* 2 / 5; break;
160 case TX4938_CCFG_DIVMODE_3
:
161 case TX4938_CCFG_DIVMODE_12
:
162 txx9_gbus_clock
= cpuclk
/ 3; break;
163 case TX4938_CCFG_DIVMODE_4
:
164 case TX4938_CCFG_DIVMODE_16
:
165 txx9_gbus_clock
= cpuclk
/ 4; break;
166 case TX4938_CCFG_DIVMODE_4_5
:
167 case TX4938_CCFG_DIVMODE_18
:
168 txx9_gbus_clock
= cpuclk
* 2 / 9; break;
171 case TX4938_CCFG_DIVMODE_8
:
172 case TX4938_CCFG_DIVMODE_10
:
173 case TX4938_CCFG_DIVMODE_12
:
174 case TX4938_CCFG_DIVMODE_16
:
175 case TX4938_CCFG_DIVMODE_18
:
176 txx9_master_clock
= txx9_gbus_clock
/ 4; break;
178 txx9_master_clock
= txx9_gbus_clock
;
181 /* change default value to udelay/mdelay take reasonable time */
182 loops_per_jiffy
= txx9_cpu_clock
/ HZ
/ 2;
186 /* clear BusErrorOnWrite flag (W1C) */
187 tx4938_ccfg_set(TX4938_CCFG_BEOW
);
188 /* enable Timeout BusError */
190 tx4938_ccfg_set(TX4938_CCFG_TOE
);
193 txx9_clear64(&tx4938_ccfgptr
->pcfg
, TX4938_PCFG_DMASEL_ALL
);
195 /* Use external clock for external arbiter */
196 if (!(____raw_readq(&tx4938_ccfgptr
->ccfg
) & TX4938_CCFG_PCIARB
))
197 txx9_clear64(&tx4938_ccfgptr
->pcfg
, TX4938_PCFG_PCICLKEN_ALL
);
199 pr_info("%s -- %dMHz(M%dMHz) CRIR:%08x CCFG:%llx PCFG:%llx\n",
200 txx9_pcode_str
, (cpuclk
+ 500000) / 1000000,
201 (txx9_master_clock
+ 500000) / 1000000,
202 (__u32
)____raw_readq(&tx4938_ccfgptr
->crir
),
203 ____raw_readq(&tx4938_ccfgptr
->ccfg
),
204 ____raw_readq(&tx4938_ccfgptr
->pcfg
));
206 pr_info("%s SDRAMC --", txx9_pcode_str
);
207 for (i
= 0; i
< 4; i
++) {
208 __u64 cr
= TX4938_SDRAMC_CR(i
);
209 unsigned long base
, size
;
210 if (!((__u32
)cr
& 0x00000400))
211 continue; /* disabled */
212 base
= (unsigned long)(cr
>> 49) << 21;
213 size
= (((unsigned long)(cr
>> 33) & 0x7fff) + 1) << 21;
214 pr_cont(" CR%d:%016llx", i
, cr
);
215 tx4938_sdram_resource
[i
].name
= "SDRAM";
216 tx4938_sdram_resource
[i
].start
= base
;
217 tx4938_sdram_resource
[i
].end
= base
+ size
- 1;
218 tx4938_sdram_resource
[i
].flags
= IORESOURCE_MEM
;
219 request_resource(&iomem_resource
, &tx4938_sdram_resource
[i
]);
221 pr_cont(" TR:%09llx\n", ____raw_readq(&tx4938_sdramcptr
->tr
));
224 if (txx9_pcode
== 0x4938 && ____raw_readq(&tx4938_sramcptr
->cr
) & 1) {
225 unsigned int size
= TX4938_SRAM_SIZE
;
226 tx4938_sram_resource
.name
= "SRAM";
227 tx4938_sram_resource
.start
=
228 (____raw_readq(&tx4938_sramcptr
->cr
) >> (39-11))
230 tx4938_sram_resource
.end
=
231 tx4938_sram_resource
.start
+ TX4938_SRAM_SIZE
- 1;
232 tx4938_sram_resource
.flags
= IORESOURCE_MEM
;
233 request_resource(&iomem_resource
, &tx4938_sram_resource
);
237 /* disable all timers */
238 for (i
= 0; i
< TX4938_NR_TMR
; i
++)
239 txx9_tmr_init(TX4938_TMR_REG(i
) & 0xfffffffffULL
);
242 __raw_writel(0, &tx4938_pioptr
->maskcpu
);
243 __raw_writel(0, &tx4938_pioptr
->maskext
);
245 if (txx9_pcode
== 0x4938) {
246 __u64 pcfg
= ____raw_readq(&tx4938_ccfgptr
->pcfg
);
247 /* set PCIC1 reset */
248 txx9_set64(&tx4938_ccfgptr
->clkctr
, TX4938_CLKCTR_PCIC1RST
);
249 if (pcfg
& (TX4938_PCFG_ETH0_SEL
| TX4938_PCFG_ETH1_SEL
)) {
250 mdelay(1); /* at least 128 cpu clock */
251 /* clear PCIC1 reset */
252 txx9_clear64(&tx4938_ccfgptr
->clkctr
,
253 TX4938_CLKCTR_PCIC1RST
);
255 pr_info("%s: stop PCIC1\n", txx9_pcode_str
);
257 txx9_set64(&tx4938_ccfgptr
->clkctr
,
258 TX4938_CLKCTR_PCIC1CKD
);
260 if (!(pcfg
& TX4938_PCFG_ETH0_SEL
)) {
261 pr_info("%s: stop ETH0\n", txx9_pcode_str
);
262 txx9_set64(&tx4938_ccfgptr
->clkctr
,
263 TX4938_CLKCTR_ETH0RST
);
264 txx9_set64(&tx4938_ccfgptr
->clkctr
,
265 TX4938_CLKCTR_ETH0CKD
);
267 if (!(pcfg
& TX4938_PCFG_ETH1_SEL
)) {
268 pr_info("%s: stop ETH1\n", txx9_pcode_str
);
269 txx9_set64(&tx4938_ccfgptr
->clkctr
,
270 TX4938_CLKCTR_ETH1RST
);
271 txx9_set64(&tx4938_ccfgptr
->clkctr
,
272 TX4938_CLKCTR_ETH1CKD
);
276 _machine_restart
= tx4938_machine_restart
;
277 board_be_init
= tx4938_be_init
;
280 void __init
tx4938_time_init(unsigned int tmrnr
)
282 if (____raw_readq(&tx4938_ccfgptr
->ccfg
) & TX4938_CCFG_TINTDIS
)
283 txx9_clockevent_init(TX4938_TMR_REG(tmrnr
) & 0xfffffffffULL
,
284 TXX9_IRQ_BASE
+ TX4938_IR_TMR(tmrnr
),
288 void __init
tx4938_sio_init(unsigned int sclk
, unsigned int cts_mask
)
291 unsigned int ch_mask
= 0;
293 if (__raw_readq(&tx4938_ccfgptr
->pcfg
) & TX4938_PCFG_ETH0_SEL
)
294 ch_mask
|= 1 << 1; /* disable SIO1 by PCFG setting */
295 for (i
= 0; i
< 2; i
++) {
296 if ((1 << i
) & ch_mask
)
298 txx9_sio_init(TX4938_SIO_REG(i
) & 0xfffffffffULL
,
299 TXX9_IRQ_BASE
+ TX4938_IR_SIO(i
),
300 i
, sclk
, (1 << i
) & cts_mask
);
304 void __init
tx4938_spi_init(int busid
)
306 txx9_spi_init(busid
, TX4938_SPI_REG
& 0xfffffffffULL
,
307 TXX9_IRQ_BASE
+ TX4938_IR_SPI
);
310 void __init
tx4938_ethaddr_init(unsigned char *addr0
, unsigned char *addr1
)
312 u64 pcfg
= __raw_readq(&tx4938_ccfgptr
->pcfg
);
314 if (addr0
&& (pcfg
& TX4938_PCFG_ETH0_SEL
))
315 txx9_ethaddr_init(TXX9_IRQ_BASE
+ TX4938_IR_ETH0
, addr0
);
316 if (addr1
&& (pcfg
& TX4938_PCFG_ETH1_SEL
))
317 txx9_ethaddr_init(TXX9_IRQ_BASE
+ TX4938_IR_ETH1
, addr1
);
320 void __init
tx4938_mtd_init(int ch
)
322 struct physmap_flash_data pdata
= {
323 .width
= TX4938_EBUSC_WIDTH(ch
) / 8,
325 unsigned long start
= txx9_ce_res
[ch
].start
;
326 unsigned long size
= txx9_ce_res
[ch
].end
- start
+ 1;
328 if (!(TX4938_EBUSC_CR(ch
) & 0x8))
329 return; /* disabled */
330 txx9_physmap_flash_init(ch
, start
, size
, &pdata
);
333 void __init
tx4938_ata_init(unsigned int irq
, unsigned int shift
, int tune
)
335 struct platform_device
*pdev
;
336 struct resource res
[] = {
338 /* .start and .end are filled in later */
339 .flags
= IORESOURCE_MEM
,
342 .flags
= IORESOURCE_IRQ
,
345 struct tx4938ide_platform_info pdata
= {
346 .ioport_shift
= shift
,
348 * The IDE driver should not change bus timings if other ISA
351 .gbus_clock
= tune
? txx9_gbus_clock
: 0,
356 if ((__raw_readq(&tx4938_ccfgptr
->pcfg
) &
357 (TX4938_PCFG_ATA_SEL
| TX4938_PCFG_NDF_SEL
))
358 != TX4938_PCFG_ATA_SEL
)
360 for (i
= 0; i
< 8; i
++) {
361 /* check EBCCRn.ISA, EBCCRn.BSZ, EBCCRn.ME */
362 ebccr
= __raw_readq(&tx4938_ebuscptr
->cr
[i
]);
363 if ((ebccr
& 0x00f00008) == 0x00e00008)
369 res
[0].start
= ((ebccr
>> 48) << 20) + 0x10000;
370 res
[0].end
= res
[0].start
+ 0x20000 - 1;
371 pdev
= platform_device_alloc("tx4938ide", -1);
373 platform_device_add_resources(pdev
, res
, ARRAY_SIZE(res
)) ||
374 platform_device_add_data(pdev
, &pdata
, sizeof(pdata
)) ||
375 platform_device_add(pdev
))
376 platform_device_put(pdev
);
379 void __init
tx4938_ndfmc_init(unsigned int hold
, unsigned int spw
)
381 struct txx9ndfmc_platform_data plat_data
= {
383 .gbus_clock
= txx9_gbus_clock
,
388 unsigned long baseaddr
= TX4938_NDFMC_REG
& 0xfffffffffULL
;
393 if ((__raw_readq(&tx4938_ccfgptr
->pcfg
) &
394 (TX4938_PCFG_ATA_SEL
|TX4938_PCFG_ISA_SEL
|TX4938_PCFG_NDF_SEL
)) ==
396 txx9_ndfmc_init(baseaddr
, &plat_data
);
399 void __init
tx4938_dmac_init(int memcpy_chan0
, int memcpy_chan1
)
401 struct txx9dmac_platform_data plat_data
= {
402 .have_64bit_regs
= true,
406 for (i
= 0; i
< 2; i
++) {
407 plat_data
.memcpy_chan
= i
? memcpy_chan1
: memcpy_chan0
;
408 txx9_dmac_init(i
, TX4938_DMA_REG(i
) & 0xfffffffffULL
,
409 TXX9_IRQ_BASE
+ TX4938_IR_DMA(i
, 0),
414 void __init
tx4938_aclc_init(void)
416 u64 pcfg
= __raw_readq(&tx4938_ccfgptr
->pcfg
);
418 if ((pcfg
& TX4938_PCFG_SEL2
) &&
419 !(pcfg
& TX4938_PCFG_ETH0_SEL
))
420 txx9_aclc_init(TX4938_ACLC_REG
& 0xfffffffffULL
,
421 TXX9_IRQ_BASE
+ TX4938_IR_ACLC
,
425 void __init
tx4938_sramc_init(void)
427 if (tx4938_sram_resource
.start
)
428 txx9_sramc_init(&tx4938_sram_resource
);
431 static void __init
tx4938_stop_unused_modules(void)
433 __u64 pcfg
, rst
= 0, ckd
= 0;
438 pcfg
= ____raw_readq(&tx4938_ccfgptr
->pcfg
);
439 switch (txx9_pcode
) {
441 if (!(pcfg
& TX4938_PCFG_SEL2
)) {
442 rst
|= TX4938_CLKCTR_ACLRST
;
443 ckd
|= TX4938_CLKCTR_ACLCKD
;
444 strcat(buf
, " ACLC");
448 if (!(pcfg
& TX4938_PCFG_SEL2
) ||
449 (pcfg
& TX4938_PCFG_ETH0_SEL
)) {
450 rst
|= TX4938_CLKCTR_ACLRST
;
451 ckd
|= TX4938_CLKCTR_ACLCKD
;
452 strcat(buf
, " ACLC");
455 (TX4938_PCFG_ATA_SEL
| TX4938_PCFG_ISA_SEL
|
456 TX4938_PCFG_NDF_SEL
))
457 != TX4938_PCFG_NDF_SEL
) {
458 rst
|= TX4938_CLKCTR_NDFRST
;
459 ckd
|= TX4938_CLKCTR_NDFCKD
;
460 strcat(buf
, " NDFMC");
462 if (!(pcfg
& TX4938_PCFG_SPI_SEL
)) {
463 rst
|= TX4938_CLKCTR_SPIRST
;
464 ckd
|= TX4938_CLKCTR_SPICKD
;
470 txx9_set64(&tx4938_ccfgptr
->clkctr
, rst
);
471 txx9_set64(&tx4938_ccfgptr
->clkctr
, ckd
);
475 pr_info("%s: stop%s\n", txx9_pcode_str
, buf
);
478 static int __init
tx4938_late_init(void)
480 if (txx9_pcode
!= 0x4937 && txx9_pcode
!= 0x4938)
482 tx4938_stop_unused_modules();
485 late_initcall(tx4938_late_init
);