Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1270792
| From | Magnus Damm <magnus.damm@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 02/04] pinctrl: sh-pfc: r8a7794: Separate DU CDE and DISP |
| Date | 2015-11-17 04:20 +0100 |
| Message-ID | <qvEYi-7Qv-13@gated-at.bofh.it> (permalink) |
| References | <qvEYh-7Qv-7@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
From: Magnus Damm <damm+renesas@opensource.se>
Separate DU CDE and DISP signals to let the r8a7794 ALT
board that lacks CDE handle the DISP signal by itself.
The groups "du0_cde_disp" and "du1_cde_disp" are replaced
by "du0_cde", "du1_cde", "du0_disp" and "du1_disp".
Signed-off-by: Magnus Damm <damm+renesas@opensource.se>
---
drivers/pinctrl/sh-pfc/pfc-r8a7794.c | 50 +++++++++++++++++++++++-----------
1 file changed, 34 insertions(+), 16 deletions(-)
--- 0008/drivers/pinctrl/sh-pfc/pfc-r8a7794.c
+++ work/drivers/pinctrl/sh-pfc/pfc-r8a7794.c 2015-11-16 15:04:00.760513000 +0900
@@ -1616,19 +1616,33 @@ static const unsigned int du1_sync_mux[]
DU1_EXODDF_DU1_ODDF_DISP_CDE_MARK,
DU1_EXVSYNC_DU1_VSYNC_MARK, DU1_EXHSYNC_DU1_HSYNC_MARK
};
-static const unsigned int du0_cde_disp_pins[] = {
- /* CDE DISP */
- RCAR_GP_PIN(2, 31), RCAR_GP_PIN(2, 30),
-};
-static const unsigned int du0_cde_disp_mux[] = {
- DU0_CDE_MARK, DU0_DISP_MARK
-};
-static const unsigned int du1_cde_disp_pins[] = {
- /* CDE DISP */
- RCAR_GP_PIN(4, 31), RCAR_GP_PIN(4, 30),
+static const unsigned int du0_cde_pins[] = {
+ /* CDE */
+ RCAR_GP_PIN(2, 31),
};
-static const unsigned int du1_cde_disp_mux[] = {
- DU1_CDE_MARK, DU1_DISP_MARK
+static const unsigned int du0_cde_mux[] = {
+ DU0_CDE_MARK,
+};
+static const unsigned int du1_cde_pins[] = {
+ /* CDE */
+ RCAR_GP_PIN(4, 31),
+};
+static const unsigned int du1_cde_mux[] = {
+ DU1_CDE_MARK
+};
+static const unsigned int du0_disp_pins[] = {
+ /* DISP */
+ RCAR_GP_PIN(2, 30),
+};
+static const unsigned int du0_disp_mux[] = {
+ DU0_DISP_MARK
+};
+static const unsigned int du1_disp_pins[] = {
+ /* DISP */
+ RCAR_GP_PIN(4, 30),
+};
+static const unsigned int du1_disp_mux[] = {
+ DU1_DISP_MARK
};
static const unsigned int du0_clk_in_pins[] = {
/* CLKIN */
@@ -2932,8 +2946,10 @@ static const struct sh_pfc_pin_group pin
SH_PFC_PIN_GROUP(du1_clk_out),
SH_PFC_PIN_GROUP(du0_sync),
SH_PFC_PIN_GROUP(du1_sync),
- SH_PFC_PIN_GROUP(du0_cde_disp),
- SH_PFC_PIN_GROUP(du1_cde_disp),
+ SH_PFC_PIN_GROUP(du0_cde),
+ SH_PFC_PIN_GROUP(du1_cde),
+ SH_PFC_PIN_GROUP(du0_disp),
+ SH_PFC_PIN_GROUP(du1_disp),
SH_PFC_PIN_GROUP(du0_clk_in),
SH_PFC_PIN_GROUP(du1_clk_in),
SH_PFC_PIN_GROUP(eth_link),
@@ -3122,8 +3138,10 @@ static const char * const du_groups[] =
"du1_clk_out",
"du0_sync",
"du1_sync",
- "du0_cde_disp",
- "du1_cde_disp",
+ "du0_cde",
+ "du1_cde",
+ "du0_disp",
+ "du1_disp",
};
static const char * const du0_groups[] = {
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 00/04] pinctrl: sh-pfc: r8a7794: DU support Magnus Damm <magnus.damm@gmail.com> - 2015-11-17 04:20 +0100
[PATCH 01/04] pinctrl: sh-pfc: r8a7794: Add DU pin groups Magnus Damm <magnus.damm@gmail.com> - 2015-11-17 04:20 +0100
Re: [PATCH 01/04] pinctrl: sh-pfc: r8a7794: Add DU pin groups Linus Walleij <linus.walleij@linaro.org> - 2015-11-29 22:30 +0100
Re: [PATCH 01/04] pinctrl: sh-pfc: r8a7794: Add DU pin groups Geert Uytterhoeven <geert@linux-m68k.org> - 2015-11-30 10:00 +0100
[PATCH 03/04] pinctrl: sh-pfc: r8a7794: Add missing dot clock signals Magnus Damm <magnus.damm@gmail.com> - 2015-11-17 04:20 +0100
[PATCH 02/04] pinctrl: sh-pfc: r8a7794: Separate DU CDE and DISP Magnus Damm <magnus.damm@gmail.com> - 2015-11-17 04:20 +0100
Re: [PATCH 00/04] pinctrl: sh-pfc: r8a7794: DU support Laurent Pinchart <laurent.pinchart@ideasonboard.com> - 2015-11-20 03:50 +0100
Re: [PATCH 00/04] pinctrl: sh-pfc: r8a7794: DU support Magnus Damm <magnus.damm@gmail.com> - 2015-11-20 08:20 +0100
Re: [PATCH 00/04] pinctrl: sh-pfc: r8a7794: DU support Laurent Pinchart <laurent.pinchart@ideasonboard.com> - 2015-11-20 16:00 +0100
Re: [PATCH 00/04] pinctrl: sh-pfc: r8a7794: DU support Simon Horman <horms@verge.net.au> - 2015-11-25 01:20 +0100
csiph-web