board-zoom-debugboard.c 3.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * 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>
15
#include <linux/interrupt.h>
16

17 18 19
#include <linux/regulator/fixed.h>
#include <linux/regulator/machine.h>

20
#include <plat/gpmc.h>
21
#include <plat/gpmc-smsc911x.h>
22

23 24
#include <mach/board-zoom.h>

25 26 27
#include "soc.h"
#include "common.h"

28 29 30 31
#define ZOOM_SMSC911X_CS	7
#define ZOOM_SMSC911X_GPIO	158
#define ZOOM_QUADUART_CS	3
#define ZOOM_QUADUART_GPIO	102
32
#define ZOOM_QUADUART_RST_GPIO	152
33 34
#define QUART_CLK		1843200
#define DEBUG_BASE		0x08000000
35
#define ZOOM_ETHR_START	DEBUG_BASE
36

37 38 39 40
static struct omap_smsc911x_platform_data zoom_smsc911x_cfg = {
	.cs             = ZOOM_SMSC911X_CS,
	.gpio_irq       = ZOOM_SMSC911X_GPIO,
	.gpio_reset     = -EINVAL,
41 42 43
	.flags		= SMSC911X_USE_32BIT,
};

44
static inline void __init zoom_init_smsc911x(void)
45
{
46
	gpmc_smsc911x_init(&zoom_smsc911x_cfg);
47 48 49 50
}

static struct plat_serial8250_port serial_platform_data[] = {
	{
51
		.mapbase	= ZOOM_UART_BASE,
52
		.flags		= UPF_BOOT_AUTOCONF|UPF_IOREMAP|UPF_SHARE_IRQ,
53
		.irqflags	= IRQF_SHARED | IRQF_TRIGGER_RISING,
54 55 56 57 58 59 60 61
		.iotype		= UPIO_MEM,
		.regshift	= 1,
		.uartclk	= QUART_CLK,
	}, {
		.flags		= 0
	}
};

62
static struct platform_device zoom_debugboard_serial_device = {
63
	.name			= "serial8250",
64
	.id			= PLAT8250_DEV_PLATFORM,
65 66 67 68 69
	.dev			= {
		.platform_data	= serial_platform_data,
	},
};

70
static inline void __init zoom_init_quaduart(void)
71 72 73 74 75
{
	int quart_cs;
	unsigned long cs_mem_base;
	int quart_gpio = 0;

76 77 78 79 80 81 82 83
	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;
	}

84
	quart_cs = ZOOM_QUADUART_CS;
85 86

	if (gpmc_cs_request(quart_cs, SZ_1M, &cs_mem_base) < 0) {
P
Paul Walmsley 已提交
87
		pr_err("Failed to request GPMC mem for Quad UART(TL16CP754C)\n");
88 89 90
		return;
	}

91
	quart_gpio = ZOOM_QUADUART_GPIO;
92

I
Igor Grinberg 已提交
93
	if (gpio_request_one(quart_gpio, GPIOF_IN, "TL16CP754C GPIO") < 0)
94 95
		printk(KERN_ERR "Failed to request GPIO%d for TL16CP754C\n",
								quart_gpio);
96 97

	serial_platform_data[0].irq = gpio_to_irq(102);
98 99
}

100
static inline int omap_zoom_debugboard_detect(void)
101 102
{
	int debug_board_detect = 0;
103
	int ret = 1;
104

105
	debug_board_detect = ZOOM_SMSC911X_GPIO;
106

I
Igor Grinberg 已提交
107 108
	if (gpio_request_one(debug_board_detect, GPIOF_IN,
			     "Zoom debug board detect") < 0) {
P
Paul Walmsley 已提交
109 110
		pr_err("Failed to request GPIO%d for Zoom debug board detect\n",
		       debug_board_detect);
111 112 113 114
		return 0;
	}

	if (!gpio_get_value(debug_board_detect)) {
115
		ret = 0;
116
	}
117 118
	gpio_free(debug_board_detect);
	return ret;
119 120
}

121 122
static struct platform_device *zoom_devices[] __initdata = {
	&zoom_debugboard_serial_device,
123 124
};

125 126 127 128 129
static struct regulator_consumer_supply dummy_supplies[] = {
	REGULATOR_SUPPLY("vddvario", "smsc911x.0"),
	REGULATOR_SUPPLY("vdd33a", "smsc911x.0"),
};

130
int __init zoom_debugboard_init(void)
131
{
132
	if (!omap_zoom_debugboard_detect())
133 134
		return 0;

135
	regulator_register_fixed(0, dummy_supplies, ARRAY_SIZE(dummy_supplies));
136 137 138
	zoom_init_smsc911x();
	zoom_init_quaduart();
	return platform_add_devices(zoom_devices, ARRAY_SIZE(zoom_devices));
139
}