aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-orion5x/common.c
diff options
context:
space:
mode:
authorLennert Buytenhek <buytenh@wantstofly.org>2008-08-28 23:55:51 -0400
committerNicolas Pitre <nico@cam.org>2008-09-25 16:26:44 -0400
commitebe35aff883496c07248df82c8576c3b6e84bbbe (patch)
tree89120d403604b79e894c0e5683c9fb335d2c3460 /arch/arm/mach-orion5x/common.c
parent1f8081f539a80c3d36a17ecd094d104eae60c01c (diff)
[ARM] Orion: prepare for runtime-determined timer tick rate
Currently, orion5x uses a hardcoded timer tick rate of 166 MHz, but the actual timer tick rate varies between different members of the SoC family (and can vary based on strap pin settings). This patch prepares for runtime determination of the timer tick rate. Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Diffstat (limited to 'arch/arm/mach-orion5x/common.c')
-rw-r--r--arch/arm/mach-orion5x/common.c21
1 files changed, 16 insertions, 5 deletions
diff --git a/arch/arm/mach-orion5x/common.c b/arch/arm/mach-orion5x/common.c
index 83367265bcf6..8a8b089b8b74 100644
--- a/arch/arm/mach-orion5x/common.c
+++ b/arch/arm/mach-orion5x/common.c
@@ -146,7 +146,6 @@ void __init orion5x_ehci1_init(void)
146 ****************************************************************************/ 146 ****************************************************************************/
147struct mv643xx_eth_shared_platform_data orion5x_eth_shared_data = { 147struct mv643xx_eth_shared_platform_data orion5x_eth_shared_data = {
148 .dram = &orion5x_mbus_dram_info, 148 .dram = &orion5x_mbus_dram_info,
149 .t_clk = ORION5X_TCLK,
150}; 149};
151 150
152static struct resource orion5x_eth_shared_resources[] = { 151static struct resource orion5x_eth_shared_resources[] = {
@@ -282,7 +281,7 @@ static struct plat_serial8250_port orion5x_uart0_data[] = {
282 .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF, 281 .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF,
283 .iotype = UPIO_MEM, 282 .iotype = UPIO_MEM,
284 .regshift = 2, 283 .regshift = 2,
285 .uartclk = ORION5X_TCLK, 284 .uartclk = 0,
286 }, { 285 }, {
287 }, 286 },
288}; 287};
@@ -326,7 +325,7 @@ static struct plat_serial8250_port orion5x_uart1_data[] = {
326 .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF, 325 .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF,
327 .iotype = UPIO_MEM, 326 .iotype = UPIO_MEM,
328 .regshift = 2, 327 .regshift = 2,
329 .uartclk = ORION5X_TCLK, 328 .uartclk = 0,
330 }, { 329 }, {
331 }, 330 },
332}; 331};
@@ -459,9 +458,17 @@ void __init orion5x_xor_init(void)
459/***************************************************************************** 458/*****************************************************************************
460 * Time handling 459 * Time handling
461 ****************************************************************************/ 460 ****************************************************************************/
461int orion5x_tclk;
462
463int __init orion5x_find_tclk(void)
464{
465 return 166666667;
466}
467
462static void orion5x_timer_init(void) 468static void orion5x_timer_init(void)
463{ 469{
464 orion_time_init(IRQ_ORION5X_BRIDGE, ORION5X_TCLK); 470 orion5x_tclk = orion5x_find_tclk();
471 orion_time_init(IRQ_ORION5X_BRIDGE, orion5x_tclk);
465} 472}
466 473
467struct sys_timer orion5x_timer = { 474struct sys_timer orion5x_timer = {
@@ -514,7 +521,11 @@ void __init orion5x_init(void)
514 u32 dev, rev; 521 u32 dev, rev;
515 522
516 orion5x_id(&dev, &rev, &dev_name); 523 orion5x_id(&dev, &rev, &dev_name);
517 printk(KERN_INFO "Orion ID: %s. TCLK=%d.\n", dev_name, ORION5X_TCLK); 524 printk(KERN_INFO "Orion ID: %s. TCLK=%d.\n", dev_name, orion5x_tclk);
525
526 orion5x_eth_shared_data.t_clk = orion5x_tclk;
527 orion5x_uart0_data[0].uartclk = orion5x_tclk;
528 orion5x_uart1_data[0].uartclk = orion5x_tclk;
518 529
519 /* 530 /*
520 * Setup Orion address map 531 * Setup Orion address map