2 * Atheros AR71xx SoC specific setup
4 * Copyright (C) 2008 Gabor Juhos <juhosg@openwrt.org>
5 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
7 * Parts of this file are based on Atheros' 2.6.15 BSP
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License version 2 as published
11 * by the Free Software Foundation.
14 #include <linux/kernel.h>
15 #include <linux/module.h>
16 #include <linux/init.h>
17 #include <linux/types.h>
18 #include <linux/pci.h>
19 #include <linux/serial_8250.h>
20 #include <linux/bootmem.h>
22 #include <asm/bootinfo.h>
23 #include <asm/traps.h>
24 #include <asm/time.h> /* for mips_hpt_frequency */
25 #include <asm/reboot.h> /* for _machine_{restart,halt} */
26 #include <asm/mips_machine.h>
28 #include <asm/mach-ar71xx/ar71xx.h>
29 #include <asm/mach-ar71xx/pci.h>
30 #include <asm/mach-ar71xx/platform.h>
32 #define AR71XX_SYS_TYPE_LEN 64
33 #define AR71XX_BASE_FREQ 40000000
34 #define AR91XX_BASE_FREQ 5000000
36 #define AR71XX_MEM_SIZE_MIN 0x0200000
37 #define AR71XX_MEM_SIZE_MAX 0x8000000
39 unsigned long ar71xx_mach_type
;
42 EXPORT_SYMBOL_GPL(ar71xx_cpu_freq
);
45 EXPORT_SYMBOL_GPL(ar71xx_ahb_freq
);
48 EXPORT_SYMBOL_GPL(ar71xx_ddr_freq
);
50 enum ar71xx_soc_type ar71xx_soc
;
51 EXPORT_SYMBOL_GPL(ar71xx_soc
);
53 int (*ar71xx_pci_bios_init
)(unsigned nr_irqs
,
54 struct ar71xx_pci_irq
*map
) __initdata
;
56 int (*ar71xx_pci_be_handler
)(int is_fixup
);
58 static char ar71xx_sys_type
[AR71XX_SYS_TYPE_LEN
];
60 static void ar71xx_restart(char *command
)
62 ar71xx_device_stop(RESET_MODULE_FULL_CHIP
);
68 static void ar71xx_halt(void)
74 static int ar71xx_be_handler(struct pt_regs
*regs
, int is_fixup
)
78 if (ar71xx_pci_be_handler
)
79 err
= ar71xx_pci_be_handler(is_fixup
);
81 return (is_fixup
&& !err
) ? MIPS_BE_FIXUP
: MIPS_BE_FATAL
;
84 int __init
ar71xx_pci_init(unsigned nr_irqs
, struct ar71xx_pci_irq
*map
)
86 if (!ar71xx_pci_bios_init
)
89 return ar71xx_pci_bios_init(nr_irqs
, map
);
92 static void __init
ar71xx_detect_mem_size(void)
96 for (size
= AR71XX_MEM_SIZE_MIN
; size
< AR71XX_MEM_SIZE_MAX
;
98 if (!memcmp(ar71xx_detect_mem_size
,
99 ar71xx_detect_mem_size
+ size
, 1024))
103 add_memory_region(0, size
, BOOT_MEM_RAM
);
106 static void __init
ar71xx_detect_sys_type(void)
112 id
= ar71xx_reset_rr(AR71XX_RESET_REG_REV_ID
) & REV_ID_MASK
;
113 rev
= (id
>> REV_ID_REVISION_SHIFT
) & REV_ID_REVISION_MASK
;
115 switch (id
& REV_ID_CHIP_MASK
) {
116 case REV_ID_CHIP_AR7130
:
117 ar71xx_soc
= AR71XX_SOC_AR7130
;
121 case REV_ID_CHIP_AR7141
:
122 ar71xx_soc
= AR71XX_SOC_AR7141
;
126 case REV_ID_CHIP_AR7161
:
127 ar71xx_soc
= AR71XX_SOC_AR7161
;
131 case REV_ID_CHIP_AR9130
:
132 ar71xx_soc
= AR71XX_SOC_AR9130
;
136 case REV_ID_CHIP_AR9132
:
137 ar71xx_soc
= AR71XX_SOC_AR9132
;
142 panic("ar71xx: unknown chip id:0x%02x\n", id
);
145 sprintf(ar71xx_sys_type
, "Atheros AR%s rev %u (id:0x%02x)",
149 static void __init
ar91xx_detect_sys_frequency(void)
155 pll
= ar71xx_pll_rr(AR91XX_PLL_REG_CPU_CONFIG
);
157 div
= ((pll
>> AR91XX_PLL_DIV_SHIFT
) & AR91XX_PLL_DIV_MASK
);
158 freq
= div
* AR91XX_BASE_FREQ
;
160 ar71xx_cpu_freq
= freq
;
162 div
= ((pll
>> AR91XX_DDR_DIV_SHIFT
) & AR91XX_DDR_DIV_MASK
) + 1;
163 ar71xx_ddr_freq
= freq
/ div
;
165 div
= (((pll
>> AR91XX_AHB_DIV_SHIFT
) & AR91XX_AHB_DIV_MASK
) + 1) * 2;
166 ar71xx_ahb_freq
= ar71xx_cpu_freq
/ div
;
169 static void __init
ar71xx_detect_sys_frequency(void)
175 pll
= ar71xx_pll_rr(AR71XX_PLL_REG_CPU_CONFIG
);
177 div
= ((pll
>> AR71XX_PLL_DIV_SHIFT
) & AR71XX_PLL_DIV_MASK
) + 1;
178 freq
= div
* AR71XX_BASE_FREQ
;
180 div
= ((pll
>> AR71XX_CPU_DIV_SHIFT
) & AR71XX_CPU_DIV_MASK
) + 1;
181 ar71xx_cpu_freq
= freq
/ div
;
183 div
= ((pll
>> AR71XX_DDR_DIV_SHIFT
) & AR71XX_DDR_DIV_MASK
) + 1;
184 ar71xx_ddr_freq
= freq
/ div
;
186 div
= (((pll
>> AR71XX_AHB_DIV_SHIFT
) & AR71XX_AHB_DIV_MASK
) + 1) * 2;
187 ar71xx_ahb_freq
= ar71xx_cpu_freq
/ div
;
190 static void __init
detect_sys_frequency(void)
192 switch (ar71xx_soc
) {
193 case AR71XX_SOC_AR7130
:
194 case AR71XX_SOC_AR7141
:
195 case AR71XX_SOC_AR7161
:
196 ar71xx_detect_sys_frequency();
199 case AR71XX_SOC_AR9130
:
200 case AR71XX_SOC_AR9132
:
201 ar91xx_detect_sys_frequency();
209 #ifdef CONFIG_AR71XX_EARLY_SERIAL
210 static void __init
ar71xx_early_serial_setup(void)
214 memset(&p
, 0, sizeof(p
));
216 p
.flags
= UPF_BOOT_AUTOCONF
| UPF_SKIP_TEST
| UPF_IOREMAP
;
217 p
.iotype
= UPIO_MEM32
;
218 p
.uartclk
= ar71xx_ahb_freq
;
219 p
.irq
= AR71XX_MISC_IRQ_UART
;
221 p
.mapbase
= AR71XX_UART_BASE
;
223 early_serial_setup(&p
);
226 static inline void ar71xx_early_serial_setup(void) {};
227 #endif /* CONFIG_AR71XX_EARLY_SERIAL */
229 const char *get_system_type(void)
231 return ar71xx_sys_type
;
234 unsigned int __cpuinit
get_c0_compare_irq(void)
236 return CP0_LEGACY_COMPARE_IRQ
;
239 void __init
plat_mem_setup(void)
241 set_io_port_base(KSEG1
);
243 ar71xx_ddr_base
= ioremap_nocache(AR71XX_DDR_CTRL_BASE
,
244 AR71XX_DDR_CTRL_SIZE
);
246 ar71xx_pll_base
= ioremap_nocache(AR71XX_PLL_BASE
,
249 ar71xx_reset_base
= ioremap_nocache(AR71XX_RESET_BASE
,
252 ar71xx_gpio_base
= ioremap_nocache(AR71XX_GPIO_BASE
, AR71XX_GPIO_SIZE
);
254 ar71xx_usb_ctrl_base
= ioremap_nocache(AR71XX_USB_CTRL_BASE
,
255 AR71XX_USB_CTRL_SIZE
);
257 ar71xx_detect_mem_size();
258 ar71xx_detect_sys_type();
259 detect_sys_frequency();
261 _machine_restart
= ar71xx_restart
;
262 _machine_halt
= ar71xx_halt
;
263 pm_power_off
= ar71xx_halt
;
265 board_be_handler
= ar71xx_be_handler
;
267 ar71xx_early_serial_setup();
270 void __init
plat_time_init(void)
272 mips_hpt_frequency
= ar71xx_cpu_freq
/ 2;
275 static int __init
ar71xx_machine_setup(void)
279 ar71xx_add_device_uart();
280 ar71xx_add_device_wdt();
282 mips_machine_setup(ar71xx_mach_type
);
286 arch_initcall(ar71xx_machine_setup
);