All of lore.kernel.org
 help / color / mirror / Atom feed
From: mkl@pengutronix.de (Marc Kleine-Budde)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCHv2 3/4] mach-mx31_3ds: Add support for framebuffer and LCD
Date: Mon, 07 Mar 2011 11:21:40 +0100	[thread overview]
Message-ID: <4D74B1B4.5040702@pengutronix.de> (raw)
In-Reply-To: <1299492741.2468.33.camel@realization>

On 03/07/2011 11:12 AM, Alberto Panizzo wrote:
> 
> 
> Signed-off-by: Alberto Panizzo <alberto@amarulasolutions.com>
> ---
>  arch/arm/mach-mx3/mach-mx31_3ds.c |  130 +++++++++++++++++++++++++++++++++++++
>  1 files changed, 130 insertions(+), 0 deletions(-)
> 
> diff --git a/arch/arm/mach-mx3/mach-mx31_3ds.c b/arch/arm/mach-mx3/mach-mx31_3ds.c
> index cff9206..bb7e432 100644
> --- a/arch/arm/mach-mx3/mach-mx31_3ds.c
> +++ b/arch/arm/mach-mx3/mach-mx31_3ds.c
> @@ -21,6 +21,7 @@
>  #include <linux/platform_device.h>
>  #include <linux/mfd/mc13783.h>
>  #include <linux/spi/spi.h>
> +#include <linux/spi/l4f00242t03.h>
>  #include <linux/regulator/machine.h>
>  #include <linux/usb/otg.h>
>  #include <linux/usb/ulpi.h>
> @@ -36,6 +37,8 @@
>  #include <mach/3ds_debugboard.h>
>  #include <mach/ulpi.h>
>  #include <mach/mmc.h>
> +#include <mach/ipu.h>
> +#include <mach/mx3fb.h>
>  
>  #include "devices-imx31.h"
>  #include "devices.h"
> @@ -50,6 +53,12 @@ static int mx31_3ds_pins[] = {
>  	MX31_PIN_TXD1__TXD1,
>  	MX31_PIN_RXD1__RXD1,
>  	IOMUX_MODE(MX31_PIN_GPIO1_1, IOMUX_CONFIG_GPIO),
> +	/*SPI0*/
> +	MX31_PIN_CSPI1_SCLK__SCLK,
> +	MX31_PIN_CSPI1_MOSI__MOSI,
> +	MX31_PIN_CSPI1_MISO__MISO,
> +	MX31_PIN_CSPI1_SPI_RDY__SPI_RDY,
> +	MX31_PIN_CSPI1_SS2__SS2, /* CS for LCD */
>  	/* SPI 1 */
>  	MX31_PIN_CSPI2_SCLK__SCLK,
>  	MX31_PIN_CSPI2_MOSI__MOSI,
> @@ -109,6 +118,70 @@ static int mx31_3ds_pins[] = {
>  	MX31_PIN_SD1_CMD__SD1_CMD,
>  	MX31_PIN_GPIO3_1__GPIO3_1, /* Card detect */
>  	MX31_PIN_GPIO3_0__GPIO3_0, /* OE */
> +	/* Framebuffer */
> +	MX31_PIN_LD0__LD0,
> +	MX31_PIN_LD1__LD1,
> +	MX31_PIN_LD2__LD2,
> +	MX31_PIN_LD3__LD3,
> +	MX31_PIN_LD4__LD4,
> +	MX31_PIN_LD5__LD5,
> +	MX31_PIN_LD6__LD6,
> +	MX31_PIN_LD7__LD7,
> +	MX31_PIN_LD8__LD8,
> +	MX31_PIN_LD9__LD9,
> +	MX31_PIN_LD10__LD10,
> +	MX31_PIN_LD11__LD11,
> +	MX31_PIN_LD12__LD12,
> +	MX31_PIN_LD13__LD13,
> +	MX31_PIN_LD14__LD14,
> +	MX31_PIN_LD15__LD15,
> +	MX31_PIN_LD16__LD16,
> +	MX31_PIN_LD17__LD17,
> +	MX31_PIN_VSYNC3__VSYNC3,
> +	MX31_PIN_HSYNC__HSYNC,
> +	MX31_PIN_FPSHIFT__FPSHIFT,
> +	MX31_PIN_CONTRAST__CONTRAST,
> +};
> +
> +/*
> + * FB support
> + */
> +static const struct fb_videomode fb_modedb[] = {
> +	{	/* 480x640 @ 60 Hz */
> +		.name		= "Epson-VGA",
> +		.refresh	= 60,
> +		.xres		= 480,
> +		.yres		= 640,
> +		.pixclock	= 41701,
> +		.left_margin	= 20,
> +		.right_margin	= 41,
> +		.upper_margin	= 10,
> +		.lower_margin	= 5,
> +		.hsync_len	= 20,
> +		.vsync_len	= 10,
> +		.sync		= FB_SYNC_OE_ACT_HIGH | FB_SYNC_CLK_INVERT,
> +		.vmode		= FB_VMODE_NONINTERLACED,
> +		.flag		= 0,
> +	},
> +};
> +
> +static struct ipu_platform_data mx3_ipu_data = {
> +	.irq_base = MXC_IPU_IRQ_START,
> +};
> +
> +static struct mx3fb_platform_data mx3fb_pdata = {
> +	.dma_dev	= &mx3_ipu.dev,
> +	.name		= "Epson-VGA",
> +	.mode		= fb_modedb,
> +	.num_modes	= ARRAY_SIZE(fb_modedb),
> +};
> +
> +/* LCD */
> +static struct l4f00242t03_pdata mx31_3ds_l4f00242t03_pdata = {
> +	.reset_gpio =		IOMUX_TO_GPIO(MX31_PIN_LCS1),
> +	.data_enable_gpio =	IOMUX_TO_GPIO(MX31_PIN_SER_RS),
> +	.core_supply =		"lcd_2v8",
> +	.io_supply =		"vdd_lcdio",

please make the indention around the "=" consistent.

>  };
>  
>  /*
> @@ -232,6 +305,38 @@ static struct regulator_init_data vmmc2_init = {
>  	.consumer_supplies = vmmc2_consumers,
>  };
>  
> +static struct regulator_consumer_supply vmmc1_consumers[] = {
> +	REGULATOR_SUPPLY("lcd_2v8", NULL),
> +};
> +
> +static struct regulator_init_data vmmc1_init = {
> +	.constraints = {
> +		.min_uV = 2800000,
> +		.max_uV = 2800000,
> +		.apply_uV = 1,
> +		.valid_ops_mask = REGULATOR_CHANGE_VOLTAGE |
> +				  REGULATOR_CHANGE_STATUS,
> +	},
> +	.num_consumer_supplies = ARRAY_SIZE(vmmc1_consumers),
> +	.consumer_supplies = vmmc1_consumers,
> +};
> +
> +static struct regulator_consumer_supply vgen_consumers[] = {
> +	REGULATOR_SUPPLY("vdd_lcdio", NULL),
> +};
> +
> +static struct regulator_init_data vgen_init = {
> +	.constraints = {
> +		.min_uV = 1800000,
> +		.max_uV = 1800000,
> +		.apply_uV = 1,
> +		.valid_ops_mask = REGULATOR_CHANGE_VOLTAGE |
> +				  REGULATOR_CHANGE_STATUS,
> +	},
> +	.num_consumer_supplies = ARRAY_SIZE(vgen_consumers),
> +	.consumer_supplies = vgen_consumers,
> +};
> +
>  static struct mc13xxx_regulator_init_data mx31_3ds_regulators[] = {
>  	{
>  		.id = MC13783_REG_PWGT1SPI, /* Power Gate for ARM core. */
> @@ -249,6 +354,12 @@ static struct mc13xxx_regulator_init_data mx31_3ds_regulators[] = {
>  	}, {
>  		.id = MC13783_REG_VMMC2, /* Power MMC/SD, WiFi/Bluetooth. */
>  		.init_data = &vmmc2_init,
> +	}, {
> +		.id = MC13783_REG_VMMC1, /* Power LCD, CMOS, FM, GPS, Accel. */
> +		.init_data = &vmmc1_init,
> +	}, {
> +		.id = MC13783_REG_VGEN,  /* Power LCD */
> +		.init_data = &vgen_init,
>  	},
>  };
>  
> @@ -260,6 +371,15 @@ static struct mc13xxx_platform_data mc13783_pdata __initdata = {
>  };
>  
>  /* SPI */
> +static int spi0_internal_chipselect[] = {
> +	MXC_SPI_CS(2),
> +};
> +
> +static const struct spi_imx_master spi0_pdata __initconst = {
> +	.chipselect	= spi0_internal_chipselect,
> +	.num_chipselect	= ARRAY_SIZE(spi0_internal_chipselect),
> +};
> +
>  static int spi1_internal_chipselect[] = {
>  	MXC_SPI_CS(0),
>  	MXC_SPI_CS(2),
> @@ -279,6 +399,12 @@ static struct spi_board_info mx31_3ds_spi_devs[] __initdata = {
>  		.platform_data	= &mc13783_pdata,
>  		.irq		= IOMUX_TO_IRQ(MX31_PIN_GPIO1_3),
>  		.mode = SPI_CS_HIGH,
> +	}, {
> +		.modalias	= "l4f00242t03",
> +		.max_speed_hz	= 5000000,
> +		.bus_num	= 0,
> +		.chip_select	= 0, /* SS2 */
> +		.platform_data	= &mx31_3ds_l4f00242t03_pdata,
>  	},
>  };
>  
> @@ -461,6 +587,10 @@ static void __init mx31_3ds_init(void)
>  	imx31_add_imx2_wdt(NULL);
>  	imx31_add_imx_i2c0(&mx31_3ds_i2c0_data);
>  	imx31_add_mxc_mmc(0, &sdhc1_pdata);
> +
> +	imx31_add_spi_imx0(&spi0_pdata);
> +	mxc_register_device(&mx3_ipu, &mx3_ipu_data);
> +	mxc_register_device(&mx3_fb, &mx3fb_pdata);
>  }
>  
>  static void __init mx31_3ds_timer_init(void)

