2009-05-28 23:04:04 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2009 Texas Instruments Inc.
|
|
|
|
* Mikkel Christensen <mlc@ti.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/gpio.h>
|
|
|
|
#include <linux/serial_8250.h>
|
|
|
|
#include <linux/smsc911x.h>
|
2009-08-28 20:24:08 +02:00
|
|
|
#include <linux/interrupt.h>
|
2009-05-28 23:04:04 +02:00
|
|
|
|
2009-10-20 18:40:47 +02:00
|
|
|
#include <plat/gpmc.h>
|
2011-04-17 00:29:30 +02:00
|
|
|
#include <plat/gpmc-smsc911x.h>
|
2009-05-28 23:04:04 +02:00
|
|
|
|
2010-10-08 18:58:35 +02:00
|
|
|
#include <mach/board-zoom.h>
|
|
|
|
|
2009-11-22 19:11:31 +01:00
|
|
|
#define ZOOM_SMSC911X_CS 7
|
|
|
|
#define ZOOM_SMSC911X_GPIO 158
|
|
|
|
#define ZOOM_QUADUART_CS 3
|
|
|
|
#define ZOOM_QUADUART_GPIO 102
|
2011-07-04 13:08:46 +02:00
|
|
|
#define ZOOM_QUADUART_RST_GPIO 152
|
2009-05-28 23:04:04 +02:00
|
|
|
#define QUART_CLK 1843200
|
|
|
|
#define DEBUG_BASE 0x08000000
|
2009-11-22 19:11:31 +01:00
|
|
|
#define ZOOM_ETHR_START DEBUG_BASE
|
2009-05-28 23:04:04 +02:00
|
|
|
|
2011-04-17 00:29:30 +02:00
|
|
|
static struct omap_smsc911x_platform_data zoom_smsc911x_cfg = {
|
|
|
|
.cs = ZOOM_SMSC911X_CS,
|
|
|
|
.gpio_irq = ZOOM_SMSC911X_GPIO,
|
|
|
|
.gpio_reset = -EINVAL,
|
2009-05-28 23:04:04 +02:00
|
|
|
.flags = SMSC911X_USE_32BIT,
|
|
|
|
};
|
|
|
|
|
2009-11-22 19:11:31 +01:00
|
|
|
static inline void __init zoom_init_smsc911x(void)
|
2009-05-28 23:04:04 +02:00
|
|
|
{
|
2011-04-17 00:29:30 +02:00
|
|
|
gpmc_smsc911x_init(&zoom_smsc911x_cfg);
|
2009-05-28 23:04:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct plat_serial8250_port serial_platform_data[] = {
|
|
|
|
{
|
2010-04-30 21:57:14 +02:00
|
|
|
.mapbase = ZOOM_UART_BASE,
|
2009-05-28 23:04:04 +02:00
|
|
|
.irq = OMAP_GPIO_IRQ(102),
|
|
|
|
.flags = UPF_BOOT_AUTOCONF|UPF_IOREMAP|UPF_SHARE_IRQ,
|
2009-08-28 20:24:08 +02:00
|
|
|
.irqflags = IRQF_SHARED | IRQF_TRIGGER_RISING,
|
2009-05-28 23:04:04 +02:00
|
|
|
.iotype = UPIO_MEM,
|
|
|
|
.regshift = 1,
|
|
|
|
.uartclk = QUART_CLK,
|
|
|
|
}, {
|
|
|
|
.flags = 0
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-11-22 19:11:31 +01:00
|
|
|
static struct platform_device zoom_debugboard_serial_device = {
|
2009-05-28 23:04:04 +02:00
|
|
|
.name = "serial8250",
|
2010-03-01 19:17:15 +01:00
|
|
|
.id = PLAT8250_DEV_PLATFORM,
|
2009-05-28 23:04:04 +02:00
|
|
|
.dev = {
|
|
|
|
.platform_data = serial_platform_data,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2009-11-22 19:11:31 +01:00
|
|
|
static inline void __init zoom_init_quaduart(void)
|
2009-05-28 23:04:04 +02:00
|
|
|
{
|
|
|
|
int quart_cs;
|
|
|
|
unsigned long cs_mem_base;
|
|
|
|
int quart_gpio = 0;
|
|
|
|
|
2011-07-04 13:08:46 +02:00
|
|
|
if (gpio_request_one(ZOOM_QUADUART_RST_GPIO,
|
|
|
|
GPIOF_OUT_INIT_LOW,
|
|
|
|
"TL16CP754C GPIO") < 0) {
|
|
|
|
pr_err("Failed to request GPIO%d for TL16CP754C\n",
|
|
|
|
ZOOM_QUADUART_RST_GPIO);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-11-22 19:11:31 +01:00
|
|
|
quart_cs = ZOOM_QUADUART_CS;
|
2009-05-28 23:04:04 +02:00
|
|
|
|
|
|
|
if (gpmc_cs_request(quart_cs, SZ_1M, &cs_mem_base) < 0) {
|
|
|
|
printk(KERN_ERR "Failed to request GPMC mem"
|
|
|
|
"for Quad UART(TL16CP754C)\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-11-22 19:11:31 +01:00
|
|
|
quart_gpio = ZOOM_QUADUART_GPIO;
|
2009-05-28 23:04:04 +02:00
|
|
|
|
2011-05-03 17:22:09 +02:00
|
|
|
if (gpio_request_one(quart_gpio, GPIOF_IN, "TL16CP754C GPIO") < 0)
|
2009-05-28 23:04:04 +02:00
|
|
|
printk(KERN_ERR "Failed to request GPIO%d for TL16CP754C\n",
|
|
|
|
quart_gpio);
|
|
|
|
}
|
|
|
|
|
2009-11-22 19:11:31 +01:00
|
|
|
static inline int omap_zoom_debugboard_detect(void)
|
2009-05-28 23:04:04 +02:00
|
|
|
{
|
|
|
|
int debug_board_detect = 0;
|
2009-08-21 20:11:20 +02:00
|
|
|
int ret = 1;
|
2009-05-28 23:04:04 +02:00
|
|
|
|
2009-11-22 19:11:31 +01:00
|
|
|
debug_board_detect = ZOOM_SMSC911X_GPIO;
|
2009-05-28 23:04:04 +02:00
|
|
|
|
2011-05-03 17:22:09 +02:00
|
|
|
if (gpio_request_one(debug_board_detect, GPIOF_IN,
|
|
|
|
"Zoom debug board detect") < 0) {
|
2009-11-22 19:11:31 +01:00
|
|
|
printk(KERN_ERR "Failed to request GPIO%d for Zoom debug"
|
2009-05-28 23:04:04 +02:00
|
|
|
"board detect\n", debug_board_detect);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!gpio_get_value(debug_board_detect)) {
|
2009-08-21 20:11:20 +02:00
|
|
|
ret = 0;
|
2009-05-28 23:04:04 +02:00
|
|
|
}
|
2009-08-21 20:11:20 +02:00
|
|
|
gpio_free(debug_board_detect);
|
|
|
|
return ret;
|
2009-05-28 23:04:04 +02:00
|
|
|
}
|
|
|
|
|
2009-11-22 19:11:31 +01:00
|
|
|
static struct platform_device *zoom_devices[] __initdata = {
|
|
|
|
&zoom_debugboard_serial_device,
|
2009-05-28 23:04:04 +02:00
|
|
|
};
|
|
|
|
|
2009-11-22 19:11:31 +01:00
|
|
|
int __init zoom_debugboard_init(void)
|
2009-05-28 23:04:04 +02:00
|
|
|
{
|
2009-11-22 19:11:31 +01:00
|
|
|
if (!omap_zoom_debugboard_detect())
|
2009-05-28 23:04:04 +02:00
|
|
|
return 0;
|
|
|
|
|
2009-11-22 19:11:31 +01:00
|
|
|
zoom_init_smsc911x();
|
|
|
|
zoom_init_quaduart();
|
|
|
|
return platform_add_devices(zoom_devices, ARRAY_SIZE(zoom_devices));
|
2009-05-28 23:04:04 +02:00
|
|
|
}
|