blob: 369c2eb7715b30de41323fb4dceb04c1b957c2f0 [file] [log] [blame]
Vikram Pandita577145f2009-05-28 14:04:04 -07001/*
2 * Copyright (C) 2009 Texas Instruments Inc.
3 * Mikkel Christensen <mlc@ti.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
9
10#include <linux/kernel.h>
11#include <linux/init.h>
12#include <linux/gpio.h>
13#include <linux/serial_8250.h>
14#include <linux/smsc911x.h>
Vikram Panditac426df82009-08-28 11:24:08 -070015#include <linux/interrupt.h>
Vikram Pandita577145f2009-05-28 14:04:04 -070016
Tony Lindgrence491cf2009-10-20 09:40:47 -070017#include <plat/gpmc.h>
Mike Rapoport21b42732011-04-16 22:29:30 +000018#include <plat/gpmc-smsc911x.h>
Vikram Pandita577145f2009-05-28 14:04:04 -070019
Manjunath Kondaiah G04aeae72010-10-08 09:58:35 -070020#include <mach/board-zoom.h>
21
vikram pandita62d0b3362009-11-22 10:11:31 -080022#define ZOOM_SMSC911X_CS 7
23#define ZOOM_SMSC911X_GPIO 158
24#define ZOOM_QUADUART_CS 3
25#define ZOOM_QUADUART_GPIO 102
Charulatha V4e964252011-07-04 04:08:46 -070026#define ZOOM_QUADUART_RST_GPIO 152
Vikram Pandita577145f2009-05-28 14:04:04 -070027#define QUART_CLK 1843200
28#define DEBUG_BASE 0x08000000
vikram pandita62d0b3362009-11-22 10:11:31 -080029#define ZOOM_ETHR_START DEBUG_BASE
Vikram Pandita577145f2009-05-28 14:04:04 -070030
Mike Rapoport21b42732011-04-16 22:29:30 +000031static struct omap_smsc911x_platform_data zoom_smsc911x_cfg = {
32 .cs = ZOOM_SMSC911X_CS,
33 .gpio_irq = ZOOM_SMSC911X_GPIO,
34 .gpio_reset = -EINVAL,
Vikram Pandita577145f2009-05-28 14:04:04 -070035 .flags = SMSC911X_USE_32BIT,
Vikram Pandita577145f2009-05-28 14:04:04 -070036};
37
vikram pandita62d0b3362009-11-22 10:11:31 -080038static inline void __init zoom_init_smsc911x(void)
Vikram Pandita577145f2009-05-28 14:04:04 -070039{
Mike Rapoport21b42732011-04-16 22:29:30 +000040 gpmc_smsc911x_init(&zoom_smsc911x_cfg);
Vikram Pandita577145f2009-05-28 14:04:04 -070041}
42
43static struct plat_serial8250_port serial_platform_data[] = {
44 {
Tony Lindgrena4f57b82010-04-30 12:57:14 -070045 .mapbase = ZOOM_UART_BASE,
Vikram Pandita577145f2009-05-28 14:04:04 -070046 .irq = OMAP_GPIO_IRQ(102),
47 .flags = UPF_BOOT_AUTOCONF|UPF_IOREMAP|UPF_SHARE_IRQ,
Vikram Panditac426df82009-08-28 11:24:08 -070048 .irqflags = IRQF_SHARED | IRQF_TRIGGER_RISING,
Vikram Pandita577145f2009-05-28 14:04:04 -070049 .iotype = UPIO_MEM,
50 .regshift = 1,
51 .uartclk = QUART_CLK,
52 }, {
53 .flags = 0
54 }
55};
56
vikram pandita62d0b3362009-11-22 10:11:31 -080057static struct platform_device zoom_debugboard_serial_device = {
Vikram Pandita577145f2009-05-28 14:04:04 -070058 .name = "serial8250",
Sergio Aguirrefcbcea92010-03-01 12:17:15 -060059 .id = PLAT8250_DEV_PLATFORM,
Vikram Pandita577145f2009-05-28 14:04:04 -070060 .dev = {
61 .platform_data = serial_platform_data,
62 },
63};
64
vikram pandita62d0b3362009-11-22 10:11:31 -080065static inline void __init zoom_init_quaduart(void)
Vikram Pandita577145f2009-05-28 14:04:04 -070066{
67 int quart_cs;
68 unsigned long cs_mem_base;
69 int quart_gpio = 0;
70
Charulatha V4e964252011-07-04 04:08:46 -070071 if (gpio_request_one(ZOOM_QUADUART_RST_GPIO,
72 GPIOF_OUT_INIT_LOW,
73 "TL16CP754C GPIO") < 0) {
74 pr_err("Failed to request GPIO%d for TL16CP754C\n",
75 ZOOM_QUADUART_RST_GPIO);
76 return;
77 }
78
vikram pandita62d0b3362009-11-22 10:11:31 -080079 quart_cs = ZOOM_QUADUART_CS;
Vikram Pandita577145f2009-05-28 14:04:04 -070080
81 if (gpmc_cs_request(quart_cs, SZ_1M, &cs_mem_base) < 0) {
82 printk(KERN_ERR "Failed to request GPMC mem"
83 "for Quad UART(TL16CP754C)\n");
84 return;
85 }
86
vikram pandita62d0b3362009-11-22 10:11:31 -080087 quart_gpio = ZOOM_QUADUART_GPIO;
Vikram Pandita577145f2009-05-28 14:04:04 -070088
Igor Grinbergbc593f52011-05-03 18:22:09 +030089 if (gpio_request_one(quart_gpio, GPIOF_IN, "TL16CP754C GPIO") < 0)
Vikram Pandita577145f2009-05-28 14:04:04 -070090 printk(KERN_ERR "Failed to request GPIO%d for TL16CP754C\n",
91 quart_gpio);
Vikram Pandita577145f2009-05-28 14:04:04 -070092}
93
vikram pandita62d0b3362009-11-22 10:11:31 -080094static inline int omap_zoom_debugboard_detect(void)
Vikram Pandita577145f2009-05-28 14:04:04 -070095{
96 int debug_board_detect = 0;
Vikram Pandita2fcc81a2009-08-21 13:11:20 -050097 int ret = 1;
Vikram Pandita577145f2009-05-28 14:04:04 -070098
vikram pandita62d0b3362009-11-22 10:11:31 -080099 debug_board_detect = ZOOM_SMSC911X_GPIO;
Vikram Pandita577145f2009-05-28 14:04:04 -0700100
Igor Grinbergbc593f52011-05-03 18:22:09 +0300101 if (gpio_request_one(debug_board_detect, GPIOF_IN,
102 "Zoom debug board detect") < 0) {
vikram pandita62d0b3362009-11-22 10:11:31 -0800103 printk(KERN_ERR "Failed to request GPIO%d for Zoom debug"
Vikram Pandita577145f2009-05-28 14:04:04 -0700104 "board detect\n", debug_board_detect);
105 return 0;
106 }
Vikram Pandita577145f2009-05-28 14:04:04 -0700107
108 if (!gpio_get_value(debug_board_detect)) {
Vikram Pandita2fcc81a2009-08-21 13:11:20 -0500109 ret = 0;
Vikram Pandita577145f2009-05-28 14:04:04 -0700110 }
Vikram Pandita2fcc81a2009-08-21 13:11:20 -0500111 gpio_free(debug_board_detect);
112 return ret;
Vikram Pandita577145f2009-05-28 14:04:04 -0700113}
114
vikram pandita62d0b3362009-11-22 10:11:31 -0800115static struct platform_device *zoom_devices[] __initdata = {
vikram pandita62d0b3362009-11-22 10:11:31 -0800116 &zoom_debugboard_serial_device,
Vikram Pandita577145f2009-05-28 14:04:04 -0700117};
118
vikram pandita62d0b3362009-11-22 10:11:31 -0800119int __init zoom_debugboard_init(void)
Vikram Pandita577145f2009-05-28 14:04:04 -0700120{
vikram pandita62d0b3362009-11-22 10:11:31 -0800121 if (!omap_zoom_debugboard_detect())
Vikram Pandita577145f2009-05-28 14:04:04 -0700122 return 0;
123
vikram pandita62d0b3362009-11-22 10:11:31 -0800124 zoom_init_smsc911x();
125 zoom_init_quaduart();
126 return platform_add_devices(zoom_devices, ARRAY_SIZE(zoom_devices));
Vikram Pandita577145f2009-05-28 14:04:04 -0700127}