Re: [PATCH 1/2] staging: fbtft: add support for ST7789V display controller

2015-10-21 Thread Dennis Menschel
Am 11.10.2015 um 16:19 schrieb Noralf Trønnes: > > Den 11.10.2015 09:31, skrev Dennis Menschel: >> Am 10.10.2015 um 17:36 schrieb Noralf Trønnes: >>> Den 07.10.2015 22:15, skrev Dennis Menschel: >>>> This patch adds support for the Sitronix ST7789V display c

[PATCH 0/4] staging: fbtft: cleanup ST7789V and C-Berry28 drivers

2015-10-21 Thread Dennis Menschel
This set of patches brings some improvements for the ST7789V display controller driver based on suggestions by Noralf Trønnes. In addition, the settings for the concrete C-Berry28 display have been adjusted based on feedback by its vendor admatec. Dennis Menschel (4): staging: fbtft: use MIPI

[PATCH 3/4] staging: fbtft: use init function instead of init sequence

2015-10-21 Thread Dennis Menschel
This patch converts the default init sequence of the ST7789V display controller into an init function, as init sequences are considered deprecated by the maintainers of fbtft. Signed-off-by: Dennis Menschel --- drivers/staging/fbtft/fb_st7789v.c | 43 +- 1

[PATCH 1/4] staging: fbtft: use MIPI DCS for ST7789V and C-Berry28

2015-10-21 Thread Dennis Menschel
This patch makes use of the standard MIPI Display Command Set to remove redundant entries from the command enum of the ST7789V display controller and also some of the magic constants found in the init sequence of the C-Berry28 display. Signed-off-by: Dennis Menschel --- drivers/staging/fbtft

[PATCH 2/4] staging: fbtft: remove redundant set_addr_win() function

2015-10-21 Thread Dennis Menschel
This patch removes the function set_addr_win() from fb_st7789v.c, as its definition is redundant to the default implementation fbtft_set_addr_win() which can be found in fbtft-core.c. Signed-off-by: Dennis Menschel --- drivers/staging/fbtft/fb_st7789v.c | 19 --- 1 file changed

[PATCH 4/4] staging: fbtft: fix voltage settings for C-Berry28

2015-10-21 Thread Dennis Menschel
e, it has turned out that for the voltages VCOM and AVDD, the code was indeed correct, but the comments were wrong. This patch is meant to fix these two pending mistakes. Signed-off-by: Dennis Menschel --- drivers/staging/fbtft/fbtft_device.c | 8 1 file changed, 4 insertions(+), 4 deleti

Re: [PATCH 1/2] staging: fbtft: add support for ST7789V display controller

2015-10-11 Thread Dennis Menschel
Am 10.10.2015 um 17:36 schrieb Noralf Trønnes: > > Den 07.10.2015 22:15, skrev Dennis Menschel: >> This patch adds support for the Sitronix ST7789V display controller. >> The controller is intended for small color displays with a resolution >> of up to 320x240 pixels. >

[PATCH 2/2] staging: fbtft: add support for C-Berry28 display

2015-10-07 Thread Dennis Menschel
This patch adds support for the C-Berry28, a small 2.8" color display with a resolution of 320x240 pixels from admatec for the Raspberry Pi. It uses the Sitronix ST7789V display controller along with a custom init sequence and custom gamma curves. Signed-off-by: Dennis Menschel --- dr

[PATCH 1/2] staging: fbtft: add support for ST7789V display controller

2015-10-07 Thread Dennis Menschel
This patch adds support for the Sitronix ST7789V display controller. The controller is intended for small color displays with a resolution of up to 320x240 pixels. Signed-off-by: Dennis Menschel --- drivers/staging/fbtft/Kconfig | 10 ++ drivers/staging/fbtft/Makefile | 1 + drivers

[PATCH 0/2] staging: fbtft: add support for ST7789V and C-Berry28

2015-10-07 Thread Dennis Menschel
This set of patches extends the fbtft driver by the following two things, - support for the ST7789V display controller from Sitronix and - support for a concrete display which uses this controller, namely the C-Berry28, a 2.8" color display from admatec for the Raspberry Pi. Dennis Mensch