All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] drm/panel: simple: Add support for Shelly SCA07010-BFN-LNN
@ 2015-03-19 13:43 ` Nicolas Ferre
  0 siblings, 0 replies; 21+ messages in thread
From: Nicolas Ferre @ 2015-03-19 13:43 UTC (permalink / raw)
  To: dri-devel, linux-arm-kernel, thierry.reding
  Cc: linux-kernel, devicetree, Boris BREZILLON, Nicolas Ferre

From: Boris BREZILLON <boris.brezillon@free-electrons.com>

The Shelly SCA07010-BFN-LNN is a 7.0" WVGA TFT LCD panel.
This panel with backlight is found in PDA 7" LCD screen (TM70xx series for
instance).

Signed-off-by: Boris BREZILLON <boris.brezillon@free-electrons.com>
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
---
 .../bindings/panel/shelly,sca07010-bfn-lnn.txt     |  7 ++++++
 drivers/gpu/drm/panel/panel-simple.c               | 26 ++++++++++++++++++++++
 2 files changed, 33 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/panel/shelly,sca07010-bfn-lnn.txt

diff --git a/Documentation/devicetree/bindings/panel/shelly,sca07010-bfn-lnn.txt b/Documentation/devicetree/bindings/panel/shelly,sca07010-bfn-lnn.txt
new file mode 100644
index 000000000000..fc1ea9e26c94
--- /dev/null
+++ b/Documentation/devicetree/bindings/panel/shelly,sca07010-bfn-lnn.txt
@@ -0,0 +1,7 @@
+Shelly SCA07010-BFN-LNN 7.0" WVGA TFT LCD panel
+
+Required properties:
+- compatible: should be "shelly,sca07010-bfn-lnn"
+
+This binding is compatible with the simple-panel binding, which is specified
+in simple-panel.txt in this directory.
diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
index 3e9aa628169c..6e4a85f50d71 100644
--- a/drivers/gpu/drm/panel/panel-simple.c
+++ b/drivers/gpu/drm/panel/panel-simple.c
@@ -802,6 +802,29 @@ static const struct panel_desc samsung_ltn101nt05 = {
 	},
 };
 
+static const struct drm_display_mode shelly_sca07010_bfn_lnn_mode = {
+	.clock = 33300,
+	.hdisplay = 800,
+	.hsync_start = 800 + 1,
+	.hsync_end = 800 + 1 + 64,
+	.htotal = 800 + 1 + 64 + 64,
+	.vdisplay = 480,
+	.vsync_start = 480 + 1,
+	.vsync_end = 480 + 1 + 23,
+	.vtotal = 480 + 1 + 23 + 22,
+	.vrefresh = 60,
+};
+
+static const struct panel_desc shelly_sca07010_bfn_lnn = {
+	.modes = &shelly_sca07010_bfn_lnn_mode,
+	.num_modes = 1,
+	.size = {
+		.width = 152,
+		.height = 91,
+	},
+	.bus_format = MEDIA_BUS_FMT_RGB666_1X18,
+};
+
 static const struct of_device_id platform_of_match[] = {
 	{
 		.compatible = "auo,b101aw03",
@@ -867,6 +890,9 @@ static const struct of_device_id platform_of_match[] = {
 		.compatible = "samsung,ltn101nt05",
 		.data = &samsung_ltn101nt05,
 	}, {
+		.compatible = "shelly,sca07010-bfn-lnn",
+		.data = &shelly_sca07010_bfn_lnn,
+	}, {
 		/* sentinel */
 	}
 };
-- 
2.1.3


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH 1/2] drm/panel: simple: Add support for Shelly SCA07010-BFN-LNN
@ 2015-03-19 13:43 ` Nicolas Ferre
  0 siblings, 0 replies; 21+ messages in thread
From: Nicolas Ferre @ 2015-03-19 13:43 UTC (permalink / raw)
  To: dri-devel, linux-arm-kernel, thierry.reding
  Cc: linux-kernel, devicetree, Boris BREZILLON, Nicolas Ferre

From: Boris BREZILLON <boris.brezillon@free-electrons.com>

The Shelly SCA07010-BFN-LNN is a 7.0" WVGA TFT LCD panel.
This panel with backlight is found in PDA 7" LCD screen (TM70xx series for
instance).

Signed-off-by: Boris BREZILLON <boris.brezillon@free-electrons.com>
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
---
 .../bindings/panel/shelly,sca07010-bfn-lnn.txt     |  7 ++++++
 drivers/gpu/drm/panel/panel-simple.c               | 26 ++++++++++++++++++++++
 2 files changed, 33 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/panel/shelly,sca07010-bfn-lnn.txt

diff --git a/Documentation/devicetree/bindings/panel/shelly,sca07010-bfn-lnn.txt b/Documentation/devicetree/bindings/panel/shelly,sca07010-bfn-lnn.txt
new file mode 100644
index 000000000000..fc1ea9e26c94
--- /dev/null
+++ b/Documentation/devicetree/bindings/panel/shelly,sca07010-bfn-lnn.txt
@@ -0,0 +1,7 @@
+Shelly SCA07010-BFN-LNN 7.0" WVGA TFT LCD panel
+
+Required properties:
+- compatible: should be "shelly,sca07010-bfn-lnn"
+
+This binding is compatible with the simple-panel binding, which is specified
+in simple-panel.txt in this directory.
diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
index 3e9aa628169c..6e4a85f50d71 100644
--- a/drivers/gpu/drm/panel/panel-simple.c
+++ b/drivers/gpu/drm/panel/panel-simple.c
@@ -802,6 +802,29 @@ static const struct panel_desc samsung_ltn101nt05 = {
 	},
 };
 
