mirror of
https://github.com/torvalds/linux.git
synced 2024-12-30 14:52:05 +00:00
3c101c41fb
These changes fix some of the more meaningful warnings that smatch returns for the OMAP subarch code, and unwraps strings that are wrapped at the 80-column boundary, to conform with the current practice. Basic build, boot, and PM logs are available here: http://www.pwsan.com/omap/testlogs/warnings_a_cleanup_3.7/20120912025927/ -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (GNU/Linux) iQIcBAABAgAGBQJQUKL1AAoJEMePsQ0LvSpL+a8QAJlJR9uwqUKu60GfbQEeegce k6pr0xXYvHEmbro/v6O4ezs2o716EBgwBWnId97oOZvVnwhPbEHR87UH8FFOIWOQ +/ui5MxXtYWNjYcDOzdF95reFM1szAAxQu8k9wXg+WBtZ4zCkhknpoftShRbOdg0 BgO0r1iY/wuoFaYgGFKSNdObPVgSTENjbtg/LVvB/V3PQjYmUBosJVH0tPO/LQio pWhozfFuiWbARYxPg6dMOn8yQ5mCeWErpv4WZjM+dgcrkLYyPdI2uUS3Ka8F7Az2 ImC+k0gU6WwkjyKqv/SG2wg5+3Sh8ZZsX0EKXwq0gQEmLWacENS1ELRT3+HcxGru HoAhE46URb4NGzBt7rkIkGg0HcajfORDtZSrGfsEclDmrVV5+JgUzC+PEDiwSxVU LqpJIZ8lxjqBNPSlmXqtEgTG32M6E9fDII8JdGC64vUv+vXzuhpJCXF78I8+A+Hv oSBbTOCzYGz1xp06G6Hzadpo5I1LocBRemsnhw2O9oNDdUZxiGo/qJcWfk2wpMQ6 4c/kHbYEsJ6/7eVe5kNtdkeptAXp1AFO5XIhQpSAs1O1Rr++nDNahaUJA56xev8x GoEZCYLGMGpQnINW6g0Srzwp8n1ywSgt3Gt2fbDTAP+Q02DPT3IIWWs4LlIDIrjZ w0q1kAp1+In5is3pxJvT =ythb -----END PGP SIGNATURE----- Merge tag 'omap-cleanup-b-for-3.7' of git://git.kernel.org/pub/scm/linux/kernel/git/pjw/omap-pending into cleanup-makefile-sparse smatch and string-wrapping cleanups for the OMAP subarch code. These changes fix some of the more meaningful warnings that smatch returns for the OMAP subarch code, and unwraps strings that are wrapped at the 80-column boundary, to conform with the current practice. Basic build, boot, and PM logs are available here: http://www.pwsan.com/omap/testlogs/warnings_a_cleanup_3.7/20120912025927/
140 lines
3.3 KiB
C
140 lines
3.3 KiB
C
/*
|
|
* 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>
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/regulator/fixed.h>
|
|
#include <linux/regulator/machine.h>
|
|
|
|
#include <plat/gpmc.h>
|
|
#include <plat/gpmc-smsc911x.h>
|
|
|
|
#include <mach/board-zoom.h>
|
|
|
|
#include "soc.h"
|
|
#include "common.h"
|
|
|
|
#define ZOOM_SMSC911X_CS 7
|
|
#define ZOOM_SMSC911X_GPIO 158
|
|
#define ZOOM_QUADUART_CS 3
|
|
#define ZOOM_QUADUART_GPIO 102
|
|
#define ZOOM_QUADUART_RST_GPIO 152
|
|
#define QUART_CLK 1843200
|
|
#define DEBUG_BASE 0x08000000
|
|
#define ZOOM_ETHR_START DEBUG_BASE
|
|
|
|
static struct omap_smsc911x_platform_data zoom_smsc911x_cfg = {
|
|
.cs = ZOOM_SMSC911X_CS,
|
|
.gpio_irq = ZOOM_SMSC911X_GPIO,
|
|
.gpio_reset = -EINVAL,
|
|
.flags = SMSC911X_USE_32BIT,
|
|
};
|
|
|
|
static inline void __init zoom_init_smsc911x(void)
|
|
{
|
|
gpmc_smsc911x_init(&zoom_smsc911x_cfg);
|
|
}
|
|
|
|
static struct plat_serial8250_port serial_platform_data[] = {
|
|
{
|
|
.mapbase = ZOOM_UART_BASE,
|
|
.flags = UPF_BOOT_AUTOCONF|UPF_IOREMAP|UPF_SHARE_IRQ,
|
|
.irqflags = IRQF_SHARED | IRQF_TRIGGER_RISING,
|
|
.iotype = UPIO_MEM,
|
|
.regshift = 1,
|
|
.uartclk = QUART_CLK,
|
|
}, {
|
|
.flags = 0
|
|
}
|
|
};
|
|
|
|
static struct platform_device zoom_debugboard_serial_device = {
|
|
.name = "serial8250",
|
|
.id = PLAT8250_DEV_PLATFORM,
|
|
.dev = {
|
|
.platform_data = serial_platform_data,
|
|
},
|
|
};
|
|
|
|
static inline void __init zoom_init_quaduart(void)
|
|
{
|
|
int quart_cs;
|
|
unsigned long cs_mem_base;
|
|
int quart_gpio = 0;
|
|
|
|
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;
|
|
}
|
|
|
|
quart_cs = ZOOM_QUADUART_CS;
|
|
|
|
if (gpmc_cs_request(quart_cs, SZ_1M, &cs_mem_base) < 0) {
|
|
pr_err("Failed to request GPMC mem for Quad UART(TL16CP754C)\n");
|
|
return;
|
|
}
|
|
|
|
quart_gpio = ZOOM_QUADUART_GPIO;
|
|
|
|
if (gpio_request_one(quart_gpio, GPIOF_IN, "TL16CP754C GPIO") < 0)
|
|
printk(KERN_ERR "Failed to request GPIO%d for TL16CP754C\n",
|
|
quart_gpio);
|
|
|
|
serial_platform_data[0].irq = gpio_to_irq(102);
|
|
}
|
|
|
|
static inline int omap_zoom_debugboard_detect(void)
|
|
{
|
|
int debug_board_detect = 0;
|
|
int ret = 1;
|
|
|
|
debug_board_detect = ZOOM_SMSC911X_GPIO;
|
|
|
|
if (gpio_request_one(debug_board_detect, GPIOF_IN,
|
|
"Zoom debug board detect") < 0) {
|
|
pr_err("Failed to request GPIO%d for Zoom debug board detect\n",
|
|
debug_board_detect);
|
|
return 0;
|
|
}
|
|
|
|
if (!gpio_get_value(debug_board_detect)) {
|
|
ret = 0;
|
|
}
|
|
gpio_free(debug_board_detect);
|
|
return ret;
|
|
}
|
|
|
|
static struct platform_device *zoom_devices[] __initdata = {
|
|
&zoom_debugboard_serial_device,
|
|
};
|
|
|
|
static struct regulator_consumer_supply dummy_supplies[] = {
|
|
REGULATOR_SUPPLY("vddvario", "smsc911x.0"),
|
|
REGULATOR_SUPPLY("vdd33a", "smsc911x.0"),
|
|
};
|
|
|
|
int __init zoom_debugboard_init(void)
|
|
{
|
|
if (!omap_zoom_debugboard_detect())
|
|
return 0;
|
|
|
|
regulator_register_fixed(0, dummy_supplies, ARRAY_SIZE(dummy_supplies));
|
|
zoom_init_smsc911x();
|
|
zoom_init_quaduart();
|
|
return platform_add_devices(zoom_devices, ARRAY_SIZE(zoom_devices));
|
|
}
|