1 // SPDX-License-Identifier: GPL-2.0-only
3 * arch/arm/mach-pxa/colibri-pxa3xx.c
5 * Common functions for all Toradex PXA3xx modules
7 * Daniel Mack <daniel@caiaq.de>
10 #include <linux/init.h>
11 #include <linux/kernel.h>
12 #include <linux/platform_device.h>
13 #include <linux/gpio.h>
14 #include <linux/etherdevice.h>
15 #include <asm/mach-types.h>
16 #include <mach/hardware.h>
17 #include <linux/sizes.h>
18 #include <asm/system_info.h>
19 #include <asm/mach/arch.h>
20 #include <asm/mach/irq.h>
21 #include <mach/pxa3xx-regs.h>
22 #include "mfp-pxa300.h"
24 #include <linux/platform_data/mmc-pxamci.h>
25 #include <linux/platform_data/video-pxafb.h>
26 #include <linux/platform_data/mtd-nand-pxa3xx.h>
31 #if defined(CONFIG_AX88796)
32 #define ETHER_ADDR_LEN 6
33 static u8 ether_mac_addr
[ETHER_ADDR_LEN
];
35 void __init
colibri_pxa3xx_init_eth(struct ax_plat_data
*plat_data
)
38 u64 serial
= ((u64
) system_serial_high
<< 32) | system_serial_low
;
41 * If the bootloader passed in a serial boot tag, which contains a
42 * valid ethernet MAC, pass it to the interface. Toradex ships the
43 * modules with their own bootloader which provides a valid MAC
47 for (i
= 0; i
< ETHER_ADDR_LEN
; i
++) {
48 ether_mac_addr
[i
] = serial
& 0xff;
52 if (is_valid_ether_addr(ether_mac_addr
)) {
53 plat_data
->flags
|= AXFLG_MAC_FROMPLATFORM
;
54 plat_data
->mac_addr
= ether_mac_addr
;
55 printk(KERN_INFO
"%s(): taking MAC from serial boot tag\n",
58 plat_data
->flags
|= AXFLG_MAC_FROMDEV
;
59 printk(KERN_INFO
"%s(): no valid serial boot tag found, "
60 "taking MAC from device\n", __func__
);
65 #if defined(CONFIG_FB_PXA) || defined(CONFIG_FB_PXA_MODULE)
66 static int lcd_bl_pin
;
69 * LCD panel (Sharp LQ043T3DX02)
71 static void colibri_lcd_backlight(int on
)
73 gpio_set_value(lcd_bl_pin
, !!on
);
76 static struct pxafb_mode_info sharp_lq43_mode
= {
92 static struct pxafb_mach_info sharp_lq43_info
= {
93 .modes
= &sharp_lq43_mode
,
97 .lcd_conn
= LCD_COLOR_TFT_18BPP
,
98 .pxafb_backlight_power
= colibri_lcd_backlight
,
101 void __init
colibri_pxa3xx_init_lcd(int bl_pin
)
104 gpio_request(bl_pin
, "lcd backlight");
105 gpio_direction_output(bl_pin
, 0);
106 pxa_set_fb_info(NULL
, &sharp_lq43_info
);
110 #if IS_ENABLED(CONFIG_MTD_NAND_MARVELL)
111 static struct mtd_partition colibri_nand_partitions
[] = {
113 .name
= "bootloader",
116 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
120 .offset
= MTDPART_OFS_APPEND
,
122 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
126 .offset
= MTDPART_OFS_APPEND
,
128 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
132 .offset
= MTDPART_OFS_APPEND
,
133 .size
= MTDPART_SIZ_FULL
,
137 static struct pxa3xx_nand_platform_data colibri_nand_info
= {
139 .parts
= colibri_nand_partitions
,
140 .nr_parts
= ARRAY_SIZE(colibri_nand_partitions
),
143 void __init
colibri_pxa3xx_init_nand(void)
145 pxa3xx_set_nand_info(&colibri_nand_info
);