+static const struct drm_display_mode shelly_sca07010_bfn_lnn_mode = {
+	.clock = 33300,
+	.hdisplay = 800,
+	.hsync_start = 800 + 1,
+	.hsync_end = 800 + 1 + 64,
+	.htotal = 800 + 1 + 64 + 64,
+	.vdisplay = 480,
+	.vsync_start = 480 + 1,
+	.vsync_end = 480 + 1 + 23,
+	.vtotal = 480 + 1 + 23 + 22,
+	.vrefresh = 60,
+};
+
+static const struct panel_desc shelly_sca07010_bfn_lnn = {
+	.modes = &shelly_sca07010_bfn_lnn_mode,
+	.num_modes = 1,
+	.size = {
+		.width = 152,
+		.height = 91,
+	},
+	.bus_format = MEDIA_BUS_FMT_RGB666_1X18,
+};
+
 static const struct of_device_id platform_of_match[] = {
 	{
 		.compatible = "auo,b101aw03",
@@ -867,6 +890,9 @@ static const struct of_device_id platform_of_match[] = {
 		.compatible = "samsung,ltn101nt05",
 		.data = &samsung_ltn101nt05,
 	}, {
+		.compatible = "shelly,sca07010-bfn-lnn",
+		.data = &shelly_sca07010_bfn_lnn,
+	}, {
 		/* sentinel */
 	}
 };
-- 
2.1.3

^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH 1/2] drm/panel: simple: Add support for Shelly SCA07010-BFN-LNN
@ 2015-03-19 13:43 ` Nicolas Ferre
  0 siblings, 0 replies; 21+ messages in thread
From: Nicolas Ferre @ 2015-03-19 13:43 UTC (permalink / raw)
  To: linux-arm-kernel

From: Boris BREZILLON <boris.brezillon@free-electrons.com>

The Shelly SCA07010-BFN-LNN is a 7.0" WVGA TFT LCD panel.
This panel with backlight is found in PDA 7" LCD screen (TM70xx series for
instance).

Signed-off-by: Boris BREZILLON <boris.brezillon@free-electrons.com>
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
---
 .../bindings/panel/shelly,sca07010-bfn-lnn.txt     |  7 ++++++
 drivers/gpu/drm/panel/panel-simple.c               | 26 ++++++++++++++++++++++
 2 files changed, 33 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/panel/shelly,sca07010-bfn-lnn.txt

diff --git a/Documentation/devicetree/bindings/panel/shelly,sca07010-bfn-lnn.txt b/Documentation/devicetree/bindings/panel/shelly,sca07010-bfn-lnn.txt
new file mode 100644
index 000000000000..fc1ea9e26c94
--- /dev/null
+++ b/Documentation/devicetree/bindings/panel/shelly,sca07010-bfn-lnn.txt
@@ -0,0 +1,7 @@
+Shelly SCA07010-BFN-LNN 7.0" WVGA TFT LCD panel
+
+Required properties:
+- compatible: should be "shelly,sca07010-bfn-lnn"
+
+This binding is compatible with the simple-panel binding, which is specified
+in simple-panel.txt in this directory.
diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
index 3e9aa628169c..6e4a85f50d71 100644
--- a/drivers/gpu/drm/panel/panel-simple.c
+++ b/drivers/gpu/drm/panel/panel-simple.c
@@ -802,6 +802,29 @@ static const struct panel_desc samsung_ltn101nt05 = {
 	},
 };
 
+static const struct drm_display_mode shelly_sca07010_bfn_lnn_mode = {
+	.clock = 33300,
+	.hdisplay = 800,
+	.hsync_start = 800 + 1,
+	.hsync_end = 800 + 1 + 64,
+	.htotal = 800 + 1 + 64 + 64,
+	.vdisplay = 480,
+	.vsync_start = 480 + 1,
+	.vsync_end = 480 + 1 + 23,
+	.vtotal = 480 + 1 + 23 + 22,
+	.vrefresh = 60,
+};
+
+static const struct panel_desc shelly_sca07010_bfn_lnn = {
+	.modes = &shelly_sca07010_bfn_lnn_mode,
+	.num_modes = 1,
+	.size = {
+		.width = 152,
+		.height = 91,
+	},
+	.bus_format = MEDIA_BUS_FMT_RGB666_1X18,
+};
+
 static const struct of_device_id platform_of_match[] = {
 	{
 		.compatible = "auo,b101aw03",
@@ -867,6 +890,9 @@ static const struct of_device_id platform_of_match[] = {
 		.compatible = "samsung,ltn101nt05",
 		.data = &samsung_ltn101nt05,
 	}, {
+		.compatible = "shelly,sca07010-bfn-lnn",
+		.data = &shelly_sca07010_bfn_lnn,
+	}, {
 		/* sentinel */
 	}
 };
-- 
2.1.3

^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH 2/2] drm/panel: simple: Add support for Innolux AT043TN24
  2015-03-19 13:43 ` Nicolas Ferre
  (?)
