| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 | /* * board-omap3pandora.c (Pandora Handheld Console) * * 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. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA * */#include <linux/init.h>#include <linux/kernel.h>#include <linux/platform_device.h>#include <linux/spi/spi.h>#include <linux/regulator/machine.h>#include <linux/i2c/twl.h>#include <linux/wl12xx.h>#include <linux/mtd/partitions.h>#include <linux/mtd/nand.h>#include <linux/leds.h>#include <linux/input.h>#include <linux/input/matrix_keypad.h>#include <linux/gpio.h>#include <linux/gpio_keys.h>#include <linux/mmc/host.h>#include <linux/mmc/card.h>#include <linux/regulator/fixed.h>#include <linux/platform_data/spi-omap2-mcspi.h>#include <asm/mach-types.h>#include <asm/mach/arch.h>#include <asm/mach/map.h>#include "common.h"#include <video/omapdss.h>#include <linux/platform_data/mtd-nand-omap2.h>#include "mux.h"#include "sdram-micron-mt46h32m32lf-6.h"#include "hsmmc.h"#include "common-board-devices.h"#include "gpmc-nand.h"#define PANDORA_WIFI_IRQ_GPIO		21#define PANDORA_WIFI_NRESET_GPIO	23#define OMAP3_PANDORA_TS_GPIO		94static struct mtd_partition omap3pandora_nand_partitions[] = {	{		.name           = "xloader",		.offset         = 0,		.size           = 4 * NAND_BLOCK_SIZE,		.mask_flags     = MTD_WRITEABLE	}, {		.name           = "uboot",		.offset         = MTDPART_OFS_APPEND,		.size           = 15 * NAND_BLOCK_SIZE,	}, {		.name           = "uboot-env",		.offset         = MTDPART_OFS_APPEND,		.size           = 1 * NAND_BLOCK_SIZE,	}, {		.name           = "boot",		.offset         = MTDPART_OFS_APPEND,		.size           = 80 * NAND_BLOCK_SIZE,	}, {		.name           = "rootfs",		.offset         = MTDPART_OFS_APPEND,		.size           = MTDPART_SIZ_FULL,	},};static struct omap_nand_platform_data pandora_nand_data = {	.cs		= 0,	.devsize	= NAND_BUSWIDTH_16,	.xfer_type	= NAND_OMAP_PREFETCH_DMA,	.parts		= omap3pandora_nand_partitions,	.nr_parts	= ARRAY_SIZE(omap3pandora_nand_partitions),};static struct gpio_led pandora_gpio_leds[] = {	{		.name			= "pandora::sd1",		.default_trigger	= "mmc0",		.gpio			= 128,	}, {		.name			= "pandora::sd2",		.default_trigger	= "mmc1",		.gpio			= 129,	}, {		.name			= "pandora::bluetooth",		.gpio			= 158,	}, {		.name			= "pandora::wifi",		.gpio			= 159,	},};static struct gpio_led_platform_data pandora_gpio_led_data = {	.leds		= pandora_gpio_leds,	.num_leds	= ARRAY_SIZE(pandora_gpio_leds),};static struct platform_device pandora_leds_gpio = {	.name	= "leds-gpio",	.id	= -1,	.dev	= {		.platform_data	= &pandora_gpio_led_data,	},};static struct platform_device pandora_backlight = {	.name	= "pandora-backlight",	.id	= -1,
 |