2 * arch/arm/mach-pxa/colibri-pxa3xx.c
4 * Common functions for all Toradex PXA3xx modules
6 * Daniel Mack <daniel@caiaq.de>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/init.h>
14 #include <linux/kernel.h>
15 #include <linux/platform_device.h>
16 #include <linux/gpio.h>
17 #include <linux/etherdevice.h>
18 #include <asm/mach-types.h>
19 #include <mach/hardware.h>
20 #include <asm/sizes.h>
21 #include <asm/mach/arch.h>
22 #include <asm/mach/irq.h>
23 #include <mach/pxa3xx-regs.h>
24 #include <mach/mfp-pxa300.h>
25 #include <mach/colibri.h>
27 #include <mach/pxafb.h>
28 #include <plat/pxa3xx_nand.h>
33 #if defined(CONFIG_AX88796)
34 #define ETHER_ADDR_LEN 6
35 static u8 ether_mac_addr
[ETHER_ADDR_LEN
];
37 void __init
colibri_pxa3xx_init_eth(struct ax_plat_data
*plat_data
)
40 u64 serial
= ((u64
) system_serial_high
<< 32) | system_serial_low
;
43 * If the bootloader passed in a serial boot tag, which contains a
44 * valid ethernet MAC, pass it to the interface. Toradex ships the
45 * modules with their own bootloader which provides a valid MAC
49 for (i
= 0; i
< ETHER_ADDR_LEN
; i
++) {
50 ether_mac_addr
[i
] = serial
& 0xff;
54 if (is_valid_ether_addr(ether_mac_addr
)) {
55 plat_data
->flags
|= AXFLG_MAC_FROMPLATFORM
;
56 plat_data
->mac_addr
= ether_mac_addr
;
57 printk(KERN_INFO
"%s(): taking MAC from serial boot tag\n",
60 plat_data
->flags
|= AXFLG_MAC_FROMDEV
;
61 printk(KERN_INFO
"%s(): no valid serial boot tag found, "
62 "taking MAC from device\n", __func__
);
67 #if defined(CONFIG_FB_PXA) || defined(CONFIG_FB_PXA_MODULE)
68 static int lcd_bl_pin
;
71 * LCD panel (Sharp LQ043T3DX02)
73 static void colibri_lcd_backlight(int on
)
75 gpio_set_value(lcd_bl_pin
, !!on
);
78 static struct pxafb_mode_info sharp_lq43_mode
= {
94 static struct pxafb_mach_info sharp_lq43_info
= {
95 .modes
= &sharp_lq43_mode
,
99 .lcd_conn
= LCD_COLOR_TFT_18BPP
,
100 .pxafb_backlight_power
= colibri_lcd_backlight
,
103 void __init
colibri_pxa3xx_init_lcd(int bl_pin
)
106 gpio_request(bl_pin
, "lcd backlight");
107 gpio_direction_output(bl_pin
, 0);
108 set_pxa_fb_info(&sharp_lq43_info
);
112 #if defined(CONFIG_MTD_NAND_PXA3xx) || defined(CONFIG_MTD_NAND_PXA3xx_MODULE)
113 static struct mtd_partition colibri_nand_partitions
[] = {
115 .name
= "bootloader",
118 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
122 .offset
= MTDPART_OFS_APPEND
,
124 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
128 .offset
= MTDPART_OFS_APPEND
,
130 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
134 .offset
= MTDPART_OFS_APPEND
,
135 .size
= MTDPART_SIZ_FULL
,
139 static struct pxa3xx_nand_platform_data colibri_nand_info
= {
142 .parts
= colibri_nand_partitions
,
143 .nr_parts
= ARRAY_SIZE(colibri_nand_partitions
),
146 void __init
colibri_pxa3xx_init_nand(void)
148 pxa3xx_set_nand_info(&colibri_nand_info
);