@ 2015-03-19 13:43   ` Nicolas Ferre
  -1 siblings, 0 replies; 21+ messages in thread
From: Nicolas Ferre @ 2015-03-19 13:43 UTC (permalink / raw)
  To: dri-devel, linux-arm-kernel, thierry.reding
  Cc: linux-kernel, devicetree, Boris BREZILLON, Nicolas Ferre

The Innolux AT043TN24 4.3" WQVGA TFT LCD panel.
This panel with backlight is found in PDA 4.3" LCD screen (TM43xx series for
instance).

Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
---
 .../bindings/panel/innolux,at043tn24.txt           |  7 ++++++
 drivers/gpu/drm/panel/panel-simple.c               | 28 ++++++++++++++++++++++
 2 files changed, 35 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/panel/innolux,at043tn24.txt

diff --git a/Documentation/devicetree/bindings/panel/innolux,at043tn24.txt b/Documentation/devicetree/bindings/panel/innolux,at043tn24.txt
new file mode 100644
index 000000000000..4104226b61bc
--- /dev/null
+++ b/Documentation/devicetree/bindings/panel/innolux,at043tn24.txt
@@ -0,0 +1,7 @@
+Innolux AT043TN24 4.3" WQVGA TFT LCD panel
+
+Required properties:
+- compatible: should be "innolux,at043tn24"
+
+This binding is compatible with the simple-panel binding, which is specified
+in simple-panel.txt in this directory.
diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
index 6e4a85f50d71..4088f9bd7973 100644
--- a/drivers/gpu/drm/panel/panel-simple.c
+++ b/drivers/gpu/drm/panel/panel-simple.c
@@ -663,6 +663,31 @@ static const struct panel_desc hitachi_tx23d38vm0caa = {
 	},
 };
 
+static const struct drm_display_mode innolux_at043tn24_mode = {
+	.clock = 9000,
+	.hdisplay = 480,
+	.hsync_start = 480 + 2,
+	.hsync_end = 480 + 2 + 41,
+	.htotal = 480 + 2 + 41 + 2,
+	.vdisplay = 272,
+	.vsync_start = 272 + 2,
+	.vsync_end = 272 + 2 + 11,
+	.vtotal = 272 + 2 + 11 + 2,
+	.vrefresh = 60,
+	.flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
+};
+
+static const struct panel_desc innolux_at043tn24 = {
+	.modes = &innolux_at043tn24_mode,
+	.num_modes = 1,
+	.bpc = 8,
+	.size = {
+		.width = 95,
+		.height = 54,
+	},
+	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
+};
+
 static const struct drm_display_mode innolux_g121i1_l01_mode = {
 	.clock = 71000,
 	.hdisplay = 1280,
@@ -872,6 +897,9 @@ static const struct of_device_id platform_of_match[] = {
 		.compatible = "hit,tx23d38vm0caa",
 		.data = &hitachi_tx23d38vm0caa
 	}, {
+		.compatible = "innolux,at043tn24",
+		.data = &innolux_at043tn24,
+	}, {
 		.compatible ="innolux,g121i1-l01",
 		.data = &innolux_g121i1_l01
 	}, {
-- 
2.1.3


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH 2/2] drm/panel: simple: Add support for Innolux AT043TN24
@ 2015-03-19 13:43   ` Nicolas Ferre
  0 siblings, 0 replies; 21+ messages in thread
From: Nicolas Ferre @ 2015-03-19 13:43 UTC (permalink / raw)
  To: dri-devel, linux-arm-kernel, thierry.reding
  Cc: linux-kernel, devicetree, Boris BREZILLON, Nicolas Ferre

The Innolux AT043TN24 4.3" WQVGA TFT LCD panel.
This panel with backlight is found in PDA 4.3" LCD screen (TM43xx series for
instance).

Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
---
 .../bindings/panel/innolux,at043tn24.txt           |  7 ++++++
 drivers/gpu/drm/panel/panel-simple.c               | 28 ++++++++++++++++++++++
 2 files changed, 35 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/panel/innolux,at043tn24.txt

diff --git a/Documentation/devicetree/bindings/panel/innolux,at043tn24.txt b/Documentation/devicetree/bindings/panel/innolux,at043tn24.txt
new file mode 100644
index 000000000000..4104226b61bc
--- /dev/null
+++ b/Documentation/devicetree/bindings/panel/innolux,at043tn24.txt
@@ -0,0 +1,7 @@
+Innolux AT043TN24 4.3" WQVGA TFT LCD panel
+
+Required properties:
+- compatible: should be "innolux,at043tn24"
+
+This binding is compatible with the simple-panel binding, which is specified
+in simple-panel.txt in this directory.
diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
index 6e4a85f50d71..4088f9bd7973 100644
--- a/drivers/gpu/drm/panel/panel-simple.c
+++ b/drivers/gpu/drm/panel/panel-simple.c
@@ -663,6 +663,31 @@ static const struct panel_desc hitachi_tx23d38vm0caa = {
 	},
 };
 
