Message ID | 1304347971-1504-2-git-send-email-mayur@ti.com (mailing list archive) |
---|---|
State | Rejected |
Delegated to: | Tomi Valkeinen |
Headers | show |
On Mon, 2011-05-02 at 20:22 +0530, Mayuresh Janorkar wrote: > picodlp is a TI projector panel supported by OMAP > picodlp makes use of i2c interface for transferring commands to the panel > panel data is required for identifying i2c_adapter id and dlp GPIOs > > A new header file has been added for panel data and > picodlp_panel_data struct has been introduced > > Signed-off-by: Mayuresh Janorkar <mayur@ti.com> > --- > Changes since v1: Nil > > arch/arm/plat-omap/include/plat/panel-picodlp.h | 25 +++++++++++++++++++++++ > 1 files changed, 25 insertions(+), 0 deletions(-) > create mode 100644 arch/arm/plat-omap/include/plat/panel-picodlp.h > > diff --git a/arch/arm/plat-omap/include/plat/panel-picodlp.h b/arch/arm/plat-omap/include/plat/panel-picodlp.h > new file mode 100644 > index 0000000..89ac4b9 > --- /dev/null > +++ b/arch/arm/plat-omap/include/plat/panel-picodlp.h > @@ -0,0 +1,25 @@ > +/* > + * panel data for picodlp panel > + * > + * Copyright (C) 2011 Texas Instruments > + * > + * Author: Mayuresh Janorkar <mayur@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. > + */ > +#ifndef __ARCH_ARM_PLAT_PANEL_PICODLP_H > +#define __ARCH_ARM_PLAT_PANEL_PICODLP_H > +/** > + * struct : picodlp panel data > + * picodlp_adapter_id: i2c_adapter number for picodlp > + */ > +struct picodlp_panel_data { > + int picodlp_adapter_id; > + int phy_reset_gpio; > + int ready_reset_gpio; > + int park_gpio; > + int display_sel_gpio; > +}; I think I've asked this before: where do the names of the GPIOs come from? I can't find them from the documentation. Tomi -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/arch/arm/plat-omap/include/plat/panel-picodlp.h b/arch/arm/plat-omap/include/plat/panel-picodlp.h new file mode 100644 index 0000000..89ac4b9 --- /dev/null +++ b/arch/arm/plat-omap/include/plat/panel-picodlp.h @@ -0,0 +1,25 @@ +/* + * panel data for picodlp panel + * + * Copyright (C) 2011 Texas Instruments + * + * Author: Mayuresh Janorkar <mayur@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. + */ +#ifndef __ARCH_ARM_PLAT_PANEL_PICODLP_H +#define __ARCH_ARM_PLAT_PANEL_PICODLP_H +/** + * struct : picodlp panel data + * picodlp_adapter_id: i2c_adapter number for picodlp + */ +struct picodlp_panel_data { + int picodlp_adapter_id; + int phy_reset_gpio; + int ready_reset_gpio; + int park_gpio; + int display_sel_gpio; +}; +#endif /* __ARCH_ARM_PLAT_PANEL_PICODLP_H */
picodlp is a TI projector panel supported by OMAP picodlp makes use of i2c interface for transferring commands to the panel panel data is required for identifying i2c_adapter id and dlp GPIOs A new header file has been added for panel data and picodlp_panel_data struct has been introduced Signed-off-by: Mayuresh Janorkar <mayur@ti.com> --- Changes since v1: Nil arch/arm/plat-omap/include/plat/panel-picodlp.h | 25 +++++++++++++++++++++++ 1 files changed, 25 insertions(+), 0 deletions(-) create mode 100644 arch/arm/plat-omap/include/plat/panel-picodlp.h