1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/arch/arm/mach-pxa/gumstix.c
5 * Support for the Gumstix motherboards.
7 * Original Author: Craig Hughes
8 * Created: Feb 14, 2008
9 * Copyright: Craig Hughes
11 * Implemented based on lubbock.c by Nicolas Pitre and code from Craig
15 #include <linux/module.h>
16 #include <linux/kernel.h>
17 #include <linux/init.h>
18 #include <linux/platform_device.h>
19 #include <linux/interrupt.h>
20 #include <linux/delay.h>
21 #include <linux/mtd/mtd.h>
22 #include <linux/mtd/partitions.h>
23 #include <linux/gpio/machine.h>
24 #include <linux/gpio.h>
25 #include <linux/err.h>
26 #include <linux/clk.h>
28 #include <asm/setup.h>
29 #include <asm/memory.h>
30 #include <asm/mach-types.h>
31 #include <mach/hardware.h>
33 #include <linux/sizes.h>
35 #include <asm/mach/arch.h>
36 #include <asm/mach/map.h>
37 #include <asm/mach/irq.h>
38 #include <asm/mach/flash.h>
41 #include <linux/platform_data/mmc-pxamci.h>
47 static struct resource flash_resource
= {
50 .flags
= IORESOURCE_MEM
,
53 static struct mtd_partition gumstix_partitions
[] = {
58 .mask_flags
= MTD_WRITEABLE
/* force read-only */
61 .size
= MTDPART_SIZ_FULL
,
62 .offset
= MTDPART_OFS_APPEND
66 static struct flash_platform_data gumstix_flash_data
= {
67 .map_name
= "cfi_probe",
68 .parts
= gumstix_partitions
,
69 .nr_parts
= ARRAY_SIZE(gumstix_partitions
),
73 static struct platform_device gumstix_flash_device
= {
74 .name
= "pxa2xx-flash",
77 .platform_data
= &gumstix_flash_data
,
79 .resource
= &flash_resource
,
83 static struct platform_device
*devices
[] __initdata
= {
84 &gumstix_flash_device
,
88 static struct pxamci_platform_data gumstix_mci_platform_data
= {
89 .ocr_mask
= MMC_VDD_32_33
|MMC_VDD_33_34
,
92 static void __init
gumstix_mmc_init(void)
94 pxa_set_mci_info(&gumstix_mci_platform_data
);
97 static void __init
gumstix_mmc_init(void)
99 pr_debug("Gumstix mmc disabled\n");
103 #ifdef CONFIG_USB_PXA25X
104 static struct gpiod_lookup_table gumstix_gpio_vbus_gpiod_table
= {
105 .dev_id
= "gpio-vbus",
107 GPIO_LOOKUP("gpio-pxa", GPIO_GUMSTIX_USB_GPIOn
,
108 "vbus", GPIO_ACTIVE_HIGH
),
109 GPIO_LOOKUP("gpio-pxa", GPIO_GUMSTIX_USB_GPIOx
,
110 "pullup", GPIO_ACTIVE_HIGH
),
115 static struct platform_device gumstix_gpio_vbus
= {
120 static void __init
gumstix_udc_init(void)
122 gpiod_add_lookup_table(&gumstix_gpio_vbus_gpiod_table
);
123 platform_device_register(&gumstix_gpio_vbus
);
126 static void gumstix_udc_init(void)
128 pr_debug("Gumstix udc is disabled\n");
133 /* Normally, the bootloader would have enabled this 32kHz clock but many
134 ** boards still have u-boot 1.1.4 so we check if it has been turned on and
135 ** if not, we turn it on with a warning message. */
136 static void gumstix_setup_bt_clock(void)
140 if (!(readl(OSCC
) & OSCC_OOK
))
141 pr_warn("32kHz clock was not on. Bootloader may need to be updated\n");
145 writel(readl(OSCC
) | OSCC_OON
, OSCC
);
147 if (readl(OSCC
) & OSCC_OOK
)
152 pr_err("Failed to start 32kHz clock\n");
155 static void __init
gumstix_bluetooth_init(void)
159 gumstix_setup_bt_clock();
161 err
= gpio_request(GPIO_GUMSTIX_BTRESET
, "BTRST");
163 pr_err("gumstix: failed request gpio for bluetooth reset\n");
167 err
= gpio_direction_output(GPIO_GUMSTIX_BTRESET
, 1);
169 pr_err("gumstix: can't reset bluetooth\n");
172 gpio_set_value(GPIO_GUMSTIX_BTRESET
, 0);
174 gpio_set_value(GPIO_GUMSTIX_BTRESET
, 1);
177 static void gumstix_bluetooth_init(void)
179 pr_debug("Gumstix Bluetooth is disabled\n");
183 static unsigned long gumstix_pin_config
[] __initdata
= {
196 int __attribute__((weak
)) am200_init(void)
201 int __attribute__((weak
)) am300_init(void)
206 static void __init
carrier_board_init(void)
209 * put carrier/expansion board init here if
210 * they cannot be detected programatically
216 static void __init
gumstix_init(void)
218 pxa2xx_mfp_config(ARRAY_AND_SIZE(gumstix_pin_config
));
220 pxa_set_ffuart_info(NULL
);
221 pxa_set_btuart_info(NULL
);
222 pxa_set_stuart_info(NULL
);
223 pxa_set_hwuart_info(NULL
);
225 gumstix_bluetooth_init();
228 (void) platform_add_devices(devices
, ARRAY_SIZE(devices
));
229 carrier_board_init();
232 MACHINE_START(GUMSTIX
, "Gumstix")
233 .atag_offset
= 0x100, /* match u-boot bi_boot_params */
234 .map_io
= pxa25x_map_io
,
235 .nr_irqs
= PXA_NR_IRQS
,
236 .init_irq
= pxa25x_init_irq
,
237 .handle_irq
= pxa25x_handle_irq
,
238 .init_time
= pxa_timer_init
,
239 .init_machine
= gumstix_init
,
240 .restart
= pxa_restart
,