2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 2003 Atheros Communications, Inc., All Rights Reserved.
7 * Copyright (C) 2006 FON Technology, SL.
8 * Copyright (C) 2006 Imre Kaloz <kaloz@openwrt.org>
9 * Copyright (C) 2006 Felix Fietkau <nbd@openwrt.org>
13 * Platform devices for Atheros SoCs
16 #include <linux/autoconf.h>
17 #include <linux/init.h>
18 #include <linux/module.h>
19 #include <linux/types.h>
20 #include <linux/string.h>
21 #include <linux/platform_device.h>
22 #include <linux/kernel.h>
23 #include <linux/reboot.h>
24 #include <asm/bootinfo.h>
25 #include <asm/reboot.h>
30 #include <linux/leds.h>
33 static int is_5315
= 0;
35 static struct resource ar5315_eth_res
[] = {
37 .name
= "eth0_membase",
38 .flags
= IORESOURCE_MEM
,
39 .start
= AR5315_ENET0
,
40 .end
= AR5315_ENET0
+ 0x2000,
44 .flags
= IORESOURCE_IRQ
,
45 .start
= AR5315_IRQ_ENET0_INTRS
,
46 .end
= AR5315_IRQ_ENET0_INTRS
,
50 static struct ar531x_eth ar5315_eth_data
= {
53 .reset_base
= AR5315_RESET
,
54 .reset_mac
= AR5315_RESET_ENET0
,
55 .reset_phy
= AR5315_RESET_EPHY0
,
56 .phy_base
= AR5315_ENET0
59 static struct platform_device ar5315_eth
= {
62 .dev
.platform_data
= &ar5315_eth_data
,
63 .resource
= ar5315_eth_res
,
64 .num_resources
= ARRAY_SIZE(ar5315_eth_res
)
67 static struct platform_device ar5315_wmac
= {
69 .name
= "ar531x-wmac",
70 /* FIXME: add resources */
73 static struct resource ar5315_spiflash_res
[] = {
76 .flags
= IORESOURCE_MEM
,
77 .start
= KSEG1ADDR(AR5315_SPI_READ
),
78 .end
= KSEG1ADDR(AR5315_SPI_READ
) + 0x800000,
82 .flags
= IORESOURCE_MEM
,
88 static struct platform_device ar5315_spiflash
= {
91 .resource
= ar5315_spiflash_res
,
92 .num_resources
= ARRAY_SIZE(ar5315_spiflash_res
)
95 #ifdef CONFIG_LEDS_GPIO
96 static struct gpio_led ar5315_leds
[8];
98 static struct gpio_led_platform_data ar5315_led_data
= {
99 .num_leds
= ARRAY_SIZE(ar5315_leds
),
100 .leds
= (void *) ar5315_leds
,
103 static struct platform_device ar5315_gpio_leds
= {
107 .platform_data
= (void *) &ar5315_led_data
,
112 static __initdata
struct platform_device
*ar5315_devs
[5];
114 static void *flash_regs
;
116 static inline __u32
spiflash_regread32(int reg
)
118 volatile __u32
*data
= (__u32
*)(flash_regs
+ reg
);
123 static inline void spiflash_regwrite32(int reg
, __u32 data
)
125 volatile __u32
*addr
= (__u32
*)(flash_regs
+ reg
);
130 #define SPI_FLASH_CTL 0x00
131 #define SPI_FLASH_OPCODE 0x04
132 #define SPI_FLASH_DATA 0x08
134 static __u8
spiflash_probe(void)
139 reg
= spiflash_regread32(SPI_FLASH_CTL
);
140 } while (reg
& SPI_CTL_BUSY
);
142 spiflash_regwrite32(SPI_FLASH_OPCODE
, 0xab);
144 reg
= (reg
& ~SPI_CTL_TX_RX_CNT_MASK
) | 4 |
145 (1 << 4) | SPI_CTL_START
;
147 spiflash_regwrite32(SPI_FLASH_CTL
, reg
);
150 reg
= spiflash_regread32(SPI_FLASH_CTL
);
151 } while (reg
& SPI_CTL_BUSY
);
153 reg
= (__u32
) spiflash_regread32(SPI_FLASH_DATA
);
160 #define STM_8MBIT_SIGNATURE 0x13
161 #define STM_16MBIT_SIGNATURE 0x14
162 #define STM_32MBIT_SIGNATURE 0x15
163 #define STM_64MBIT_SIGNATURE 0x16
164 #define STM_128MBIT_SIGNATURE 0x17
167 static char __init
*ar5315_flash_limit(void)
172 /* probe the flash chip size */
173 flash_regs
= ioremap_nocache(ar5315_spiflash_res
[1].start
, ar5315_spiflash_res
[1].end
- ar5315_spiflash_res
[1].start
);
174 sig
= spiflash_probe();
178 case STM_8MBIT_SIGNATURE
:
179 flash_size
= 0x00100000;
181 case STM_16MBIT_SIGNATURE
:
182 flash_size
= 0x00200000;
184 case STM_32MBIT_SIGNATURE
:
185 flash_size
= 0x00400000;
187 case STM_64MBIT_SIGNATURE
:
188 flash_size
= 0x00800000;
190 case STM_128MBIT_SIGNATURE
:
191 flash_size
= 0x01000000;
195 ar5315_spiflash_res
[0].end
= ar5315_spiflash_res
[0].start
+ flash_size
;
196 return (char *) ar5315_spiflash_res
[0].end
;
199 int __init
ar5315_init_devices(void)
201 struct ar531x_config
*config
;
202 struct ar531x_boarddata
*bcfg
;
204 #ifdef CONFIG_LEDS_GPIO
212 /* Find board configuration */
213 ar531x_find_config(ar5315_flash_limit());
214 bcfg
= (struct ar531x_boarddata
*) board_config
;
218 /* Detect the hardware based on the device ID */
219 u32 devid
= sysRegRead(AR5315_SREV
) & AR5315_REV_MAJ
>> AR5315_REV_MAJ_S
;
222 mips_machtype
= MACH_ATHEROS_AR2317
;
224 /* FIXME: how can we detect AR2316? */
227 mips_machtype
= MACH_ATHEROS_AR2315
;
233 config
= (struct ar531x_config
*) kzalloc(sizeof(struct ar531x_config
), GFP_KERNEL
);
234 config
->board
= board_config
;
235 config
->radio
= radio_config
;
237 config
->tag
= (u_int16_t
) (sysRegRead(AR5315_SREV
) & AR5315_REV_CHIP
);
239 ar5315_eth_data
.board_config
= board_config
;
240 ar5315_eth_data
.macaddr
= bcfg
->enet0Mac
;
241 ar5315_wmac
.dev
.platform_data
= config
;
243 ar5315_devs
[dev
++] = &ar5315_eth
;
244 ar5315_devs
[dev
++] = &ar5315_wmac
;
245 ar5315_devs
[dev
++] = &ar5315_spiflash
;
247 #ifdef CONFIG_LEDS_GPIO
248 ar5315_led_data
.num_leds
= 0;
249 for(i
= 0; i
< 8; i
++)
251 if((i
!= AR5315_RESET_GPIO
) && (i
!= bcfg
->resetConfigGpio
))
253 if(i
== bcfg
->sysLedGpio
)
255 tmp
= kstrdup("wlan", GFP_KERNEL
);
257 tmp
= kmalloc(6, GFP_KERNEL
);
259 sprintf((char*)tmp
, "gpio%d", i
);
263 ar5315_leds
[ar5315_led_data
.num_leds
].name
= tmp
;
264 ar5315_leds
[ar5315_led_data
.num_leds
].gpio
= i
;
265 ar5315_leds
[ar5315_led_data
.num_leds
].active_low
= 0;
266 ar5315_led_data
.num_leds
++;
268 printk("failed to alloc led string\n");
273 ar5315_devs
[dev
++] = &ar5315_gpio_leds
;
276 return platform_add_devices(ar5315_devs
, dev
);
279 static void ar5315_halt(void)
284 static void ar5315_power_off(void)
290 static void ar5315_restart(char *command
)
294 /* reset the system */
295 sysRegWrite(AR5315_COLD_RESET
,AR5317_RESET_SYSTEM
);
298 * Cold reset does not work on the AR2315/6, use the GPIO reset bits a workaround.
300 gpio_direction_output(AR5315_RESET_GPIO
, 0);
306 * This table is indexed by bits 5..4 of the CLOCKCTL1 register
307 * to determine the predevisor value.
309 static int __initdata CLOCKCTL1_PREDIVIDE_TABLE
[4] = {
316 static int __initdata PLLC_DIVIDE_TABLE
[5] = {
324 static unsigned int __init
325 ar5315_sys_clk(unsigned int clockCtl
)
327 unsigned int pllcCtrl
,cpuDiv
;
328 unsigned int pllcOut
,refdiv
,fdiv
,divby2
;
331 pllcCtrl
= sysRegRead(AR5315_PLLC_CTL
);
332 refdiv
= (pllcCtrl
& PLLC_REF_DIV_M
) >> PLLC_REF_DIV_S
;
333 refdiv
= CLOCKCTL1_PREDIVIDE_TABLE
[refdiv
];
334 fdiv
= (pllcCtrl
& PLLC_FDBACK_DIV_M
) >> PLLC_FDBACK_DIV_S
;
335 divby2
= (pllcCtrl
& PLLC_ADD_FDBACK_DIV_M
) >> PLLC_ADD_FDBACK_DIV_S
;
337 pllcOut
= (40000000/refdiv
)*(2*divby2
)*fdiv
;
340 /* clkm input selected */
341 switch(clockCtl
& CPUCLK_CLK_SEL_M
) {
344 clkDiv
= PLLC_DIVIDE_TABLE
[(pllcCtrl
& PLLC_CLKM_DIV_M
) >> PLLC_CLKM_DIV_S
];
347 clkDiv
= PLLC_DIVIDE_TABLE
[(pllcCtrl
& PLLC_CLKC_DIV_M
) >> PLLC_CLKC_DIV_S
];
354 cpuDiv
= (clockCtl
& CPUCLK_CLK_DIV_M
) >> CPUCLK_CLK_DIV_S
;
355 cpuDiv
= cpuDiv
* 2 ?: 1;
356 return (pllcOut
/(clkDiv
* cpuDiv
));
359 static inline unsigned int ar5315_cpu_frequency(void)
361 return ar5315_sys_clk(sysRegRead(AR5315_CPUCLK
));
364 static inline unsigned int ar5315_apb_frequency(void)
366 return ar5315_sys_clk(sysRegRead(AR5315_AMBACLK
));
369 static void __init
ar5315_time_init(void)
371 mips_hpt_frequency
= ar5315_cpu_frequency() / 2;
374 void __init
ar5315_prom_init(void)
379 memcfg
= sysRegRead(AR5315_MEM_CFG
);
380 memsize
= 1 + ((memcfg
& SDRAM_DATA_WIDTH_M
) >> SDRAM_DATA_WIDTH_S
);
381 memsize
<<= 1 + ((memcfg
& SDRAM_COL_WIDTH_M
) >> SDRAM_COL_WIDTH_S
);
382 memsize
<<= 1 + ((memcfg
& SDRAM_ROW_WIDTH_M
) >> SDRAM_ROW_WIDTH_S
);
384 add_memory_region(0, memsize
, BOOT_MEM_RAM
);
386 /* Initialize it to AR2315 for now. Real detection will be done
387 * in ar5315_init_devices() */
388 mips_machtype
= MACH_ATHEROS_AR2315
;
391 void __init
ar5315_plat_setup(void)
393 unsigned int config
= read_c0_config();
395 /* Clear any lingering AHB errors */
396 write_c0_config(config
& ~0x3);
397 sysRegWrite(AR5315_AHB_ERR0
,AHB_ERROR_DET
);
398 sysRegRead(AR5315_AHB_ERR1
);
399 sysRegWrite(AR5315_WDC
, WDC_IGNORE_EXPIRATION
);
401 board_time_init
= ar5315_time_init
;
403 _machine_restart
= ar5315_restart
;
404 _machine_halt
= ar5315_halt
;
405 pm_power_off
= ar5315_power_off
;
407 serial_setup(KSEG1ADDR(AR5315_UART0
), ar5315_apb_frequency());
410 arch_initcall(ar5315_init_devices
);