+static const struct drm_display_mode innolux_at043tn24_mode = {
+	.clock = 9000,
+	.hdisplay = 480,
+	.hsync_start = 480 + 2,
+	.hsync_end = 480 + 2 + 41,
+	.htotal = 480 + 2 + 41 + 2,
+	.vdisplay = 272,
+	.vsync_start = 272 + 2,
+	.vsync_end = 272 + 2 + 11,
+	.vtotal = 272 + 2 + 11 + 2,
+	.vrefresh = 60,
+	.flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
+};
+
+static const struct panel_desc innolux_at043tn24 = {
+	.modes = &innolux_at043tn24_mode,
+	.num_modes = 1,
+	.bpc = 8,
+	.size = {
+		.width = 95,
+		.height = 54,
+	},
+	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
+};
+
 static const struct drm_display_mode innolux_g121i1_l01_mode = {
 	.clock = 71000,
 	.hdisplay = 1280,
@@ -872,6 +897,9 @@ static const struct of_device_id platform_of_match[] = {
 		.compatible = "hit,tx23d38vm0caa",
 		.data = &hitachi_tx23d38vm0caa
 	}, {
+		.compatible = "innolux,at043tn24",
+		.data = &innolux_at043tn24,
+	}, {
 		.compatible ="innolux,g121i1-l01",
 		.data = &innolux_g121i1_l01
 	}, {
-- 
2.1.3

^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH 2/2] drm/panel: simple: Add support for Innolux AT043TN24
@ 2015-03-19 13:43   ` Nicolas Ferre
  0 siblings, 0 replies; 21+ messages in thread
From: Nicolas Ferre @ 2015-03-19 13:43 UTC (permalink / raw)
  To: linux-arm-kernel

The Innolux AT043TN24 4.3" WQVGA TFT LCD panel.
This panel with backlight is found in PDA 4.3" LCD screen (TM43xx series for
instance).

Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
---
 .../bindings/panel/innolux,at043tn24.txt           |  7 ++++++
 drivers/gpu/drm/panel/panel-simple.c               | 28 ++++++++++++++++++++++
 2 files changed, 35 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/panel/innolux,at043tn24.txt

diff --git a/Documentation/devicetree/bindings/panel/innolux,at043tn24.txt b/Documentation/devicetree/bindings/panel/innolux,at043tn24.txt
new file mode 100644
index 000000000000..4104226b61bc
--- /dev/null
+++ b/Documentation/devicetree/bindings/panel/innolux,at043tn24.txt
@@ -0,0 +1,7 @@
+Innolux AT043TN24 4.3" WQVGA TFT LCD panel
+
+Required properties:
+- compatible: should be "innolux,at043tn24"
+
+This binding is compatible with the simple-panel binding, which is specified
+in simple-panel.txt in this directory.
diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
index 6e4a85f50d71..4088f9bd7973 100644
--- a/drivers/gpu/drm/panel/panel-simple.c
+++ b/drivers/gpu/drm/panel/panel-simple.c
@@ -663,6 +663,31 @@ static const struct panel_desc hitachi_tx23d38vm0caa = {
 	},
 };
 
+static const struct drm_display_mode innolux_at043tn24_mode = {
+	.clock = 9000,
+	.hdisplay = 480,
+	.hsync_start = 480 + 2,
+	.hsync_end = 480 + 2 + 41,
+	.htotal = 480 + 2 + 41 + 2,
+	.vdisplay = 272,
+	.vsync_start = 272 + 2,
+	.vsync_end = 272 + 2 + 11,
+	.vtotal = 272 + 2 + 11 + 2,
+	.vrefresh = 60,
+	.flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
+};
+
+static const struct panel_desc innolux_at043tn24 = {
+	.modes = &innolux_at043tn24_mode,
+	.num_modes = 1,
+	.bpc = 8,
+	.size = {
+		.width = 95,
+		.height = 54,
+	},
+	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
+};
+
 static const struct drm_display_mode innolux_g121i1_l01_mode = {
 	.clock = 71000,
 	.hdisplay = 1280,
@@ -872,6 +897,9 @@ static const struct of_device_id platform_of_match[] = {
 		.compatible = "hit,tx23d38vm0caa",
 		.data = &hitachi_tx23d38vm0caa
 	}, {
+		.compatible = "innolux,at043tn24",
+		.data = &innolux_at043tn24,
+	}, {
 		.compatible ="innolux,g121i1-l01",
 		.data = &innolux_g121i1_l01
 	}, {
-- 
2.1.3

^ permalink raw reply related	[flat|nested] 21+ messages in thread

* Re: [PATCH 1/2] drm/panel: simple: Add support for Shelly SCA07010-BFN-LNN
  2015-03-19 13:43 ` Nicolas Ferre
  (?)
@ 2015-03-24 10:57   ` Thierry Reding
  -1 siblings, 0 replies; 21+ messages in thread
From: Thierry Reding @ 2015-03-24 10:57 UTC (permalink / raw)
  To: Nicolas Ferre
  Cc: dri-devel, linux-arm-kernel, linux-kernel, devicetree, Boris BREZILLON

[-- Attachment #1: Type: text/plain, Size: 824 bytes --]

On Thu, Mar 19, 2015 at 02:43:00PM +0100, Nicolas Ferre wrote:
> From: Boris BREZILLON <boris.brezillon@free-electrons.com>
> 
> The Shelly SCA07010-BFN-LNN is a 7.0" WVGA TFT LCD panel.
> This panel with backlight is found in PDA 7" LCD screen (TM70xx series for
> instance).
> 
> Signed-off-by: Boris BREZILLON <boris.brezillon@free-electrons.com>
> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
> ---
>  .../bindings/panel/shelly,sca07010-bfn-lnn.txt     |  7 ++++++
>  drivers/gpu/drm/panel/panel-simple.c               | 26 ++++++++++++++++++++++
>  2 files changed, 33 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/panel/shelly,sca07010-bfn-lnn.txt

The vendor prefix "shelly" doesn't seem to be documented yet. Can you
submit a patch to fix that?

Thanks,
Thierry

[-- Attachment #2: Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 21+ messages in thread

* Re: [PATCH 1/2] drm/panel: simple: Add support for Shelly SCA07010-BFN-LNN
@ 2015-03-24 10:57   ` Thierry Reding
  0 siblings, 0 replies; 21+ messages in thread
From: Thierry Reding @ 2015-03-24 10:57 UTC (permalink / raw)
  To: Nicolas Ferre; +Cc: devicetree, linux-arm-kernel, dri-devel, linux-kernel


[-- Attachment #1.1: Type: text/plain, Size: 824 bytes --]

On Thu, Mar 19, 2015 at 02:43:00PM +0100, Nicolas Ferre wrote:
> From: Boris BREZILLON <boris.brezillon@free-electrons.com>
> 
> The Shelly SCA07010-BFN-LNN is a 7.0" WVGA TFT LCD panel.
> This panel with backlight is found in PDA 7" LCD screen (TM70xx series for
> instance).
> 
> Signed-off-by: Boris BREZILLON <boris.brezillon@free-electrons.com>
> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
> ---
>  .../bindings/panel/shelly,sca07010-bfn-lnn.txt     |  7 ++++++
>  drivers/gpu/drm/panel/panel-simple.c               | 26 ++++++++++++++++++++++
>  2 files changed, 33 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/panel/shelly,sca07010-bfn-lnn.txt

The vendor prefix "shelly" doesn't seem to be documented yet. Can you
submit a patch to fix that?

Thanks,
Thierry

[-- Attachment #1.2: Type: application/pgp-signature, Size: 819 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 21+ messages in thread

* [PATCH 1/2] drm/panel: simple: Add support for Shelly SCA07010-BFN-LNN
@ 2015-03-24 10:57   ` Thierry Reding
  0 siblings, 0 replies; 21+ messages in thread
From: Thierry Reding @ 2015-03-24 10:57 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Mar 19, 2015 at 02:43:00PM +0100, Nicolas Ferre wrote:
> From: Boris BREZILLON <boris.brezillon@free-electrons.com>
> 
> The Shelly SCA07010-BFN-LNN is a 7.0" WVGA TFT LCD panel.
> This panel with backlight is found in PDA 7" LCD screen (TM70xx series for
> instance).
> 
> Signed-off-by: Boris BREZILLON <boris.brezillon@free-electrons.com>
> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
> ---
>  .../bindings/panel/shelly,sca07010-bfn-lnn.txt     |  7 ++++++
>  drivers/gpu/drm/panel/panel-simple.c               | 26 ++++++++++++++++++++++
>  2 files changed, 33 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/panel/shelly,sca07010-bfn-lnn.txt

The vendor prefix "shelly" doesn't seem to be documented yet. Can you
submit a patch to fix that?

Thanks,
Thierry
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20150324/48e92ded/attachment.sig>

^ permalink raw reply	[flat|nested] 21+ messages in thread

* Re: [PATCH 2/2] drm/panel: simple: Add support for Innolux AT043TN24
  2015-03-19 13:43   ` Nicolas Ferre
  (?)
@ 2015-03-24 10:58     ` Thierry Reding
  -1 siblings, 0 replies; 21+ messages in thread
From: Thierry Reding @ 2015-03-24 10:58 UTC (permalink / raw)
  To: Nicolas Ferre
  Cc: dri-devel, linux-arm-kernel, linux-kernel, devicetree, Boris BREZILLON

[-- Attachment #1: Type: text/plain, Size: 582 bytes --]

On Thu, Mar 19, 2015 at 02:43:01PM +0100, Nicolas Ferre wrote:
> The Innolux AT043TN24 4.3" WQVGA TFT LCD panel.
> This panel with backlight is found in PDA 4.3" LCD screen (TM43xx series for
> instance).
> 
> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
> ---
>  .../bindings/panel/innolux,at043tn24.txt           |  7 ++++++
>  drivers/gpu/drm/panel/panel-simple.c               | 28 ++++++++++++++++++++++
>  2 files changed, 35 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/panel/innolux,at043tn24.txt

Applied, thanks.

Thierry

[-- Attachment #2: Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 21+ messages in thread

* Re: [PATCH 2/2] drm/panel: simple: Add support for Innolux AT043TN24
@ 2015-03-24 10:58     ` Thierry Reding
  0 siblings, 0 replies; 21+ messages in thread
From: Thierry Reding @ 2015-03-24 10:58 UTC (permalink / raw)
  To: Nicolas Ferre; +Cc: devicetree, linux-arm-kernel, dri-devel, linux-kernel


[-- Attachment #1.1: Type: text/plain, Size: 582 bytes --]

On Thu, Mar 19, 2015 at 02:43:01PM +0100, Nicolas Ferre wrote:
> The Innolux AT043TN24 4.3" WQVGA TFT LCD panel.
> This panel with backlight is found in PDA 4.3" LCD screen (TM43xx series for
> instance).
> 
> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
> ---
>  .../bindings/panel/innolux,at043tn24.txt           |  7 ++++++
>  drivers/gpu/drm/panel/panel-simple.c               | 28 ++++++++++++++++++++++
>  2 files changed, 35 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/panel/innolux,at043tn24.txt

Applied, thanks.

Thierry

[-- Attachment #1.2: Type: application/pgp-signature, Size: 819 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 21+ messages in thread

* [PATCH 2/2] drm/panel: simple: Add support for Innolux AT043TN24
@ 2015-03-24 10:58     ` Thierry Reding
  0 siblings, 0 replies; 21+ messages in thread
From: Thierry Reding @ 2015-03-24 10:58 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Mar 19, 2015 at 02:43:01PM +0100, Nicolas Ferre wrote:
> The Innolux AT043TN24 4.3" WQVGA TFT LCD panel.
> This panel with backlight is found in PDA 4.3" LCD screen (TM43xx series for
> instance).
> 
> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
> ---
>  .../bindings/panel/innolux,at043tn24.txt           |  7 ++++++
>  drivers/gpu/drm/panel/panel-simple.c               | 28 ++++++++++++++++++++++
>  2 files changed, 35 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/panel/innolux,at043tn24.txt

Applied, thanks.

Thierry
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20150324/575c8ec0/attachment.sig>

^ permalink raw reply	[flat|nested] 21+ messages in thread

* [PATCH] devicetree: Add vendor prefix for Shelly, Inc.
  2015-03-24 10:57   ` Thierry Reding
  (?)
@ 2015-03-24 16:12     ` Nicolas Ferre
  -1 siblings, 0 replies; 21+ messages in thread
From: Nicolas Ferre @ 2015-03-24 16:12 UTC (permalink / raw)
  To: thierry.reding, robh+dt
  Cc: pawel.moll, mark.rutland, ijc+devicetree, galak, linux-kernel,
	dri-devel, devicetree, linux-arm-kernel, Boris BREZILLON,
	Nicolas Ferre

Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
---
Thierry,

Here it is ;-)

Bye,

 Documentation/devicetree/bindings/vendor-prefixes.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/vendor-prefixes.txt b/Documentation/devicetree/bindings/vendor-prefixes.txt
index a9eeaa0c5867..1b0f5b797cd5 100644
--- a/Documentation/devicetree/bindings/vendor-prefixes.txt
+++ b/Documentation/devicetree/bindings/vendor-prefixes.txt
@@ -165,6 +165,7 @@ sbs	Smart Battery System
 schindler	Schindler
 seagate	Seagate Technology PLC
 semtech	Semtech Corporation
+shelly	Shelly, Inc.
 sil	Silicon Image
 silabs	Silicon Laboratories
 siliconmitus	Silicon Mitus, Inc.
-- 
2.1.3


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH] devicetree: Add vendor prefix for Shelly, Inc.
@ 2015-03-24 16:12     ` Nicolas Ferre
  0 siblings, 0 replies; 21+ messages in thread
From: Nicolas Ferre @ 2015-03-24 16:12 UTC (permalink / raw)
  To: thierry.reding, robh+dt
  Cc: pawel.moll, mark.rutland, ijc+devicetree, galak, linux-kernel,
	dri-devel, devicetree, linux-arm-kernel, Boris BREZILLON,
	Nicolas Ferre

Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
---
Thierry,

Here it is ;-)

Bye,

 Documentation/devicetree/bindings/vendor-prefixes.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/vendor-prefixes.txt b/Documentation/devicetree/bindings/vendor-prefixes.txt
index a9eeaa0c5867..1b0f5b797cd5 100644
--- a/Documentation/devicetree/bindings/vendor-prefixes.txt
+++ b/Documentation/devicetree/bindings/vendor-prefixes.txt
@@ -165,6 +165,7 @@ sbs	Smart Battery System
 schindler	Schindler
 seagate	Seagate Technology PLC
 semtech	Semtech Corporation
+shelly	Shelly, Inc.
 sil	Silicon Image
 silabs	Silicon Laboratories
 siliconmitus	Silicon Mitus, Inc.
-- 
2.1.3

^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH] devicetree: Add vendor prefix for Shelly, Inc.
@ 2015-03-24 16:12     ` Nicolas Ferre
  0 siblings, 0 replies; 21+ messages in thread
From: Nicolas Ferre @ 2015-03-24 16:12 UTC (permalink / raw)
  To: linux-arm-kernel

Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
---
Thierry,

Here it is ;-)

Bye,

 Documentation/devicetree/bindings/vendor-prefixes.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/vendor-prefixes.txt b/Documentation/devicetree/bindings/vendor-prefixes.txt
index a9eeaa0c5867..1b0f5b797cd5 100644
--- a/Documentation/devicetree/bindings/vendor-prefixes.txt
+++ b/Documentation/devicetree/bindings/vendor-prefixes.txt
@@ -165,6 +165,7 @@ sbs	Smart Battery System
 schindler	Schindler
 seagate	Seagate Technology PLC
 semtech	Semtech Corporation
+shelly	Shelly, Inc.
 sil	Silicon Image
 silabs	Silicon Laboratories
 siliconmitus	Silicon Mitus, Inc.
-- 
2.1.3

^ permalink raw reply related	[flat|nested] 21+ messages in thread

* Re: [PATCH] devicetree: Add vendor prefix for Shelly, Inc.
  2015-03-24 16:12     ` Nicolas Ferre
  (?)
@ 2015-04-29 15:17       ` Nicolas Ferre
  -1 siblings, 0 replies; 21+ messages in thread
From: Nicolas Ferre @ 2015-04-29 15:17 UTC (permalink / raw)
  To: thierry.reding, robh+dt
  Cc: pawel.moll, mark.rutland, ijc+devicetree, galak, linux-kernel,
	dri-devel, devicetree, linux-arm-kernel, Boris BREZILLON

Le 24/03/2015 17:12, Nicolas Ferre a écrit :
> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>

Ping?

> ---
> Thierry,
> 
> Here it is ;-)
> 
> Bye,
> 
>  Documentation/devicetree/bindings/vendor-prefixes.txt | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/Documentation/devicetree/bindings/vendor-prefixes.txt b/Documentation/devicetree/bindings/vendor-prefixes.txt
> index a9eeaa0c5867..1b0f5b797cd5 100644
> --- a/Documentation/devicetree/bindings/vendor-prefixes.txt
> +++ b/Documentation/devicetree/bindings/vendor-prefixes.txt
> @@ -165,6 +165,7 @@ sbs	Smart Battery System
>  schindler	Schindler
>  seagate	Seagate Technology PLC
>  semtech	Semtech Corporation
> +shelly	Shelly, Inc.
>  sil	Silicon Image
>  silabs	Silicon Laboratories
>  siliconmitus	Silicon Mitus, Inc.
> 


-- 
Nicolas Ferre

^ permalink raw reply	[flat|nested] 21+ messages in thread

* Re: [PATCH] devicetree: Add vendor prefix for Shelly, Inc.
@ 2015-04-29 15:17       ` Nicolas Ferre
  0 siblings, 0 replies; 21+ messages in thread
From: Nicolas Ferre @ 2015-04-29 15:17 UTC (permalink / raw)
  To: thierry.reding, robh+dt
  Cc: pawel.moll, mark.rutland, ijc+devicetree, galak, linux-kernel,
	dri-devel, devicetree, linux-arm-kernel, Boris BREZILLON

Le 24/03/2015 17:12, Nicolas Ferre a écrit :
> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>

Ping?

> ---
> Thierry,
> 
> Here it is ;-)
> 
> Bye,
> 
>  Documentation/devicetree/bindings/vendor-prefixes.txt | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/Documentation/devicetree/bindings/vendor-prefixes.txt b/Documentation/devicetree/bindings/vendor-prefixes.txt
> index a9eeaa0c5867..1b0f5b797cd5 100644
> --- a/Documentation/devicetree/bindings/vendor-prefixes.txt
> +++ b/Documentation/devicetree/bindings/vendor-prefixes.txt
> @@ -165,6 +165,7 @@ sbs	Smart Battery System
>  schindler	Schindler
>  seagate	Seagate Technology PLC
>  semtech	Semtech Corporation
> +shelly	Shelly, Inc.
>  sil	Silicon Image
>  silabs	Silicon Laboratories
>  siliconmitus	Silicon Mitus, Inc.
> 


