You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
2.1 KiB
57 lines
2.1 KiB
11 years ago
|
From 85f17a0d652853455ac633fc965cea8431038518 Mon Sep 17 00:00:00 2001
|
||
11 years ago
|
From: Hans de Goede <hdegoede@redhat.com>
|
||
|
Date: Sat, 14 Dec 2013 17:20:13 +0100
|
||
11 years ago
|
Subject: [PATCH] pinctrl-sunxi: Fix sun5i-a13 port F multiplexing
|
||
11 years ago
|
|
||
|
The correct value for selecting the mmc0 function on port F pins is 2 not 4,
|
||
|
as per the data-sheet:
|
||
|
http://dl.linux-sunxi.org/A13/A13%20Datasheet%20-%20v1.12%20%282012-03-29%29.pdf
|
||
|
|
||
|
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
|
||
|
Acked-by: Maxime Ripard <maxime.ripard@free-electrons.com>
|
||
|
---
|
||
|
drivers/pinctrl/pinctrl-sunxi-pins.h | 12 ++++++------
|
||
|
1 file changed, 6 insertions(+), 6 deletions(-)
|
||
|
|
||
11 years ago
|
diff --git a/drivers/pinctrl/pinctrl-sunxi-pins.h b/drivers/pinctrl/pinctrl-sunxi-pins.h
|
||
|
index 6fd8d4d..3d60669 100644
|
||
11 years ago
|
--- a/drivers/pinctrl/pinctrl-sunxi-pins.h
|
||
|
+++ b/drivers/pinctrl/pinctrl-sunxi-pins.h
|
||
11 years ago
|
@@ -1932,27 +1932,27 @@
|
||
11 years ago
|
SUNXI_PIN(SUNXI_PINCTRL_PIN_PF0,
|
||
|
SUNXI_FUNCTION(0x0, "gpio_in"),
|
||
|
SUNXI_FUNCTION(0x1, "gpio_out"),
|
||
|
- SUNXI_FUNCTION(0x4, "mmc0")), /* D1 */
|
||
|
+ SUNXI_FUNCTION(0x2, "mmc0")), /* D1 */
|
||
|
SUNXI_PIN(SUNXI_PINCTRL_PIN_PF1,
|
||
|
SUNXI_FUNCTION(0x0, "gpio_in"),
|
||
|
SUNXI_FUNCTION(0x1, "gpio_out"),
|
||
|
- SUNXI_FUNCTION(0x4, "mmc0")), /* D0 */
|
||
|
+ SUNXI_FUNCTION(0x2, "mmc0")), /* D0 */
|
||
|
SUNXI_PIN(SUNXI_PINCTRL_PIN_PF2,
|
||
|
SUNXI_FUNCTION(0x0, "gpio_in"),
|
||
|
SUNXI_FUNCTION(0x1, "gpio_out"),
|
||
|
- SUNXI_FUNCTION(0x4, "mmc0")), /* CLK */
|
||
|
+ SUNXI_FUNCTION(0x2, "mmc0")), /* CLK */
|
||
|
SUNXI_PIN(SUNXI_PINCTRL_PIN_PF3,
|
||
|
SUNXI_FUNCTION(0x0, "gpio_in"),
|
||
|
SUNXI_FUNCTION(0x1, "gpio_out"),
|
||
|
- SUNXI_FUNCTION(0x4, "mmc0")), /* CMD */
|
||
|
+ SUNXI_FUNCTION(0x2, "mmc0")), /* CMD */
|
||
|
SUNXI_PIN(SUNXI_PINCTRL_PIN_PF4,
|
||
|
SUNXI_FUNCTION(0x0, "gpio_in"),
|
||
|
SUNXI_FUNCTION(0x1, "gpio_out"),
|
||
|
- SUNXI_FUNCTION(0x4, "mmc0")), /* D3 */
|
||
|
+ SUNXI_FUNCTION(0x2, "mmc0")), /* D3 */
|
||
|
SUNXI_PIN(SUNXI_PINCTRL_PIN_PF5,
|
||
|
SUNXI_FUNCTION(0x0, "gpio_in"),
|
||
|
SUNXI_FUNCTION(0x1, "gpio_out"),
|
||
|
- SUNXI_FUNCTION(0x4, "mmc0")), /* D2 */
|
||
|
+ SUNXI_FUNCTION(0x2, "mmc0")), /* D2 */
|
||
|
/* Hole */
|
||
|
SUNXI_PIN(SUNXI_PINCTRL_PIN_PG0,
|
||
|
SUNXI_FUNCTION(0x0, "gpio_in"),
|
||
11 years ago
|
--
|
||
|
1.8.5.5
|
||
|
|