mirror of https://gitee.com/openkylin/linux.git
arm: kirkwood: nsa310: move pinmux configs to the right devices
When the pinmux mechanism was added in Kirkwood, the device driver core was not yet providing the possibility of attaching pinmux configurations to all devices, drivers had to do it explicitly, and not all drivers were doing this. Now that the driver core does that in a generic way, it makes sense to attach the pinmux configuration to their corresponding devices. This allows the pinctrl subsystem to show in debugfs to which device is related which pins, for example: pin 41 (PIN41): gpio-leds.1 mvebu-gpio:41 function gpio group mpp41 pin 42 (PIN42): gpio-leds.1 mvebu-gpio:42 function gpio group mpp42 pin 43 (PIN43): gpio-leds.1 mvebu-gpio:43 function gpio group mpp43 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: Jason Cooper <jason@lakedaemon.net>
This commit is contained in:
parent
3d98a7884b
commit
7a2c9bb57d
|
@ -17,22 +17,7 @@ chosen {
|
|||
|
||||
ocp@f1000000 {
|
||||
pinctrl: pinctrl@10000 {
|
||||
pinctrl-0 = < &pmx_led_esata_green
|
||||
&pmx_led_esata_red
|
||||
&pmx_led_usb_green
|
||||
&pmx_led_usb_red
|
||||
&pmx_usb_power_off
|
||||
&pmx_led_sys_green
|
||||
&pmx_led_sys_red
|
||||
&pmx_btn_reset
|
||||
&pmx_btn_copy
|
||||
&pmx_led_copy_green
|
||||
&pmx_led_copy_red
|
||||
&pmx_led_hdd_green
|
||||
&pmx_led_hdd_red
|
||||
&pmx_unknown
|
||||
&pmx_btn_power
|
||||
&pmx_pwr_off >;
|
||||
pinctrl-0 = <&pmx_unknown>;
|
||||
pinctrl-names = "default";
|
||||
|
||||
pmx_led_esata_green: pmx-led-esata-green {
|
||||
|
@ -182,6 +167,8 @@ gpio_keys {
|
|||
compatible = "gpio-keys";
|
||||
#address-cells = <1>;
|
||||
#size-cells = <0>;
|
||||
pinctrl-0 = <&pmx_btn_reset &pmx_btn_copy &pmx_btn_power>;
|
||||
pinctrl-names = "default";
|
||||
|
||||
button@1 {
|
||||
label = "Power Button";
|
||||
|
@ -202,6 +189,12 @@ button@3 {
|
|||
|
||||
gpio-leds {
|
||||
compatible = "gpio-leds";
|
||||
pinctrl-0 = <&pmx_led_esata_green &pmx_led_esata_red
|
||||
&pmx_led_usb_green &pmx_led_usb_red
|
||||
&pmx_led_sys_green &pmx_led_sys_red
|
||||
&pmx_led_copy_green &pmx_led_copy_red
|
||||
&pmx_led_hdd_green &pmx_led_hdd_red>;
|
||||
pinctrl-names = "default";
|
||||
|
||||
green-sys {
|
||||
label = "nsa310:green:sys";
|
||||
|
@ -247,6 +240,8 @@ red-copy {
|
|||
|
||||
gpio_poweroff {
|
||||
compatible = "gpio-poweroff";
|
||||
pinctrl-0 = <&pmx_pwr_off>;
|
||||
pinctrl-names = "default";
|
||||
gpios = <&gpio1 16 0>;
|
||||
};
|
||||
|
||||
|
@ -254,6 +249,8 @@ regulators {
|
|||
compatible = "simple-bus";
|
||||
#address-cells = <1>;
|
||||
#size-cells = <0>;
|
||||
pinctrl-0 = <&pmx_usb_power_off>;
|
||||
pinctrl-names = "default";
|
||||
|
||||
usb0_power_off: regulator@1 {
|
||||
compatible = "regulator-fixed";
|
||||
|
|
Loading…
Reference in New Issue