-- 
Nicolas Ferre

^ permalink raw reply	[flat|nested] 21+ messages in thread

* [PATCH] devicetree: Add vendor prefix for Shelly, Inc.
@ 2015-04-29 15:17       ` Nicolas Ferre
  0 siblings, 0 replies; 21+ messages in thread
From: Nicolas Ferre @ 2015-04-29 15:17 UTC (permalink / raw)
  To: linux-arm-kernel

Le 24/03/2015 17:12, Nicolas Ferre a ?crit :
> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>

Ping?

> ---
> Thierry,
> 
> Here it is ;-)
> 
> Bye,
> 
>  Documentation/devicetree/bindings/vendor-prefixes.txt | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/Documentation/devicetree/bindings/vendor-prefixes.txt b/Documentation/devicetree/bindings/vendor-prefixes.txt
> index a9eeaa0c5867..1b0f5b797cd5 100644
> --- a/Documentation/devicetree/bindings/vendor-prefixes.txt
> +++ b/Documentation/devicetree/bindings/vendor-prefixes.txt
> @@ -165,6 +165,7 @@ sbs	Smart Battery System
>  schindler	Schindler
>  seagate	Seagate Technology PLC
>  semtech	Semtech Corporation
> +shelly	Shelly, Inc.
>  sil	Silicon Image
>  silabs	Silicon Laboratories
>  siliconmitus	Silicon Mitus, Inc.
> 


-- 
Nicolas Ferre

^ permalink raw reply	[flat|nested] 21+ messages in thread

* Re: [PATCH] devicetree: Add vendor prefix for Shelly, Inc.
  2015-04-29 15:17       ` Nicolas Ferre
  (?)
