* Re: [PATCH 0/3] S5PV210: added MIPI-DSI driver. [not found] <00ae01cb86fd$5a4b4000$0ee1c000$%dae@samsung.com> @ 2010-11-18 9:17 ` Paul Mundt 2010-11-18 10:43 ` [PATCH 0/3] S5PV210: added MIPI-DSI Driver daeinki 2010-11-19 1:28 ` daeinki 0 siblings, 2 replies; 6+ messages in thread From: Paul Mundt @ 2010-11-18 9:17 UTC (permalink / raw) To: linux-arm-kernel On Thu, Nov 18, 2010 at 05:48:20PM +0900, Inki Dae wrote: > This patch is a MIPI-DSI driver for S5PV210. > For starters, this patch series is horribly line wrapped, even patchwork seems to have given up on it on principle. Please read through Documentation/email-clients.txt and resubmit accordingly. Attachments will suffice if you have no other choice, but should be a last resort. ^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 0/3] S5PV210: added MIPI-DSI Driver. 2010-11-18 9:17 ` [PATCH 0/3] S5PV210: added MIPI-DSI driver Paul Mundt @ 2010-11-18 10:43 ` daeinki 2010-11-18 11:30 ` Tomi Valkeinen 2010-11-19 1:28 ` daeinki 1 sibling, 1 reply; 6+ messages in thread From: daeinki @ 2010-11-18 10:43 UTC (permalink / raw) To: linux-arm-kernel Hello all, This patch is a MIPI-DSI driver for S5PV210. PATCH 1/3: add a structure for CPU interface to linux/fb.h - RGB or CPU interfaces could be used as display mode but framebuffer framework doesn't consider CPU interface so I added this structure because fb_cpumode structure could be used commonly. PATCH 2/3: add parameters for CPU interface to plat-samsung/fb.h - MIPI-DSI driver would use s3c-fb driver so I added some parameters because MIPI-DSI driver supports CPU interface also. PATCH 3/3: add MIPI-DSI driver for S5PV210. thank you. signed-off-by: Inki Dae <inki.dae@samsung.com> signed-off-by: Kyoungmin Park <kyoungmin.park@samsung.com> ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 0/3] S5PV210: added MIPI-DSI Driver. 2010-11-18 10:43 ` [PATCH 0/3] S5PV210: added MIPI-DSI Driver daeinki @ 2010-11-18 11:30 ` Tomi Valkeinen 0 siblings, 0 replies; 6+ messages in thread From: Tomi Valkeinen @ 2010-11-18 11:30 UTC (permalink / raw) To: linux-arm-kernel Hi, On Thu, 2010-11-18 at 19:43 +0900, ext daeinki wrote: > Hello all, > > This patch is a MIPI-DSI driver for S5PV210. > > PATCH 1/3: add a structure for CPU interface to linux/fb.h > - RGB or CPU interfaces could be used as display mode but framebuffer > framework doesn't consider CPU interface so I added this structure > because fb_cpumode structure could be used commonly. > > PATCH 2/3: add parameters for CPU interface to plat-samsung/fb.h > - MIPI-DSI driver would use s3c-fb driver so I added some parameters > because MIPI-DSI driver supports CPU interface also. > > PATCH 3/3: add MIPI-DSI driver for S5PV210. You have three patches, all with the same subject, and no description. Please check Documentation/SubmittingPatches. Tomi ^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 0/3] S5PV210: added MIPI-DSI Driver. 2010-11-18 9:17 ` [PATCH 0/3] S5PV210: added MIPI-DSI driver Paul Mundt 2010-11-18 10:43 ` [PATCH 0/3] S5PV210: added MIPI-DSI Driver daeinki @ 2010-11-19 1:28 ` daeinki 2011-04-14 12:15 ` [PATCH 0/2] video: add Samsung SoC based MIPI-DSI support daeinki 1 sibling, 1 reply; 6+ messages in thread From: daeinki @ 2010-11-19 1:28 UTC (permalink / raw) To: linux-arm-kernel Hello all, This patch is a MIPI-DSI driver for S5PV210. PATCH 1/3: add a structure for CPU interface to linux/fb.h - RGB or CPU interfaces could be used as display mode but framebuffer framework doesn't consider CPU interface so I added this structure because fb_cpumode structure could be used commonly. PATCH 2/3: add parameters for CPU interface to plat-samsung/fb.h - MIPI-DSI driver would use s3c-fb driver so I added some parameters because MIPI-DSI driver supports CPU interface also. PATCH 3/3: add MIPI-DSI driver for S5PV210. driver features: . Maximum resolution ranges up to XGA (1024x760) . CSIS0 supports 1,2,3 or 4 data lanes . CSIS1 supports 1 or 2 data lanes . supports pixel format : 16bpp, 18bpp packed, 18bpp loosely packed (3 byte format), and 24bpp . supports RGB interface for video image from display controller . support I80 interface for command mode image input from display controller . supports PMS control inteerface for PLL to configure byte clock frequency . supports Prescaler to generate escape clock from byte clock thank you. signed-off-by: Inki Dae <inki.dae@samsung.com> signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> ^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 0/2] video: add Samsung SoC based MIPI-DSI support. 2010-11-19 1:28 ` daeinki @ 2011-04-14 12:15 ` daeinki 2011-08-01 4:06 ` Fwd: " InKi Dae 0 siblings, 1 reply; 6+ messages in thread From: daeinki @ 2011-04-14 12:15 UTC (permalink / raw) To: linux-arm-kernel Hello, all. Samsung S5PV210 and EXYNOS4 SoC platform have one or two MIPI-DSI controller and MIPI-DSI based LCD Panel could be used with this one. this patch adds Samsung SoC based MIPI-DSI support. to use MIPI-DSI based LCD Panel driver, mipi_dsim_lcd_device shoule be registered to MIPI-DSI driver through s5p_mipi_dsi_register_lcd_device() at machine code or machine specific somewhere first, and mipi_dsim_lcd_driver should be registered when s5p_mipi_dsi_register_driver() is called at init function of lcd driver, and then probe() of that driver would be called by MIPI-DSI controller driver if lcd panel name and id of mipi_dsim_lcd_device are same as ones of mipi_dsim_lcd_driver. for this, you can refer to sample lcd panel driver. please see "Documentation/s5p_mipi_dsim/dsim_sample_lcd.c" this patch series includes the following. [PATCH 1/2] video: add Samsung SoC MIPI-DSI controller driver. [PATCH 2/2] video: add Samsung SoC MIPI-DSI based sample lcd panel driver. ^ permalink raw reply [flat|nested] 6+ messages in thread
* Fwd: [PATCH 0/2] video: add Samsung SoC based MIPI-DSI support. 2011-04-14 12:15 ` [PATCH 0/2] video: add Samsung SoC based MIPI-DSI support daeinki @ 2011-08-01 4:06 ` InKi Dae 0 siblings, 0 replies; 6+ messages in thread From: InKi Dae @ 2011-08-01 4:06 UTC (permalink / raw) To: linux-arm-kernel Hello, Paul. I had posted patch sets below on 15 Apr. but there is no any comments. please review this patch sets. thank you. ---------- Forwarded message ---------- From: daeinki <inki.dae@samsung.com> Date: 2011/4/14 Subject: [PATCH 0/2] video: add Samsung SoC based MIPI-DSI support. To: linux-fbdev@vger.kernel.org, lethal@linux-sh.org ÂüÁ¶: kyungmin.park@samsung.com, Kukjin Kim <kgene.kim@samsung.com>, akpm@linux-foundation.org, linux-arm-kernel@lists.infradead.org Hello, all. Samsung S5PV210 and EXYNOS4 SoC platform have one or two MIPI-DSI controller and MIPI-DSI based LCD Panel could be used with this one. this patch adds Samsung SoC based MIPI-DSI support. to use MIPI-DSI based LCD Panel driver, mipi_dsim_lcd_device shoule be registered to MIPI-DSI driver through s5p_mipi_dsi_register_lcd_device() at machine code or machine specific somewhere first, and mipi_dsim_lcd_driver should be registered when s5p_mipi_dsi_register_driver() is called at init function of lcd driver, and then probe() of that driver would be called by MIPI-DSI controller driver if lcd panel name and id of mipi_dsim_lcd_device are same as ones of mipi_dsim_lcd_driver. for this, you can refer to sample lcd panel driver. please see "Documentation/s5p_mipi_dsim/dsim_sample_lcd.c" this patch series includes the following. [PATCH 1/2] video: add Samsung SoC MIPI-DSI controller driver. [PATCH 2/2] video: add Samsung SoC MIPI-DSI based sample lcd panel driver. _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2011-08-01 4:06 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- [not found] <00ae01cb86fd$5a4b4000$0ee1c000$%dae@samsung.com> 2010-11-18 9:17 ` [PATCH 0/3] S5PV210: added MIPI-DSI driver Paul Mundt 2010-11-18 10:43 ` [PATCH 0/3] S5PV210: added MIPI-DSI Driver daeinki 2010-11-18 11:30 ` Tomi Valkeinen 2010-11-19 1:28 ` daeinki 2011-04-14 12:15 ` [PATCH 0/2] video: add Samsung SoC based MIPI-DSI support daeinki 2011-08-01 4:06 ` Fwd: " InKi Dae
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).