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) 2008 Maxime Bizon <mbizon@freebox.fr>
9 #include <linux/init.h>
10 #include <linux/kernel.h>
11 #include <linux/string.h>
12 #include <linux/platform_device.h>
13 #include <linux/mtd/mtd.h>
14 #include <linux/mtd/partitions.h>
15 #include <linux/mtd/physmap.h>
16 #include <asm/addrspace.h>
17 #include <bcm63xx_board.h>
18 #include <bcm63xx_cpu.h>
19 #include <bcm63xx_regs.h>
20 #include <bcm63xx_io.h>
21 #include <bcm63xx_board.h>
22 #include <bcm63xx_dev_pci.h>
23 #include <bcm63xx_dev_uart.h>
24 #include <bcm63xx_dev_wdt.h>
25 #include <bcm63xx_dev_enet.h>
26 #include <bcm63xx_dev_pcmcia.h>
27 #include <bcm63xx_dev_usb_ohci.h>
28 #include <bcm63xx_dev_usb_ehci.h>
29 #include <board_bcm963xx.h>
31 #define PFX "board_bcm963xx: "
33 static struct bcm963xx_nvram nvram
;
34 static unsigned int mac_addr_used
= 0;
35 static struct board_info board
;
41 #ifdef CONFIG_BCM63XX_CPU_6338
42 static struct board_info __initdata board_96338gw
= {
44 .expected_cpu_id
= 0x6338,
49 .use_internal_phy
= 1,
59 #ifdef CONFIG_BCM63XX_CPU_6348
60 static struct board_info __initdata board_96348r
= {
62 .expected_cpu_id
= 0x6348,
69 .use_internal_phy
= 1,
73 static struct board_info __initdata board_96348gw_10
= {
75 .expected_cpu_id
= 0x6348,
83 .use_internal_phy
= 1,
87 .force_duplex_full
= 1,
95 static struct board_info __initdata board_96348gw_11
= {
97 .expected_cpu_id
= 0x6348,
105 .use_internal_phy
= 1,
109 .force_speed_100
= 1,
110 .force_duplex_full
= 1,
119 static struct board_info __initdata board_96348gw
= {
121 .expected_cpu_id
= 0x6348,
129 .use_internal_phy
= 1,
132 .force_speed_100
= 1,
133 .force_duplex_full
= 1,
139 static struct board_info __initdata board_FAST2404
= {
141 .expected_cpu_id
= 0x6348,
149 .use_internal_phy
= 1,
153 .force_speed_100
= 1,
154 .force_duplex_full
= 1,
168 #ifdef CONFIG_BCM63XX_CPU_6358
169 static struct board_info __initdata board_96358vw
= {
171 .expected_cpu_id
= 0x6358,
179 .use_internal_phy
= 1,
183 .force_speed_100
= 1,
184 .force_duplex_full
= 1,
193 static struct board_info __initdata board_96358vw2
= {
195 .expected_cpu_id
= 0x6358,
203 .use_internal_phy
= 1,
207 .force_speed_100
= 1,
208 .force_duplex_full
= 1,
221 static const struct board_info __initdata
*bcm963xx_boards
[] = {
222 #ifdef CONFIG_BCM63XX_CPU_6338
225 #ifdef CONFIG_BCM63XX_CPU_6348
233 #ifdef CONFIG_BCM63XX_CPU_6358
240 * early init callback, read nvram data from flash and checksum it
242 void __init
board_prom_init(void)
244 unsigned int check_len
, i
;
245 u8
*boot_addr
, *cfe
, *p
;
246 char cfe_version
[32];
249 /* read base address of boot chip select (0) */
250 val
= bcm_mpi_readl(MPI_CSBASE_REG(0));
251 val
&= MPI_CSBASE_BASE_MASK
;
252 boot_addr
= (u8
*)KSEG1ADDR(val
);
254 /* dump cfe version */
255 cfe
= boot_addr
+ BCM963XX_CFE_VERSION_OFFSET
;
256 if (!memcmp(cfe
, "cfe-v", 5))
257 snprintf(cfe_version
, sizeof(cfe_version
), "%u.%u.%u-%u.%u",
258 cfe
[5], cfe
[6], cfe
[7], cfe
[8], cfe
[9]);
260 strcpy(cfe_version
, "unknown");
261 printk(KERN_INFO PFX
"CFE version: %s\n", cfe_version
);
263 /* extract nvram data */
264 memcpy(&nvram
, boot_addr
+ BCM963XX_NVRAM_OFFSET
, sizeof(nvram
));
266 /* check checksum before using data */
267 if (nvram
.version
<= 4)
268 check_len
= offsetof(struct bcm963xx_nvram
, checksum_old
);
270 check_len
= sizeof(nvram
);
276 printk(KERN_ERR PFX
"invalid nvram checksum\n");
280 /* find board by name */
281 for (i
= 0; i
< ARRAY_SIZE(bcm963xx_boards
); i
++) {
282 if (strncmp(nvram
.name
, bcm963xx_boards
[i
]->name
,
285 /* copy, board desc array is marked initdata */
286 memcpy(&board
, bcm963xx_boards
[i
], sizeof(board
));
290 /* bail out if board is not found, will complain later */
291 if (!board
.name
[0]) {
293 memcpy(name
, nvram
.name
, 16);
295 printk(KERN_ERR PFX
"unknown bcm963xx board: %s\n",
300 /* setup pin multiplexing depending on board enabled device,
301 * this has to be done this early since PCI init is done
302 * inside arch_initcall */
306 bcm63xx_pci_enabled
= 1;
307 if (BCMCPU_IS_6348())
308 val
|= GPIO_MODE_6348_G2_PCI
;
311 if (board
.has_pccard
) {
312 if (BCMCPU_IS_6348())
313 val
|= GPIO_MODE_6348_G1_MII_PCCARD
;
316 if (board
.has_enet0
&& !board
.enet0
.use_internal_phy
) {
317 if (BCMCPU_IS_6348())
318 val
|= GPIO_MODE_6348_G3_EXT_MII
|
319 GPIO_MODE_6348_G0_EXT_MII
;
322 if (board
.has_enet1
&& !board
.enet1
.use_internal_phy
) {
323 if (BCMCPU_IS_6348())
324 val
|= GPIO_MODE_6348_G3_EXT_MII
|
325 GPIO_MODE_6348_G0_EXT_MII
;
328 bcm_gpio_writel(val
, GPIO_MODE_REG
);
332 * second stage init callback, good time to panic if we couldn't
333 * identify on which board we're running since early printk is working
335 void __init
board_setup(void)
338 panic("unable to detect bcm963xx board");
339 printk(KERN_INFO PFX
"board name: %s\n", board
.name
);
341 /* make sure we're running on expected cpu */
342 if (bcm63xx_get_cpu_id() != board
.expected_cpu_id
)
343 panic("unexpected CPU for bcm963xx board");
347 * return board name for /proc/cpuinfo
349 const char *board_get_name(void)
355 * register & return a new board mac address
357 static int board_get_mac_address(u8
*mac
)
362 if (mac_addr_used
>= nvram
.mac_addr_count
) {
363 printk(KERN_ERR PFX
"not enough mac address\n");
367 memcpy(mac
, nvram
.mac_addr_base
, ETH_ALEN
);
368 p
= mac
+ ETH_ALEN
- 1;
369 count
= mac_addr_used
;
381 printk(KERN_ERR PFX
"unable to fetch mac address\n");
389 static struct resource mtd_resources
[] = {
391 .start
= 0, /* filled at runtime */
392 .end
= 0, /* filled at runtime */
393 .flags
= IORESOURCE_MEM
,
397 static struct platform_device mtd_dev
= {
398 .name
= "bcm963xx-flash",
399 .resource
= mtd_resources
,
400 .num_resources
= ARRAY_SIZE(mtd_resources
),
404 * third stage init callback, register all board devices.
406 int __init
board_register_devices(void)
410 bcm63xx_uart_register();
411 bcm63xx_wdt_register();
413 if (board
.has_pccard
)
414 bcm63xx_pcmcia_register();
416 if (board
.has_enet0
&&
417 !board_get_mac_address(board
.enet0
.mac_addr
))
418 bcm63xx_enet_register(0, &board
.enet0
);
420 if (board
.has_enet1
&&
421 !board_get_mac_address(board
.enet1
.mac_addr
))
422 bcm63xx_enet_register(1, &board
.enet1
);
425 bcm63xx_ohci_register();
428 bcm63xx_ehci_register();
431 /* read base address of boot chip select (0) */
432 val
= bcm_mpi_readl(MPI_CSBASE_REG(0));
433 val
&= MPI_CSBASE_BASE_MASK
;
434 mtd_resources
[0].start
= val
;
435 mtd_resources
[0].end
= 0x1FFFFFFF;
437 platform_device_register(&mtd_dev
);