@ 2015-04-29 15:30         ` Rob Herring
  -1 siblings, 0 replies; 21+ messages in thread
From: Rob Herring @ 2015-04-29 15:30 UTC (permalink / raw)
  To: Nicolas Ferre
  Cc: Thierry Reding, Rob Herring, Pawel Moll, Mark Rutland,
	Ian Campbell, Kumar Gala, linux-kernel, dri-devel, devicetree,
	linux-arm-kernel, Boris BREZILLON

On Wed, Apr 29, 2015 at 10:17 AM, Nicolas Ferre <nicolas.ferre@atmel.com> wrote:
> Le 24/03/2015 17:12, Nicolas Ferre a écrit :
>> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
>
> Ping?

Acked-by: Rob Herring <robh@kernel.org>

>
>> ---
>> Thierry,
>>
>> Here it is ;-)
>>
>> Bye,
>>
>>  Documentation/devicetree/bindings/vendor-prefixes.txt | 1 +
>>  1 file changed, 1 insertion(+)
>>
>> diff --git a/Documentation/devicetree/bindings/vendor-prefixes.txt b/Documentation/devicetree/bindings/vendor-prefixes.txt
>> index a9eeaa0c5867..1b0f5b797cd5 100644
>> --- a/Documentation/devicetree/bindings/vendor-prefixes.txt
>> +++ b/Documentation/devicetree/bindings/vendor-prefixes.txt
>> @@ -165,6 +165,7 @@ sbs       Smart Battery System
>>  schindler    Schindler
>>  seagate      Seagate Technology PLC
>>  semtech      Semtech Corporation
>> +shelly       Shelly, Inc.
>>  sil  Silicon Image
>>  silabs       Silicon Laboratories
>>  siliconmitus Silicon Mitus, Inc.
>>
>
>
> --
> Nicolas Ferre

^ permalink raw reply	[flat|nested] 21+ messages in thread

* Re: [PATCH] devicetree: Add vendor prefix for Shelly, Inc.
@ 2015-04-29 15:30         ` Rob Herring
  0 siblings, 0 replies; 21+ messages in thread