cheers, Marc

-- 
Pengutronix e.K.                  | Marc Kleine-Budde           |
Industrial Linux Solutions        | Phone: +49-231-2826-924     |
Vertretung West/Dortmund          | Fax:   +49-5121-206917-5555 |
Amtsgericht Hildesheim, HRA 2686  | http://www.pengutronix.de   |

-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 262 bytes
Desc: OpenPGP digital signature
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20110307/bc64f646/attachment.sig>

  reply	other threads:[~2011-03-07 10:21 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-03-07 10:09 [PATCHv2 0/4] Continue the mx31_3ds machine support Alberto Panizzo
2011-03-07 10:10 ` [PATCH 1/4] spi_imx: Fix misspelled configuration variable SOC_IMX31 Alberto Panizzo
2011-03-07 10:23   ` [PATCHv2 " Alberto Panizzo
2011-03-07 10:11 ` [PATCHv2 2/4] mach-mx31_3ds: Add support for the MMC slot of the personality board Alberto Panizzo
2011-03-07 10:20   ` Marc Kleine-Budde
2011-03-07 10:12 ` [PATCHv2 3/4] mach-mx31_3ds: Add support for framebuffer and LCD Alberto Panizzo
2011-03-07 10:21   ` Marc Kleine-Budde [this message]
2011-03-07 10:13 ` [PATCHv2 4/4] mach-mx31_3ds: Add support for the camera device on the personality board Alberto Panizzo
2011-03-07 10:16 ` [PATCHv2 0/4] Continue the mx31_3ds machine support Marc Kleine-Budde
2011-03-07 10:42   ` [PATCHv3 " Alberto Panizzo
2011-03-07 10:44     ` [PATCHv3 1/4] spi_imx: Fix misspelled configuration variable SOC_IMX31 Alberto Panizzo
2011-03-07 10:45     ` [PATCHv3 2/4] mach-mx31_3ds: Add support for the MMC slot of the personality board Alberto Panizzo
2011-03-07 10:46     ` [PATCHv3 3/4] mach-mx31_3ds: Add support for framebuffer and LCD Alberto Panizzo
2011-03-07 10:47     ` [PATCHv3 4/4] mach-mx31_3ds: Add support for the camera device on the personality board Alberto Panizzo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4D74B1B4.5040702@pengutronix.de \
    --to=mkl@pengutronix.de \
    --cc=linux-arm-kernel@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.