From: Rob Herring @ 2015-04-29 15:30 UTC (permalink / raw)
  To: Nicolas Ferre
  Cc: Thierry Reding, Rob Herring, Pawel Moll, Mark Rutland,
	Ian Campbell, Kumar Gala, linux-kernel, dri-devel, devicetree,
	linux-arm-kernel, Boris BREZILLON

On Wed, Apr 29, 2015 at 10:17 AM, Nicolas Ferre <nicolas.ferre@atmel.com> wrote:
> Le 24/03/2015 17:12, Nicolas Ferre a écrit :
>> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
>
> Ping?

Acked-by: Rob Herring <robh@kernel.org>

>
>> ---
>> Thierry,
>>
>> Here it is ;-)
>>
>> Bye,
>>
>>  Documentation/devicetree/bindings/vendor-prefixes.txt | 1 +
>>  1 file changed, 1 insertion(+)
>>
>> diff --git a/Documentation/devicetree/bindings/vendor-prefixes.txt b/Documentation/devicetree/bindings/vendor-prefixes.txt
>> index a9eeaa0c5867..1b0f5b797cd5 100644
>> --- a/Documentation/devicetree/bindings/vendor-prefixes.txt
>> +++ b/Documentation/devicetree/bindings/vendor-prefixes.txt
>> @@ -165,6 +165,7 @@ sbs       Smart Battery System
>>  schindler    Schindler
>>  seagate      Seagate Technology PLC
>>  semtech      Semtech Corporation
>> +shelly       Shelly, Inc.
>>  sil  Silicon Image
>>  silabs       Silicon Laboratories
>>  siliconmitus Silicon Mitus, Inc.
>>
>
>
> --
> Nicolas Ferre

^ permalink raw reply	[flat|nested] 21+ messages in thread

* [PATCH] devicetree: Add vendor prefix for Shelly, Inc.
@ 2015-04-29 15:30         ` Rob Herring
  0 siblings, 0 replies; 21+ messages in thread
From: Rob Herring @ 2015-04-29 15:30 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Apr 29, 2015 at 10:17 AM, Nicolas Ferre <nicolas.ferre@atmel.com> wrote:
> Le 24/03/2015 17:12, Nicolas Ferre a ?crit :
>> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
>
> Ping?

Acked-by: Rob Herring <robh@kernel.org>

>
>> ---
>> Thierry,
>>
>> Here it is ;-)
>>
>> Bye,
>>
>>  Documentation/devicetree/bindings/vendor-prefixes.txt | 1 +
>>  1 file changed, 1 insertion(+)
>>
>> diff --git a/Documentation/devicetree/bindings/vendor-prefixes.txt b/Documentation/devicetree/bindings/vendor-prefixes.txt
>> index a9eeaa0c5867..1b0f5b797cd5 100644
>> --- a/Documentation/devicetree/bindings/vendor-prefixes.txt
>> +++ b/Documentation/devicetree/bindings/vendor-prefixes.txt
>> @@ -165,6 +165,7 @@ sbs       Smart Battery System
>>  schindler    Schindler
>>  seagate      Seagate Technology PLC
>>  semtech      Semtech Corporation
>> +shelly       Shelly, Inc.
>>  sil  Silicon Image
>>  silabs       Silicon Laboratories
>>  siliconmitus Silicon Mitus, Inc.
>>
>
>
> --
> Nicolas Ferre

^ permalink raw reply	[flat|nested] 21+ messages in thread

end of thread, other threads:[~2015-04-29 15:31 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-19 13:43 [PATCH 1/2] drm/panel: simple: Add support for Shelly SCA07010-BFN-LNN Nicolas Ferre
2015-03-19 13:43 ` Nicolas Ferre
2015-03-19 13:43 ` Nicolas Ferre
2015-03-19 13:43 ` [PATCH 2/2] drm/panel: simple: Add support for Innolux AT043TN24 Nicolas Ferre
2015-03-19 13:43   ` Nicolas Ferre
2015-03-19 13:43   ` Nicolas Ferre
2015-03-24 10:58   ` Thierry Reding
2015-03-24 10:58     ` Thierry Reding
2015-03-24 10:58     ` Thierry Reding
2015-03-24 10:57 ` [PATCH 1/2] drm/panel: simple: Add support for Shelly SCA07010-BFN-LNN Thierry Reding
2015-03-24 10:57   ` Thierry Reding
2015-03-24 10:57   ` Thierry Reding
2015-03-24 16:12   ` [PATCH] devicetree: Add vendor prefix for Shelly, Inc Nicolas Ferre
2015-03-24 16:12     ` Nicolas Ferre
2015-03-24 16:12     ` Nicolas Ferre
2015-04-29 15:17     ` Nicolas Ferre
2015-04-29 15:17       ` Nicolas Ferre
2015-04-29 15:17       ` Nicolas Ferre
2015-04-29 15:30       ` Rob Herring
2015-04-29 15:30         ` Rob Herring
2015-04-29 15:30         ` Rob Herring

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.