mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-01-03 12:52:22 +00:00
bmips: rewrite pin controllers
This is needed in order to upstream them. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
This commit is contained in:
parent
ef2cb8572b
commit
e2448e5e03
@ -190,7 +190,6 @@ CONFIG_PINCTRL_BCM6328=y
|
||||
CONFIG_PINCTRL_BCM6358=y
|
||||
CONFIG_PINCTRL_BCM6362=y
|
||||
CONFIG_PINCTRL_BCM6368=y
|
||||
CONFIG_PINCTRL_BCM63XX=y
|
||||
CONFIG_PM=y
|
||||
CONFIG_PM_CLK=y
|
||||
CONFIG_PM_GENERIC_DOMAINS=y
|
||||
|
@ -143,112 +143,113 @@
|
||||
mask = <0x1>;
|
||||
};
|
||||
|
||||
pinctrl: pin-controller@10000080 {
|
||||
compatible = "brcm,bcm6318-pinctrl";
|
||||
reg = <0x10000080 0x08>,
|
||||
<0x10000088 0x08>,
|
||||
<0x10000098 0x04>,
|
||||
<0x1000009c 0x0c>,
|
||||
<0x100000d4 0x18>;
|
||||
reg-names = "dirout", "dat", "mode", "mux", "pad";
|
||||
gpio: syscon@10000080 {
|
||||
compatible = "syscon", "simple-mfd";
|
||||
reg = <0x10000080 0x80>;
|
||||
native-endian;
|
||||
|
||||
gpio-controller;
|
||||
#gpio-cells = <2>;
|
||||
pinctrl: pin-controller {
|
||||
compatible = "brcm,bcm6318-pinctrl";
|
||||
|
||||
interrupt-parent = <&ext_intc>;
|
||||
interrupts = <0 0>, <1 0>;
|
||||
interrupt-names = "gpio33", "gpio34";
|
||||
gpio-controller;
|
||||
#gpio-cells = <2>;
|
||||
|
||||
pinctrl_ephy0_spd_led: ephy0_spd_led {
|
||||
function = "ephy0_spd_led";
|
||||
pins = "gpio0";
|
||||
};
|
||||
interrupts-extended = <&ext_intc 0 0>,
|
||||
<&ext_intc 1 0>;
|
||||
interrupt-names = "gpio33",
|
||||
"gpio34";
|
||||
|
||||
pinctrl_ephy1_spd_led: ephy1_spd_led {
|
||||
function = "ephy1_spd_led";
|
||||
pins = "gpio1";
|
||||
};
|
||||
pinctrl_ephy0_spd_led: ephy0_spd_led {
|
||||
function = "ephy0_spd_led";
|
||||
pins = "gpio0";
|
||||
};
|
||||
|
||||
pinctrl_ephy2_spd_led: ephy2_spd_led {
|
||||
function = "ephy2_spd_led";
|
||||
pins = "gpio2";
|
||||
};
|
||||
pinctrl_ephy1_spd_led: ephy1_spd_led {
|
||||
function = "ephy1_spd_led";
|
||||
pins = "gpio1";
|
||||
};
|
||||
|
||||
pinctrl_ephy3_spd_led: ephy3_spd_led {
|
||||
function = "ephy3_spd_led";
|
||||
pins = "gpio3";
|
||||
};
|
||||
pinctrl_ephy2_spd_led: ephy2_spd_led {
|
||||
function = "ephy2_spd_led";
|
||||
pins = "gpio2";
|
||||
};
|
||||
|
||||
pinctrl_ephy0_act_led: ephy0_act_led {
|
||||
function = "ephy0_act_led";
|
||||
pins = "gpio4";
|
||||
};
|
||||
pinctrl_ephy3_spd_led: ephy3_spd_led {
|
||||
function = "ephy3_spd_led";
|
||||
pins = "gpio3";
|
||||
};
|
||||
|
||||
pinctrl_ephy1_act_led: ephy1_act_led {
|
||||
function = "ephy1_act_led";
|
||||
pins = "gpio5";
|
||||
};
|
||||
pinctrl_ephy0_act_led: ephy0_act_led {
|
||||
function = "ephy0_act_led";
|
||||
pins = "gpio4";
|
||||
};
|
||||
|
||||
pinctrl_ephy2_act_led: ephy2_act_led {
|
||||
function = "ephy2_act_led";
|
||||
pins = "gpio6";
|
||||
};
|
||||
pinctrl_ephy1_act_led: ephy1_act_led {
|
||||
function = "ephy1_act_led";
|
||||
pins = "gpio5";
|
||||
};
|
||||
|
||||
pinctrl_ephy3_act_led: ephy3_act_led {
|
||||
function = "ephy3_act_led";
|
||||
pins = "gpio7";
|
||||
};
|
||||
|
||||
pinctrl_serial_led: serial_led {
|
||||
pinctrl_serial_led_data: serial_led_data {
|
||||
function = "serial_led_data";
|
||||
pinctrl_ephy2_act_led: ephy2_act_led {
|
||||
function = "ephy2_act_led";
|
||||
pins = "gpio6";
|
||||
};
|
||||
|
||||
pinctrl_serial_led_clk: serial_led_clk {
|
||||
function = "serial_led_clk";
|
||||
pinctrl_ephy3_act_led: ephy3_act_led {
|
||||
function = "ephy3_act_led";
|
||||
pins = "gpio7";
|
||||
};
|
||||
};
|
||||
|
||||
pinctrl_inet_act_led: inet_act_led {
|
||||
function = "inet_act_led";
|
||||
pins = "gpio8";
|
||||
};
|
||||
pinctrl_serial_led: serial_led {
|
||||
pinctrl_serial_led_data: serial_led_data {
|
||||
function = "serial_led_data";
|
||||
pins = "gpio6";
|
||||
};
|
||||
|
||||
pinctrl_inet_fail_led: inet_fail_led {
|
||||
function = "inet_fail_led";
|
||||
pins = "gpio9";
|
||||
};
|
||||
pinctrl_serial_led_clk: serial_led_clk {
|
||||
function = "serial_led_clk";
|
||||
pins = "gpio7";
|
||||
};
|
||||
};
|
||||
|
||||
pinctrl_dsl_led: dsl_led {
|
||||
function = "dsl_led";
|
||||
pins = "gpio10";
|
||||
};
|
||||
pinctrl_inet_act_led: inet_act_led {
|
||||
function = "inet_act_led";
|
||||
pins = "gpio8";
|
||||
};
|
||||
|
||||
pinctrl_post_fail_led: post_fail_led {
|
||||
function = "post_fail_led";
|
||||
pins = "gpio11";
|
||||
};
|
||||
pinctrl_inet_fail_led: inet_fail_led {
|
||||
function = "inet_fail_led";
|
||||
pins = "gpio9";
|
||||
};
|
||||
|
||||
pinctrl_wlan_wps_led: wlan_wps_led {
|
||||
function = "wlan_wps_led";
|
||||
pins = "gpio12";
|
||||
};
|
||||
pinctrl_dsl_led: dsl_led {
|
||||
function = "dsl_led";
|
||||
pins = "gpio10";
|
||||
};
|
||||
|
||||
pinctrl_usb_pwron: usb_pwron {
|
||||
function = "usb_pwron";
|
||||
pins = "gpio13";
|
||||
};
|
||||
pinctrl_post_fail_led: post_fail_led {
|
||||
function = "post_fail_led";
|
||||
pins = "gpio11";
|
||||
};
|
||||
|
||||
pinctrl_usb_device_led: usb_device_led {
|
||||
function = "usb_device_led";
|
||||
pins = "gpio13";
|
||||
};
|
||||
pinctrl_wlan_wps_led: wlan_wps_led {
|
||||
function = "wlan_wps_led";
|
||||
pins = "gpio12";
|
||||
};
|
||||
|
||||
pinctrl_usb_active: usb_active {
|
||||
function = "usb_active";
|
||||
pins = "gpio40";
|
||||
pinctrl_usb_pwron: usb_pwron {
|
||||
function = "usb_pwron";
|
||||
pins = "gpio13";
|
||||
};
|
||||
|
||||
pinctrl_usb_device_led: usb_device_led {
|
||||
function = "usb_device_led";
|
||||
pins = "gpio13";
|
||||
};
|
||||
|
||||
pinctrl_usb_active: usb_active {
|
||||
function = "usb_active";
|
||||
pins = "gpio40";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -147,131 +147,134 @@
|
||||
timeout-sec = <30>;
|
||||
};
|
||||
|
||||
pinctrl: pin-controller@100000c0 {
|
||||
compatible = "brcm,bcm63268-pinctrl";
|
||||
reg = <0x100000c0 0x8>,
|
||||
<0x100000c8 0x8>,
|
||||
<0x100000d0 0x4>,
|
||||
<0x100000d8 0x4>,
|
||||
<0x100000dc 0x4>,
|
||||
<0x100000f8 0x4>;
|
||||
reg-names = "dirout", "dat", "led", "mode",
|
||||
"ctrl", "basemode";
|
||||
gpio: syscon@100000c0 {
|
||||
compatible = "syscon", "simple-mfd";
|
||||
reg = <0x100000c0 0x80>;
|
||||
native-endian;
|
||||
|
||||
gpio-controller;
|
||||
#gpio-cells = <2>;
|
||||
pinctrl: pin-controller {
|
||||
compatible = "brcm,bcm63268-pinctrl";
|
||||
|
||||
interrupt-parent = <&ext_intc>;
|
||||
interrupts = <0 0>, <1 0>, <2 0>, <3 0>;
|
||||
interrupt-names = "gpio32", "gpio33", "gpio34", "gpio35";
|
||||
gpio-controller;
|
||||
#gpio-cells = <2>;
|
||||
|
||||
pinctrl_serial_led: serial_led {
|
||||
pinctrl_serial_led_clk: serial_led_clk {
|
||||
function = "serial_led_clk";
|
||||
pins = "gpio0";
|
||||
interrupts-extended = <&ext_intc 0 0>,
|
||||
<&ext_intc 1 0>,
|
||||
<&ext_intc 2 0>,
|
||||
<&ext_intc 3 0>;
|
||||
interrupt-names = "gpio32",
|
||||
"gpio33",
|
||||
"gpio34",
|
||||
"gpio35";
|
||||
|
||||
pinctrl_serial_led: serial_led {
|
||||
pinctrl_serial_led_clk: serial_led_clk {
|
||||
function = "serial_led_clk";
|
||||
pins = "gpio0";
|
||||
};
|
||||
|
||||
pinctrl_serial_led_data: serial_led_data {
|
||||
function = "serial_led_data";
|
||||
pins = "gpio1";
|
||||
};
|
||||
};
|
||||
|
||||
pinctrl_serial_led_data: serial_led_data {
|
||||
function = "serial_led_data";
|
||||
pins = "gpio1";
|
||||
};
|
||||
};
|
||||
|
||||
pinctrl_hsspi_cs4: hsspi_cs4 {
|
||||
function = "hsspi_cs4";
|
||||
pins = "gpio16";
|
||||
};
|
||||
|
||||
pinctrl_hsspi_cs5: hsspi_cs5 {
|
||||
function = "hsspi_cs5";
|
||||
pins = "gpio17";
|
||||
};
|
||||
|
||||
pinctrl_hsspi_cs6: hsspi_cs6 {
|
||||
function = "hsspi_cs6";
|
||||
pins = "gpio8";
|
||||
};
|
||||
|
||||
pinctrl_hsspi_cs7: hsspi_cs7 {
|
||||
function = "hsspi_cs7";
|
||||
pins = "gpio9";
|
||||
};
|
||||
|
||||
pinctrl_adsl_spi: adsl_spi {
|
||||
pinctrl_adsl_spi_miso: adsl_spi_miso {
|
||||
function = "adsl_spi_miso";
|
||||
pins = "gpio18";
|
||||
pinctrl_hsspi_cs4: hsspi_cs4 {
|
||||
function = "hsspi_cs4";
|
||||
pins = "gpio16";
|
||||
};
|
||||
|
||||
pinctrl_adsl_spi_mosi: adsl_spi_mosi {
|
||||
function = "adsl_spi_mosi";
|
||||
pins = "gpio19";
|
||||
pinctrl_hsspi_cs5: hsspi_cs5 {
|
||||
function = "hsspi_cs5";
|
||||
pins = "gpio17";
|
||||
};
|
||||
};
|
||||
|
||||
pinctrl_vreq_clk: vreq_clk {
|
||||
function = "vreq_clk";
|
||||
pins = "gpio22";
|
||||
};
|
||||
pinctrl_hsspi_cs6: hsspi_cs6 {
|
||||
function = "hsspi_cs6";
|
||||
pins = "gpio8";
|
||||
};
|
||||
|
||||
pinctrl_pcie_clkreq_b: pcie_clkreq_b {
|
||||
function = "pcie_clkreq_b";
|
||||
pins = "gpio23";
|
||||
};
|
||||
pinctrl_hsspi_cs7: hsspi_cs7 {
|
||||
function = "hsspi_cs7";
|
||||
pins = "gpio9";
|
||||
};
|
||||
|
||||
pinctrl_robosw_led_clk: robosw_led_clk {
|
||||
function = "robosw_led_clk";
|
||||
pins = "gpio30";
|
||||
};
|
||||
pinctrl_adsl_spi: adsl_spi {
|
||||
pinctrl_adsl_spi_miso: adsl_spi_miso {
|
||||
function = "adsl_spi_miso";
|
||||
pins = "gpio18";
|
||||
};
|
||||
|
||||
pinctrl_robosw_led_data: robosw_led_data {
|
||||
function = "robosw_led_data";
|
||||
pins = "gpio31";
|
||||
};
|
||||
pinctrl_adsl_spi_mosi: adsl_spi_mosi {
|
||||
function = "adsl_spi_mosi";
|
||||
pins = "gpio19";
|
||||
};
|
||||
};
|
||||
|
||||
pinctrl_nand: nand {
|
||||
function = "nand";
|
||||
group = "nand_grp";
|
||||
};
|
||||
pinctrl_vreq_clk: vreq_clk {
|
||||
function = "vreq_clk";
|
||||
pins = "gpio22";
|
||||
};
|
||||
|
||||
pinctrl_gpio35_alt: gpio35_alt {
|
||||
function = "gpio35_alt";
|
||||
pin = "gpio35";
|
||||
};
|
||||
pinctrl_pcie_clkreq_b: pcie_clkreq_b {
|
||||
function = "pcie_clkreq_b";
|
||||
pins = "gpio23";
|
||||
};
|
||||
|
||||
pinctrl_dectpd: dectpd {
|
||||
function = "dectpd";
|
||||
group = "dectpd_grp";
|
||||
};
|
||||
pinctrl_robosw_led_clk: robosw_led_clk {
|
||||
function = "robosw_led_clk";
|
||||
pins = "gpio30";
|
||||
};
|
||||
|
||||
pinctrl_vdsl_phy_override_0: vdsl_phy_override_0 {
|
||||
function = "vdsl_phy_override_0";
|
||||
group = "vdsl_phy_override_0_grp";
|
||||
};
|
||||
pinctrl_robosw_led_data: robosw_led_data {
|
||||
function = "robosw_led_data";
|
||||
pins = "gpio31";
|
||||
};
|
||||
|
||||
pinctrl_vdsl_phy_override_1: vdsl_phy_override_1 {
|
||||
function = "vdsl_phy_override_1";
|
||||
group = "vdsl_phy_override_1_grp";
|
||||
};
|
||||
pinctrl_nand: nand {
|
||||
function = "nand";
|
||||
group = "nand_grp";
|
||||
};
|
||||
|
||||
pinctrl_vdsl_phy_override_2: vdsl_phy_override_2 {
|
||||
function = "vdsl_phy_override_2";
|
||||
group = "vdsl_phy_override_2_grp";
|
||||
};
|
||||
pinctrl_gpio35_alt: gpio35_alt {
|
||||
function = "gpio35_alt";
|
||||
pin = "gpio35";
|
||||
};
|
||||
|
||||
pinctrl_vdsl_phy_override_3: vdsl_phy_override_3 {
|
||||
function = "vdsl_phy_override_3";
|
||||
group = "vdsl_phy_override_3_grp";
|
||||
};
|
||||
pinctrl_dectpd: dectpd {
|
||||
function = "dectpd";
|
||||
group = "dectpd_grp";
|
||||
};
|
||||
|
||||
pinctrl_dsl_gpio8: dsl_gpio8 {
|
||||
function = "dsl_gpio8";
|
||||
group = "dsl_gpio8";
|
||||
};
|
||||
pinctrl_vdsl_phy_override_0: vdsl_phy_override_0 {
|
||||
function = "vdsl_phy_override_0";
|
||||
group = "vdsl_phy_override_0_grp";
|
||||
};
|
||||
|
||||
pinctrl_dsl_gpio9: dsl_gpio9 {
|
||||
function = "dsl_gpio9";
|
||||
group = "dsl_gpio9";
|
||||
pinctrl_vdsl_phy_override_1: vdsl_phy_override_1 {
|
||||
function = "vdsl_phy_override_1";
|
||||
group = "vdsl_phy_override_1_grp";
|
||||
};
|
||||
|
||||
pinctrl_vdsl_phy_override_2: vdsl_phy_override_2 {
|
||||
function = "vdsl_phy_override_2";
|
||||
group = "vdsl_phy_override_2_grp";
|
||||
};
|
||||
|
||||
pinctrl_vdsl_phy_override_3: vdsl_phy_override_3 {
|
||||
function = "vdsl_phy_override_3";
|
||||
group = "vdsl_phy_override_3_grp";
|
||||
};
|
||||
|
||||
pinctrl_dsl_gpio8: dsl_gpio8 {
|
||||
function = "dsl_gpio8";
|
||||
group = "dsl_gpio8";
|
||||
};
|
||||
|
||||
pinctrl_dsl_gpio9: dsl_gpio9 {
|
||||
function = "dsl_gpio9";
|
||||
group = "dsl_gpio9";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -146,97 +146,102 @@
|
||||
mask = <0x1>;
|
||||
};
|
||||
|
||||
pinctrl: pin-controller@10000080 {
|
||||
compatible = "brcm,bcm6328-pinctrl";
|
||||
reg = <0x10000080 0x8>,
|
||||
<0x10000088 0x8>,
|
||||
<0x10000098 0x4>,
|
||||
<0x1000009c 0xc>;
|
||||
reg-names = "dirout", "dat", "mode", "mux";
|
||||
gpio: syscon@10000080 {
|
||||
compatible = "syscon", "simple-mfd";
|
||||
reg = <0x10000080 0x80>;
|
||||
native-endian;
|
||||
|
||||
gpio-controller;
|
||||
#gpio-cells = <2>;
|
||||
pinctrl: pin-controller {
|
||||
compatible = "brcm,bcm6328-pinctrl";
|
||||
|
||||
interrupt-parent = <&ext_intc>;
|
||||
interrupts = <3 0>, <2 0>, <0 0>, <1 0>;
|
||||
interrupt-names = "gpio12", "gpio15",
|
||||
"gpio23", "gpio24";
|
||||
gpio-controller;
|
||||
#gpio-cells = <2>;
|
||||
|
||||
pinctrl_serial_led: serial_led {
|
||||
pinctrl_serial_led_data: serial_led_data {
|
||||
function = "serial_led_data";
|
||||
pins = "gpio6";
|
||||
interrupts-extended = <&ext_intc 3 0>,
|
||||
<&ext_intc 2 0>,
|
||||
<&ext_intc 1 0>,
|
||||
<&ext_intc 0 0>;
|
||||
interrupt-names = "gpio12",
|
||||
"gpio15",
|
||||
"gpio23",
|
||||
"gpio24";
|
||||
|
||||
pinctrl_serial_led: serial_led {
|
||||
pinctrl_serial_led_data: serial_led_data {
|
||||
function = "serial_led_data";
|
||||
pins = "gpio6";
|
||||
};
|
||||
|
||||
pinctrl_serial_led_clk: serial_led_clk {
|
||||
function = "serial_led_clk";
|
||||
pins = "gpio7";
|
||||
};
|
||||
};
|
||||
|
||||
pinctrl_serial_led_clk: serial_led_clk {
|
||||
function = "serial_led_clk";
|
||||
pins = "gpio7";
|
||||
pinctrl_inet_act_led: inet_act_led {
|
||||
function = "inet_act_led";
|
||||
pins = "gpio11";
|
||||
};
|
||||
};
|
||||
|
||||
pinctrl_inet_act_led: inet_act_led {
|
||||
function = "inet_act_led";
|
||||
pins = "gpio11";
|
||||
};
|
||||
pinctrl_pcie_clkreq: pcie_clkreq {
|
||||
function = "pcie_clkreq";
|
||||
pins = "gpio16";
|
||||
};
|
||||
|
||||
pinctrl_pcie_clkreq: pcie_clkreq {
|
||||
function = "pcie_clkreq";
|
||||
pins = "gpio16";
|
||||
};
|
||||
pinctrl_ephy0_spd_led: ephy0_spd_led {
|
||||
function = "led";
|
||||
pins = "gpio17";
|
||||
};
|
||||
|
||||
pinctrl_ephy0_spd_led: ephy0_spd_led {
|
||||
function = "led";
|
||||
pins = "gpio17";
|
||||
};
|
||||
pinctrl_ephy1_spd_led: ephy1_spd_led {
|
||||
function = "led";
|
||||
pins = "gpio18";
|
||||
};
|
||||
|
||||
pinctrl_ephy1_spd_led: ephy1_spd_led {
|
||||
function = "led";
|
||||
pins = "gpio18";
|
||||
};
|
||||
pinctrl_ephy2_spd_led: ephy2_spd_led {
|
||||
function = "led";
|
||||
pins = "gpio19";
|
||||
};
|
||||
|
||||
pinctrl_ephy2_spd_led: ephy2_spd_led {
|
||||
function = "led";
|
||||
pins = "gpio19";
|
||||
};
|
||||
pinctrl_ephy3_spd_led: ephy3_spd_led {
|
||||
function = "led";
|
||||
pins = "gpio20";
|
||||
};
|
||||
|
||||
pinctrl_ephy3_spd_led: ephy3_spd_led {
|
||||
function = "led";
|
||||
pins = "gpio20";
|
||||
};
|
||||
pinctrl_ephy0_act_led: ephy0_act_led {
|
||||
function = "ephy0_act_led";
|
||||
pins = "gpio25";
|
||||
};
|
||||
|
||||
pinctrl_ephy0_act_led: ephy0_act_led {
|
||||
function = "ephy0_act_led";
|
||||
pins = "gpio25";
|
||||
};
|
||||
pinctrl_ephy1_act_led: ephy1_act_led {
|
||||
function = "ephy1_act_led";
|
||||
pins = "gpio26";
|
||||
};
|
||||
|
||||
pinctrl_ephy1_act_led: ephy1_act_led {
|
||||
function = "ephy1_act_led";
|
||||
pins = "gpio26";
|
||||
};
|
||||
pinctrl_ephy2_act_led: ephy2_act_led {
|
||||
function = "ephy2_act_led";
|
||||
pins = "gpio27";
|
||||
};
|
||||
|
||||
pinctrl_ephy2_act_led: ephy2_act_led {
|
||||
function = "ephy2_act_led";
|
||||
pins = "gpio27";
|
||||
};
|
||||
pinctrl_ephy3_act_led: ephy3_act_led {
|
||||
function = "ephy3_act_led";
|
||||
pins = "gpio28";
|
||||
};
|
||||
|
||||
pinctrl_ephy3_act_led: ephy3_act_led {
|
||||
function = "ephy3_act_led";
|
||||
pins = "gpio28";
|
||||
};
|
||||
pinctrl_hsspi_cs1: hsspi_cs1 {
|
||||
function = "hsspi_cs1";
|
||||
pins = "hsspi_cs1";
|
||||
};
|
||||
|
||||
pinctrl_hsspi_cs1: hsspi_cs1 {
|
||||
function = "hsspi_cs1";
|
||||
pins = "hsspi_cs1";
|
||||
};
|
||||
pinctrl_usb_port1_device: usb_port1_device {
|
||||
function = "usb_device_port";
|
||||
pins = "usb_port1";
|
||||
};
|
||||
|
||||
pinctrl_usb_port1_device: usb_port1_device {
|
||||
function = "usb_device_port";
|
||||
pins = "usb_port1";
|
||||
};
|
||||
|
||||
pinctrl_usb_port1_host: usb_port1_host {
|
||||
function = "usb_host_port";
|
||||
pins = "usb_port1";
|
||||
pinctrl_usb_port1_host: usb_port1_host {
|
||||
function = "usb_host_port";
|
||||
pins = "usb_port1";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -158,74 +158,75 @@
|
||||
timeout-sec = <30>;
|
||||
};
|
||||
|
||||
pinctrl: pin-controller@fffe0080 {
|
||||
compatible = "brcm,bcm6358-pinctrl";
|
||||
reg = <0xfffe0080 0x8>,
|
||||
<0xfffe0088 0x8>;
|
||||
reg-names = "dirout", "dat", "mode";
|
||||
brcm,gpiomode = <&gpiomode>;
|
||||
gpio: syscon@fffe0080 {
|
||||
compatible = "syscon", "simple-mfd";
|
||||
reg = <0xfffe0080 0x50>;
|
||||
native-endian;
|
||||
|
||||
gpio-controller;
|
||||
#gpio-cells = <2>;
|
||||
pinctrl: pin-controller {
|
||||
compatible = "brcm,bcm6358-pinctrl";
|
||||
|
||||
interrupts-extended = <&ext_intc1 0 0>,
|
||||
<&ext_intc1 1 0>,
|
||||
<&ext_intc0 0 0>,
|
||||
<&ext_intc0 1 0>,
|
||||
<&ext_intc0 2 0>,
|
||||
<&ext_intc0 3 0>;
|
||||
interrupt-names = "gpio32", "gpio33", "gpio34", "gpio35",
|
||||
"gpio36", "gpio37";
|
||||
gpio-controller;
|
||||
#gpio-cells = <2>;
|
||||
|
||||
pinctrl_ebi_cs: ebi_cs {
|
||||
function = "ebi_cs";
|
||||
groups = "ebi_cs_grp";
|
||||
interrupts-extended = <&ext_intc1 0 0>,
|
||||
<&ext_intc1 1 0>,
|
||||
<&ext_intc0 0 0>,
|
||||
<&ext_intc0 1 0>,
|
||||
<&ext_intc0 2 0>,
|
||||
<&ext_intc0 3 0>;
|
||||
interrupt-names = "gpio32",
|
||||
"gpio33",
|
||||
"gpio34",
|
||||
"gpio35",
|
||||
"gpio36",
|
||||
"gpio37";
|
||||
|
||||
pinctrl_ebi_cs: ebi_cs {
|
||||
function = "ebi_cs";
|
||||
groups = "ebi_cs_grp";
|
||||
};
|
||||
|
||||
pinctrl_uart1: uart1 {
|
||||
function = "uart1";
|
||||
groups = "uart1_grp";
|
||||
};
|
||||
|
||||
pinctrl_serial_led: serial_led {
|
||||
function = "serial_led";
|
||||
groups = "serial_led_grp";
|
||||
};
|
||||
|
||||
pinctrl_legacy_led: legacy_led {
|
||||
function = "legacy_led";
|
||||
groups = "legacy_led_grp";
|
||||
};
|
||||
|
||||
pinctrl_led: led {
|
||||
function = "led";
|
||||
groups = "led_grp";
|
||||
};
|
||||
|
||||
pinctrl_spi_cs_23: spi_cs {
|
||||
function = "spi_cs";
|
||||
groups = "spi_cs_grp";
|
||||
};
|
||||
|
||||
pinctrl_utopia: utopia {
|
||||
function = "utopia";
|
||||
groups = "utopia_grp";
|
||||
};
|
||||
|
||||
pinctrl_pwm_syn_clk: pwm_syn_clk {
|
||||
function = "pwm_syn_clk";
|
||||
groups = "pwm_syn_clk_grp";
|
||||
};
|
||||
|
||||
pinctrl_sys_irq: sys_irq {
|
||||
function = "sys_irq";
|
||||
groups = "sys_irq_grp";
|
||||
};
|
||||
};
|
||||
|
||||
pinctrl_uart1: uart1 {
|
||||
function = "uart1";
|
||||
groups = "uart1_grp";
|
||||
};
|
||||
|
||||
pinctrl_serial_led: serial_led {
|
||||
function = "serial_led";
|
||||
groups = "serial_led_grp";
|
||||
};
|
||||
|
||||
pinctrl_legacy_led: legacy_led {
|
||||
function = "legacy_led";
|
||||
groups = "legacy_led_grp";
|
||||
};
|
||||
|
||||
pinctrl_led: led {
|
||||
function = "led";
|
||||
groups = "led_grp";
|
||||
};
|
||||
|
||||
pinctrl_spi_cs_23: spi_cs {
|
||||
function = "spi_cs";
|
||||
groups = "spi_cs_grp";
|
||||
};
|
||||
|
||||
pinctrl_utopia: utopia {
|
||||
function = "utopia";
|
||||
groups = "utopia_grp";
|
||||
};
|
||||
|
||||
pinctrl_pwm_syn_clk: pwm_syn_clk {
|
||||
function = "pwm_syn_clk";
|
||||
groups = "pwm_syn_clk_grp";
|
||||
};
|
||||
|
||||
pinctrl_sys_irq: sys_irq {
|
||||
function = "sys_irq";
|
||||
groups = "sys_irq_grp";
|
||||
};
|
||||
};
|
||||
|
||||
gpiomode: gpiomode@fffe0098 {
|
||||
compatible = "brcm,bcm6358-gpiomode", "syscon";
|
||||
reg = <0xfffe0098 0x4>;
|
||||
};
|
||||
|
||||
leds: led-controller@fffe00d0 {
|
||||
|
@ -147,174 +147,176 @@
|
||||
timeout-sec = <30>;
|
||||
};
|
||||
|
||||
pinctrl: pin-controller@10000080 {
|
||||
compatible = "brcm,bcm6362-pinctrl";
|
||||
reg = <0x10000080 0x8>,
|
||||
<0x10000088 0x8>,
|
||||
<0x10000090 0x4>,
|
||||
<0x10000098 0x4>,
|
||||
<0x1000009c 0x4>,
|
||||
<0x100000b8 0x4>;
|
||||
reg-names = "dirout", "dat", "led",
|
||||
"mode", "ctrl", "basemode";
|
||||
gpio: syscon@10000080 {
|
||||
compatible = "syscon", "simple-mfd";
|
||||
reg = <0x10000080 0x80>;
|
||||
native-endian;
|
||||
|
||||
gpio-controller;
|
||||
#gpio-cells = <2>;
|
||||
pinctrl: pin-controller {
|
||||
compatible = "brcm,bcm6362-pinctrl";
|
||||
|
||||
interrupt-parent = <&ext_intc>;
|
||||
interrupts = <0 0>, <1 0>, <2 0>, <3 0>;
|
||||
interrupt-names = "gpio24", "gpio25",
|
||||
"gpio26", "gpio27";
|
||||
gpio-controller;
|
||||
#gpio-cells = <2>;
|
||||
|
||||
pinctrl_usb_device_led: usb_device_led {
|
||||
function = "usb_device_led";
|
||||
pins = "gpio0";
|
||||
};
|
||||
interrupts-extended = <&ext_intc 0 0>,
|
||||
<&ext_intc 1 0>,
|
||||
<&ext_intc 2 0>,
|
||||
<&ext_intc 3 0>;
|
||||
interrupt-names = "gpio24",
|
||||
"gpio25",
|
||||
"gpio26",
|
||||
"gpio27";
|
||||
|
||||
pinctrl_sys_irq: sys_irq {
|
||||
function = "sys_irq";
|
||||
pins = "gpio1";
|
||||
};
|
||||
|
||||
pinctrl_serial_led: serial_led {
|
||||
pinctrl_serial_led_clk: serial_led_clk {
|
||||
function = "serial_led_clk";
|
||||
pins = "gpio2";
|
||||
pinctrl_usb_device_led: usb_device_led {
|
||||
function = "usb_device_led";
|
||||
pins = "gpio0";
|
||||
};
|
||||
|
||||
pinctrl_serial_led_data: serial_led_data {
|
||||
function = "serial_led_data";
|
||||
pins = "gpio3";
|
||||
};
|
||||
};
|
||||
|
||||
pinctrl_robosw_led_data: robosw_led_data {
|
||||
function = "robosw_led_data";
|
||||
pins = "gpio4";
|
||||
};
|
||||
|
||||
pinctrl_robosw_led_clk: robosw_led_clk {
|
||||
function = "robosw_led_clk";
|
||||
pins = "gpio5";
|
||||
};
|
||||
|
||||
pinctrl_robosw_led0: robosw_led0 {
|
||||
function = "robosw_led0";
|
||||
pins = "gpio6";
|
||||
};
|
||||
|
||||
pinctrl_robosw_led1: robosw_led1 {
|
||||
function = "robosw_led1";
|
||||
pins = "gpio7";
|
||||
};
|
||||
|
||||
pinctrl_inet_led: inet_led {
|
||||
function = "inet_led";
|
||||
pins = "gpio8";
|
||||
};
|
||||
|
||||
pinctrl_spi_cs2: spi_cs2 {
|
||||
function = "spi_cs2";
|
||||
pins = "gpio9";
|
||||
};
|
||||
|
||||
pinctrl_spi_cs3: spi_cs3 {
|
||||
function = "spi_cs3";
|
||||
pins = "gpio10";
|
||||
};
|
||||
|
||||
pinctrl_ntr_pulse: ntr_pulse {
|
||||
function = "ntr_pulse";
|
||||
pins = "gpio11";
|
||||
};
|
||||
|
||||
pinctrl_uart1_scts: uart1_scts {
|
||||
function = "uart1_scts";
|
||||
pins = "gpio12";
|
||||
};
|
||||
|
||||
pinctrl_uart1_srts: uart1_srts {
|
||||
function = "uart1_srts";
|
||||
pins = "gpio13";
|
||||
};
|
||||
|
||||
pinctrl_uart1: uart1 {
|
||||
pinctrl_uart1_sdin: uart1_sdin {
|
||||
function = "uart1_sdin";
|
||||
pins = "gpio14";
|
||||
pinctrl_sys_irq: sys_irq {
|
||||
function = "sys_irq";
|
||||
pins = "gpio1";
|
||||
};
|
||||
|
||||
pinctrl_uart1_sdout: uart1_sdout {
|
||||
function = "uart1_sdout";
|
||||
pins = "gpio15";
|
||||
};
|
||||
};
|
||||
pinctrl_serial_led: serial_led {
|
||||
pinctrl_serial_led_clk: serial_led_clk {
|
||||
function = "serial_led_clk";
|
||||
pins = "gpio2";
|
||||
};
|
||||
|
||||
pinctrl_adsl_spi: adsl_spi {
|
||||
pinctrl_adsl_spi_miso: adsl_spi_miso {
|
||||
function = "adsl_spi_miso";
|
||||
pins = "gpio16";
|
||||
pinctrl_serial_led_data: serial_led_data {
|
||||
function = "serial_led_data";
|
||||
pins = "gpio3";
|
||||
};
|
||||
};
|
||||
|
||||
pinctrl_adsl_spi_mosi: adsl_spi_mosi {
|
||||
function = "adsl_spi_mosi";
|
||||
pins = "gpio17";
|
||||
pinctrl_robosw_led_data: robosw_led_data {
|
||||
function = "robosw_led_data";
|
||||
pins = "gpio4";
|
||||
};
|
||||
|
||||
pinctrl_adsl_spi_clk: adsl_spi_clk {
|
||||
function = "adsl_spi_clk";
|
||||
pins = "gpio18";
|
||||
pinctrl_robosw_led_clk: robosw_led_clk {
|
||||
function = "robosw_led_clk";
|
||||
pins = "gpio5";
|
||||
};
|
||||
|
||||
pinctrl_adsl_spi_cs: adsl_spi_cs {
|
||||
function = "adsl_spi_cs";
|
||||
pins = "gpio19";
|
||||
pinctrl_robosw_led0: robosw_led0 {
|
||||
function = "robosw_led0";
|
||||
pins = "gpio6";
|
||||
};
|
||||
};
|
||||
|
||||
pinctrl_ephy0_led: ephy0_led {
|
||||
function = "ephy0_led";
|
||||
pins = "gpio20";
|
||||
};
|
||||
pinctrl_robosw_led1: robosw_led1 {
|
||||
function = "robosw_led1";
|
||||
pins = "gpio7";
|
||||
};
|
||||
|
||||
pinctrl_ephy1_led: ephy1_led {
|
||||
function = "ephy1_led";
|
||||
pins = "gpio21";
|
||||
};
|
||||
pinctrl_inet_led: inet_led {
|
||||
function = "inet_led";
|
||||
pins = "gpio8";
|
||||
};
|
||||
|
||||
pinctrl_ephy2_led: ephy2_led {
|
||||
function = "ephy2_led";
|
||||
pins = "gpio22";
|
||||
};
|
||||
pinctrl_spi_cs2: spi_cs2 {
|
||||
function = "spi_cs2";
|
||||
pins = "gpio9";
|
||||
};
|
||||
|
||||
pinctrl_ephy3_led: ephy3_led {
|
||||
function = "ephy3_led";
|
||||
pins = "gpio23";
|
||||
};
|
||||
pinctrl_spi_cs3: spi_cs3 {
|
||||
function = "spi_cs3";
|
||||
pins = "gpio10";
|
||||
};
|
||||
|
||||
pinctrl_ext_irq0: ext_irq0 {
|
||||
function = "ext_irq0";
|
||||
pins = "gpio24";
|
||||
};
|
||||
pinctrl_ntr_pulse: ntr_pulse {
|
||||
function = "ntr_pulse";
|
||||
pins = "gpio11";
|
||||
};
|
||||
|
||||
pinctrl_ext_irq1: ext_irq1 {
|
||||
function = "ext_irq1";
|
||||
pins = "gpio25";
|
||||
};
|
||||
pinctrl_uart1_scts: uart1_scts {
|
||||
function = "uart1_scts";
|
||||
pins = "gpio12";
|
||||
};
|
||||
|
||||
pinctrl_ext_irq2: ext_irq2 {
|
||||
function = "ext_irq2";
|
||||
pins = "gpio26";
|
||||
};
|
||||
pinctrl_uart1_srts: uart1_srts {
|
||||
function = "uart1_srts";
|
||||
pins = "gpio13";
|
||||
};
|
||||
|
||||
pinctrl_ext_irq3: ext_irq3 {
|
||||
function = "ext_irq3";
|
||||
pins = "gpio27";
|
||||
};
|
||||
pinctrl_uart1: uart1 {
|
||||
pinctrl_uart1_sdin: uart1_sdin {
|
||||
function = "uart1_sdin";
|
||||
pins = "gpio14";
|
||||
};
|
||||
|
||||
pinctrl_nand: nand {
|
||||
function = "nand";
|
||||
group = "nand_grp";
|
||||
pinctrl_uart1_sdout: uart1_sdout {
|
||||
function = "uart1_sdout";
|
||||
pins = "gpio15";
|
||||
};
|
||||
};
|
||||
|
||||
pinctrl_adsl_spi: adsl_spi {
|
||||
pinctrl_adsl_spi_miso: adsl_spi_miso {
|
||||
function = "adsl_spi_miso";
|
||||
pins = "gpio16";
|
||||
};
|
||||
|
||||
pinctrl_adsl_spi_mosi: adsl_spi_mosi {
|
||||
function = "adsl_spi_mosi";
|
||||
pins = "gpio17";
|
||||
};
|
||||
|
||||
pinctrl_adsl_spi_clk: adsl_spi_clk {
|
||||
function = "adsl_spi_clk";
|
||||
pins = "gpio18";
|
||||
};
|
||||
|
||||
pinctrl_adsl_spi_cs: adsl_spi_cs {
|
||||
function = "adsl_spi_cs";
|
||||
pins = "gpio19";
|
||||
};
|
||||
};
|
||||
|
||||
pinctrl_ephy0_led: ephy0_led {
|
||||
function = "ephy0_led";
|
||||
pins = "gpio20";
|
||||
};
|
||||
|
||||
pinctrl_ephy1_led: ephy1_led {
|
||||
function = "ephy1_led";
|
||||
pins = "gpio21";
|
||||
};
|
||||
|
||||
pinctrl_ephy2_led: ephy2_led {
|
||||
function = "ephy2_led";
|
||||
pins = "gpio22";
|
||||
};
|
||||
|
||||
pinctrl_ephy3_led: ephy3_led {
|
||||
function = "ephy3_led";
|
||||
pins = "gpio23";
|
||||
};
|
||||
|
||||
pinctrl_ext_irq0: ext_irq0 {
|
||||
function = "ext_irq0";
|
||||
pins = "gpio24";
|
||||
};
|
||||
|
||||
pinctrl_ext_irq1: ext_irq1 {
|
||||
function = "ext_irq1";
|
||||
pins = "gpio25";
|
||||
};
|
||||
|
||||
pinctrl_ext_irq2: ext_irq2 {
|
||||
function = "ext_irq2";
|
||||
pins = "gpio26";
|
||||
};
|
||||
|
||||
pinctrl_ext_irq3: ext_irq3 {
|
||||
function = "ext_irq3";
|
||||
pins = "gpio27";
|
||||
};
|
||||
|
||||
pinctrl_nand: nand {
|
||||
function = "nand";
|
||||
group = "nand_grp";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -149,185 +149,190 @@
|
||||
timeout-sec = <30>;
|
||||
};
|
||||
|
||||
pinctrl: pin-controller@10000080 {
|
||||
compatible = "brcm,bcm6368-pinctrl";
|
||||
reg = <0x10000080 0x8>,
|
||||
<0x10000088 0x8>,
|
||||
<0x10000098 0x4>;
|
||||
reg-names = "dirout", "dat", "mode";
|
||||
brcm,gpiobasemode = <&gpiobasemode>;
|
||||
gpio: syscon@10000080 {
|
||||
compatible = "syscon", "simple-mfd";
|
||||
reg = <0x10000080 0x80>;
|
||||
native-endian;
|
||||
|
||||
gpio-controller;
|
||||
#gpio-cells = <2>;
|
||||
pinctrl: pin-controller {
|
||||
compatible = "brcm,bcm6368-pinctrl";
|
||||
|
||||
interrupts-extended = <&ext_intc1 0 0>,
|
||||
<&ext_intc1 1 0>,
|
||||
<&ext_intc0 0 0>,
|
||||
<&ext_intc0 1 0>,
|
||||
<&ext_intc0 2 0>,
|
||||
<&ext_intc0 3 0>;
|
||||
interrupt-names = "gpio32", "gpio33", "gpio34", "gpio35",
|
||||
"gpio36", "gpio37";
|
||||
gpio-controller;
|
||||
#gpio-cells = <2>;
|
||||
|
||||
pinctrl_analog_afe_0: analog_afe_0 {
|
||||
function = "analog_afe_0";
|
||||
pins = "gpio0";
|
||||
};
|
||||
interrupts-extended = <&ext_intc1 0 0>,
|
||||
<&ext_intc1 1 0>,
|
||||
<&ext_intc0 0 0>,
|
||||
<&ext_intc0 1 0>,
|
||||
<&ext_intc0 2 0>,
|
||||
<&ext_intc0 3 0>;
|
||||
interrupt-names = "gpio32",
|
||||
"gpio33",
|
||||
"gpio34",
|
||||
"gpio35",
|
||||
"gpio36",
|
||||
"gpio37";
|
||||
|
||||
pinctrl_analog_afe_1: analog_afe_1 {
|
||||
function = "analog_afe_1";
|
||||
pins = "gpio1";
|
||||
};
|
||||
|
||||
pinctrl_sys_irq: sys_irq {
|
||||
function = "sys_irq";
|
||||
pins = "gpio2";
|
||||
};
|
||||
|
||||
pinctrl_serial_led: serial_led {
|
||||
pinctrl_serial_led_data: serial_led_data {
|
||||
function = "serial_led_data";
|
||||
pins = "gpio3";
|
||||
pinctrl_analog_afe_0: analog_afe_0 {
|
||||
function = "analog_afe_0";
|
||||
pins = "gpio0";
|
||||
};
|
||||
|
||||
pinctrl_serial_led_clk: serial_led_clk {
|
||||
function = "serial_led_clk";
|
||||
pins = "gpio4";
|
||||
};
|
||||
};
|
||||
|
||||
pinctrl_inet_led: inet_led {
|
||||
function = "inet_led";
|
||||
pins = "gpio5";
|
||||
};
|
||||
|
||||
pinctrl_ephy0_led: ephy0_led {
|
||||
function = "ephy0_led";
|
||||
pins = "gpio6";
|
||||
};
|
||||
|
||||
pinctrl_ephy1_led: ephy1_led {
|
||||
function = "ephy1_led";
|
||||
pins = "gpio7";
|
||||
};
|
||||
|
||||
pinctrl_ephy2_led: ephy2_led {
|
||||
function = "ephy2_led";
|
||||
pins = "gpio8";
|
||||
};
|
||||
|
||||
pinctrl_ephy3_led: ephy3_led {
|
||||
function = "ephy3_led";
|
||||
pins = "gpio9";
|
||||
};
|
||||
|
||||
pinctrl_robosw_led_data: robosw_led_data {
|
||||
function = "robosw_led_data";
|
||||
pins = "gpio10";
|
||||
};
|
||||
|
||||
pinctrl_robosw_led_clk: robosw_led_clk {
|
||||
function = "robosw_led_clk";
|
||||
pins = "gpio11";
|
||||
};
|
||||
|
||||
pinctrl_robosw_led0: robosw_led0 {
|
||||
function = "robosw_led0";
|
||||
pins = "gpio12";
|
||||
};
|
||||
|
||||
pinctrl_robosw_led1: robosw_led1 {
|
||||
function = "robosw_led1";
|
||||
pins = "gpio13";
|
||||
};
|
||||
|
||||
pinctrl_usb_device_led: usb_device_led {
|
||||
function = "usb_device_led";
|
||||
pins = "gpio14";
|
||||
};
|
||||
|
||||
pinctrl_pci: pci {
|
||||
pinctrl_pci_req1: pci_req1 {
|
||||
function = "pci_req1";
|
||||
pins = "gpio16";
|
||||
pinctrl_analog_afe_1: analog_afe_1 {
|
||||
function = "analog_afe_1";
|
||||
pins = "gpio1";
|
||||
};
|
||||
|
||||
pinctrl_pci_gnt1: pci_gnt1 {
|
||||
function = "pci_gnt1";
|
||||
pins = "gpio17";
|
||||
pinctrl_sys_irq: sys_irq {
|
||||
function = "sys_irq";
|
||||
pins = "gpio2";
|
||||
};
|
||||
|
||||
pinctrl_pci_intb: pci_intb {
|
||||
function = "pci_intb";
|
||||
pins = "gpio18";
|
||||
pinctrl_serial_led: serial_led {
|
||||
pinctrl_serial_led_data: serial_led_data {
|
||||
function = "serial_led_data";
|
||||
pins = "gpio3";
|
||||
};
|
||||
|
||||
pinctrl_serial_led_clk: serial_led_clk {
|
||||
function = "serial_led_clk";
|
||||
pins = "gpio4";
|
||||
};
|
||||
};
|
||||
|
||||
pinctrl_pci_req0: pci_req0 {
|
||||
function = "pci_req0";
|
||||
pins = "gpio19";
|
||||
pinctrl_inet_led: inet_led {
|
||||
function = "inet_led";
|
||||
pins = "gpio5";
|
||||
};
|
||||
|
||||
pinctrl_pci_gnt0: pci_gnt0 {
|
||||
function = "pci_gnt0";
|
||||
pins = "gpio20";
|
||||
};
|
||||
};
|
||||
|
||||
pinctrl_pcmcia: pcmcia {
|
||||
pinctrl_pcmcia_cd1: pcmcia_cd1 {
|
||||
function = "pcmcia_cd1";
|
||||
pins = "gpio22";
|
||||
pinctrl_ephy0_led: ephy0_led {
|
||||
function = "ephy0_led";
|
||||
pins = "gpio6";
|
||||
};
|
||||
|
||||
pinctrl_pcmcia_cd2: pcmcia_cd2 {
|
||||
function = "pcmcia_cd2";
|
||||
pins = "gpio23";
|
||||
pinctrl_ephy1_led: ephy1_led {
|
||||
function = "ephy1_led";
|
||||
pins = "gpio7";
|
||||
};
|
||||
|
||||
pinctrl_pcmcia_vs1: pcmcia_vs1 {
|
||||
function = "pcmcia_vs1";
|
||||
pins = "gpio24";
|
||||
pinctrl_ephy2_led: ephy2_led {
|
||||
function = "ephy2_led";
|
||||
pins = "gpio8";
|
||||
};
|
||||
|
||||
pinctrl_pcmcia_vs2: pcmcia_vs2 {
|
||||
function = "pcmcia_vs2";
|
||||
pins = "gpio25";
|
||||
pinctrl_ephy3_led: ephy3_led {
|
||||
function = "ephy3_led";
|
||||
pins = "gpio9";
|
||||
};
|
||||
};
|
||||
|
||||
pinctrl_ebi_cs2: ebi_cs2 {
|
||||
function = "ebi_cs2";
|
||||
pins = "gpio26";
|
||||
};
|
||||
pinctrl_robosw_led_data: robosw_led_data {
|
||||
function = "robosw_led_data";
|
||||
pins = "gpio10";
|
||||
};
|
||||
|
||||
pinctrl_ebi_cs3: ebi_cs3 {
|
||||
function = "ebi_cs2";
|
||||
pins = "gpio27";
|
||||
};
|
||||
pinctrl_robosw_led_clk: robosw_led_clk {
|
||||
function = "robosw_led_clk";
|
||||
pins = "gpio11";
|
||||
};
|
||||
|
||||
pinctrl_spi_cs2: spi_cs2 {
|
||||
function = "spi_cs2";
|
||||
pins = "gpio28";
|
||||
};
|
||||
pinctrl_robosw_led0: robosw_led0 {
|
||||
function = "robosw_led0";
|
||||
pins = "gpio12";
|
||||
};
|
||||
|
||||
pinctrl_spi_cs3: spi_cs3 {
|
||||
function = "spi_cs3";
|
||||
pins = "gpio29";
|
||||
};
|
||||
pinctrl_robosw_led1: robosw_led1 {
|
||||
function = "robosw_led1";
|
||||
pins = "gpio13";
|
||||
};
|
||||
|
||||
pinctrl_spi_cs4: spi_cs4 {
|
||||
function = "spi_cs4";
|
||||
pins = "gpio30";
|
||||
};
|
||||
pinctrl_usb_device_led: usb_device_led {
|
||||
function = "usb_device_led";
|
||||
pins = "gpio14";
|
||||
};
|
||||
|
||||
pinctrl_spi_cs5: spi_cs5 {
|
||||
function = "spi_cs5";
|
||||
pins = "gpio31";
|
||||
};
|
||||
pinctrl_pci: pci {
|
||||
pinctrl_pci_req1: pci_req1 {
|
||||
function = "pci_req1";
|
||||
pins = "gpio16";
|
||||
};
|
||||
|
||||
pinctrl_uart1: uart1 {
|
||||
function = "uart1";
|
||||
group = "uart1_grp";
|
||||
pinctrl_pci_gnt1: pci_gnt1 {
|
||||
function = "pci_gnt1";
|
||||
pins = "gpio17";
|
||||
};
|
||||
|
||||
pinctrl_pci_intb: pci_intb {
|
||||
function = "pci_intb";
|
||||
pins = "gpio18";
|
||||
};
|
||||
|
||||
pinctrl_pci_req0: pci_req0 {
|
||||
function = "pci_req0";
|
||||
pins = "gpio19";
|
||||
};
|
||||
|
||||
pinctrl_pci_gnt0: pci_gnt0 {
|
||||
function = "pci_gnt0";
|
||||
pins = "gpio20";
|
||||
};
|
||||
};
|
||||
|
||||
pinctrl_pcmcia: pcmcia {
|
||||
pinctrl_pcmcia_cd1: pcmcia_cd1 {
|
||||
function = "pcmcia_cd1";
|
||||
pins = "gpio22";
|
||||
};
|
||||
|
||||
pinctrl_pcmcia_cd2: pcmcia_cd2 {
|
||||
function = "pcmcia_cd2";
|
||||
pins = "gpio23";
|
||||
};
|
||||
|
||||
pinctrl_pcmcia_vs1: pcmcia_vs1 {
|
||||
function = "pcmcia_vs1";
|
||||
pins = "gpio24";
|
||||
};
|
||||
|
||||
pinctrl_pcmcia_vs2: pcmcia_vs2 {
|
||||
function = "pcmcia_vs2";
|
||||
pins = "gpio25";
|
||||
};
|
||||
};
|
||||
|
||||
pinctrl_ebi_cs2: ebi_cs2 {
|
||||
function = "ebi_cs2";
|
||||
pins = "gpio26";
|
||||
};
|
||||
|
||||
pinctrl_ebi_cs3: ebi_cs3 {
|
||||
function = "ebi_cs3";
|
||||
pins = "gpio27";
|
||||
};
|
||||
|
||||
pinctrl_spi_cs2: spi_cs2 {
|
||||
function = "spi_cs2";
|
||||
pins = "gpio28";
|
||||
};
|
||||
|
||||
pinctrl_spi_cs3: spi_cs3 {
|
||||
function = "spi_cs3";
|
||||
pins = "gpio29";
|
||||
};
|
||||
|
||||
pinctrl_spi_cs4: spi_cs4 {
|
||||
function = "spi_cs4";
|
||||
pins = "gpio30";
|
||||
};
|
||||
|
||||
pinctrl_spi_cs5: spi_cs5 {
|
||||
function = "spi_cs5";
|
||||
pins = "gpio31";
|
||||
};
|
||||
|
||||
pinctrl_uart1: uart1 {
|
||||
function = "uart1";
|
||||
group = "uart1_grp";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -0,0 +1,182 @@
|
||||
From 3b6d70e7bae0dbba02435c53f878a042d6d4bd4d Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= <noltari@gmail.com>
|
||||
Date: Wed, 27 Jul 2016 11:33:56 +0200
|
||||
Subject: [PATCH 01/12] Documentation: add BCM6328 pincontroller binding
|
||||
documentation
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Add binding documentation for the pincontrol core found in BCM6328 SoCs.
|
||||
|
||||
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
---
|
||||
.../pinctrl/brcm,bcm6328-pinctrl.yaml | 161 ++++++++++++++++++
|
||||
1 file changed, 161 insertions(+)
|
||||
create mode 100644 Documentation/devicetree/bindings/pinctrl/brcm,bcm6328-pinctrl.yaml
|
||||
|
||||
--- /dev/null
|
||||
+++ b/Documentation/devicetree/bindings/pinctrl/brcm,bcm6328-pinctrl.yaml
|
||||
@@ -0,0 +1,161 @@
|
||||
+# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
|
||||
+%YAML 1.2
|
||||
+---
|
||||
+$id: http://devicetree.org/schemas/pinctrl/brcm,bcm6328-pinctrl.yaml#
|
||||
+$schema: http://devicetree.org/meta-schemas/core.yaml#
|
||||
+
|
||||
+title: Broadcom BCM6328 pin controller
|
||||
+
|
||||
+maintainers:
|
||||
+ - Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
+ - Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+
|
||||
+description: |+
|
||||
+ The pin controller node should be the child of a syscon node.
|
||||
+
|
||||
+ Refer to the the bindings described in
|
||||
+ Documentation/devicetree/bindings/mfd/syscon.yaml
|
||||
+
|
||||
+properties:
|
||||
+ compatible:
|
||||
+ const: brcm,bcm6328-pinctrl
|
||||
+
|
||||
+ gpio-controller: true
|
||||
+
|
||||
+ '#gpio-cells':
|
||||
+ description:
|
||||
+ Specifies the pin number and flags, as defined in
|
||||
+ include/dt-bindings/gpio/gpio.h
|
||||
+ const: 2
|
||||
+
|
||||
+ interrupts-extended:
|
||||
+ description:
|
||||
+ One interrupt per each of the 4 GPIO ports supported by the controller,
|
||||
+ sorted by port number ascending order.
|
||||
+ minItems: 4
|
||||
+ maxItems: 4
|
||||
+
|
||||
+patternProperties:
|
||||
+ '^.*$':
|
||||
+ if:
|
||||
+ type: object
|
||||
+ then:
|
||||
+ properties:
|
||||
+ function:
|
||||
+ $ref: "/schemas/types.yaml#/definitions/string"
|
||||
+ enum: [ serial_led_data, serial_led_clk, inet_act_led, pcie_clkreq,
|
||||
+ led, ephy0_act_led, ephy1_act_led, ephy2_act_led,
|
||||
+ ephy3_act_led, hsspi_cs1, usb_device_port, usb_host_port ]
|
||||
+
|
||||
+ pins:
|
||||
+ $ref: "/schemas/types.yaml#/definitions/string"
|
||||
+ enum: [ gpio6, gpio7, gpio11, gpio16, gpio17, gpio18, gpio19,
|
||||
+ gpio20, gpio25, gpio26, gpio27, gpio28, hsspi_cs1,
|
||||
+ usb_port1 ]
|
||||
+
|
||||
+required:
|
||||
+ - compatible
|
||||
+ - gpio-controller
|
||||
+ - '#gpio-cells'
|
||||
+
|
||||
+additionalProperties: false
|
||||
+
|
||||
+examples:
|
||||
+ - |
|
||||
+ gpio@10000080 {
|
||||
+ compatible = "syscon", "simple-mfd";
|
||||
+ reg = <0x10000080 0x80>;
|
||||
+
|
||||
+ pinctrl: pinctrl {
|
||||
+ compatible = "brcm,bcm6328-pinctrl";
|
||||
+
|
||||
+ gpio-controller;
|
||||
+ #gpio-cells = <2>;
|
||||
+
|
||||
+ interrupts-extended = <&ext_intc 3 0>,
|
||||
+ <&ext_intc 2 0>,
|
||||
+ <&ext_intc 1 0>,
|
||||
+ <&ext_intc 0 0>;
|
||||
+ interrupt-names = "gpio12",
|
||||
+ "gpio15",
|
||||
+ "gpio23",
|
||||
+ "gpio24";
|
||||
+
|
||||
+ pinctrl_serial_led: serial_led {
|
||||
+ pinctrl_serial_led_data: serial_led_data {
|
||||
+ function = "serial_led_data";
|
||||
+ pins = "gpio6";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_serial_led_clk: serial_led_clk {
|
||||
+ function = "serial_led_clk";
|
||||
+ pins = "gpio7";
|
||||
+ };
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_inet_act_led: inet_act_led {
|
||||
+ function = "inet_act_led";
|
||||
+ pins = "gpio11";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_pcie_clkreq: pcie_clkreq {
|
||||
+ function = "pcie_clkreq";
|
||||
+ pins = "gpio16";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_ephy0_spd_led: ephy0_spd_led {
|
||||
+ function = "led";
|
||||
+ pins = "gpio17";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_ephy1_spd_led: ephy1_spd_led {
|
||||
+ function = "led";
|
||||
+ pins = "gpio18";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_ephy2_spd_led: ephy2_spd_led {
|
||||
+ function = "led";
|
||||
+ pins = "gpio19";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_ephy3_spd_led: ephy3_spd_led {
|
||||
+ function = "led";
|
||||
+ pins = "gpio20";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_ephy0_act_led: ephy0_act_led {
|
||||
+ function = "ephy0_act_led";
|
||||
+ pins = "gpio25";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_ephy1_act_led: ephy1_act_led {
|
||||
+ function = "ephy1_act_led";
|
||||
+ pins = "gpio26";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_ephy2_act_led: ephy2_act_led {
|
||||
+ function = "ephy2_act_led";
|
||||
+ pins = "gpio27";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_ephy3_act_led: ephy3_act_led {
|
||||
+ function = "ephy3_act_led";
|
||||
+ pins = "gpio28";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_hsspi_cs1: hsspi_cs1 {
|
||||
+ function = "hsspi_cs1";
|
||||
+ pins = "hsspi_cs1";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_usb_port1_device: usb_port1_device {
|
||||
+ function = "usb_device_port";
|
||||
+ pins = "usb_port1";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_usb_port1_host: usb_port1_host {
|
||||
+ function = "usb_host_port";
|
||||
+ pins = "usb_port1";
|
||||
+ };
|
||||
+ };
|
||||
+ };
|
@ -1,226 +0,0 @@
|
||||
From ab2f33e35e35905a76204138143875251f3e1088 Mon Sep 17 00:00:00 2001
|
||||
From: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
Date: Fri, 24 Jun 2016 22:07:42 +0200
|
||||
Subject: [PATCH 01/13] pinctrl: add bcm63xx base code
|
||||
|
||||
Setup directory and add a helper for bcm63xx pinctrl support.
|
||||
|
||||
Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
---
|
||||
drivers/pinctrl/Kconfig | 1 +
|
||||
drivers/pinctrl/Makefile | 1 +
|
||||
drivers/pinctrl/bcm63xx/Kconfig | 3 +
|
||||
drivers/pinctrl/bcm63xx/Makefile | 1 +
|
||||
drivers/pinctrl/bcm63xx/pinctrl-bcm63xx.c | 142 ++++++++++++++++++++++++++++++
|
||||
drivers/pinctrl/bcm63xx/pinctrl-bcm63xx.h | 14 +++
|
||||
7 files changed, 163 insertions(+)
|
||||
create mode 100644 drivers/pinctrl/bcm63xx/Kconfig
|
||||
create mode 100644 drivers/pinctrl/bcm63xx/Makefile
|
||||
create mode 100644 drivers/pinctrl/bcm63xx/pinctrl-bcm63xx.c
|
||||
create mode 100644 drivers/pinctrl/bcm63xx/pinctrl-bcm63xx.h
|
||||
|
||||
--- a/drivers/pinctrl/Kconfig
|
||||
+++ b/drivers/pinctrl/Kconfig
|
||||
@@ -377,6 +377,7 @@ config PINCTRL_OCELOT
|
||||
source "drivers/pinctrl/actions/Kconfig"
|
||||
source "drivers/pinctrl/aspeed/Kconfig"
|
||||
source "drivers/pinctrl/bcm/Kconfig"
|
||||
+source "drivers/pinctrl/bcm63xx/Kconfig"
|
||||
source "drivers/pinctrl/berlin/Kconfig"
|
||||
source "drivers/pinctrl/freescale/Kconfig"
|
||||
source "drivers/pinctrl/intel/Kconfig"
|
||||
--- a/drivers/pinctrl/Makefile
|
||||
+++ b/drivers/pinctrl/Makefile
|
||||
@@ -51,6 +51,7 @@ obj-$(CONFIG_PINCTRL_EQUILIBRIUM) += p
|
||||
obj-y += actions/
|
||||
obj-$(CONFIG_ARCH_ASPEED) += aspeed/
|
||||
obj-y += bcm/
|
||||
+obj-y += bcm63xx/
|
||||
obj-$(CONFIG_PINCTRL_BERLIN) += berlin/
|
||||
obj-y += freescale/
|
||||
obj-$(CONFIG_X86) += intel/
|
||||
--- /dev/null
|
||||
+++ b/drivers/pinctrl/bcm63xx/Kconfig
|
||||
@@ -0,0 +1,3 @@
|
||||
+config PINCTRL_BCM63XX
|
||||
+ bool
|
||||
+ select GPIO_GENERIC
|
||||
--- /dev/null
|
||||
+++ b/drivers/pinctrl/bcm63xx/Makefile
|
||||
@@ -0,0 +1 @@
|
||||
+obj-$(CONFIG_PINCTRL_BCM63XX) += pinctrl-bcm63xx.o
|
||||
--- /dev/null
|
||||
+++ b/drivers/pinctrl/bcm63xx/pinctrl-bcm63xx.c
|
||||
@@ -0,0 +1,155 @@
|
||||
+/*
|
||||
+ * This file is subject to the terms and conditions of the GNU General Public
|
||||
+ * License. See the file "COPYING" in the main directory of this archive
|
||||
+ * for more details.
|
||||
+ *
|
||||
+ * Copyright (C) 2016 Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+ */
|
||||
+
|
||||
+#include <linux/bitops.h>
|
||||
+#include <linux/device.h>
|
||||
+#include <linux/gpio/driver.h>
|
||||
+#include <linux/of_irq.h>
|
||||
+
|
||||
+#include "pinctrl-bcm63xx.h"
|
||||
+#include "../core.h"
|
||||
+
|
||||
+#define BANK_SIZE sizeof(u32)
|
||||
+#define PINS_PER_BANK (BANK_SIZE * BITS_PER_BYTE)
|
||||
+
|
||||
+#ifdef CONFIG_OF
|
||||
+static int bcm63xx_gpio_of_xlate(struct gpio_chip *gc,
|
||||
+ const struct of_phandle_args *gpiospec,
|
||||
+ u32 *flags)
|
||||
+{
|
||||
+ struct gpio_chip *base = gpiochip_get_data(gc);
|
||||
+ int pin = gpiospec->args[0];
|
||||
+
|
||||
+ if (gc != &base[pin / PINS_PER_BANK])
|
||||
+ return -EINVAL;
|
||||
+
|
||||
+ pin = pin % PINS_PER_BANK;
|
||||
+
|
||||
+ if (pin >= gc->ngpio)
|
||||
+ return -EINVAL;
|
||||
+
|
||||
+ if (flags)
|
||||
+ *flags = gpiospec->args[1];
|
||||
+
|
||||
+ return pin;
|
||||
+}
|
||||
+#endif
|
||||
+
|
||||
+static int bcm63xx_gpio_to_irq(struct gpio_chip *chip, unsigned gpio)
|
||||
+{
|
||||
+ struct gpio_chip *base = gpiochip_get_data(chip);
|
||||
+ char irq_name[7]; /* "gpioXX" */
|
||||
+
|
||||
+ /* FIXME: this is ugly */
|
||||
+ sprintf(irq_name, "gpio%d", gpio + PINS_PER_BANK * (chip - base));
|
||||
+ return of_irq_get_byname(chip->of_node, irq_name);
|
||||
+}
|
||||
+
|
||||
+static int bcm63xx_setup_gpio(struct device *dev, struct gpio_chip *gc,
|
||||
+ void __iomem *dirout, void __iomem *data,
|
||||
+ size_t sz, int ngpio)
|
||||
+
|
||||
+{
|
||||
+ int banks, chips, i, ret = -EINVAL;
|
||||
+
|
||||
+ chips = DIV_ROUND_UP(ngpio, PINS_PER_BANK);
|
||||
+ banks = sz / BANK_SIZE;
|
||||
+
|
||||
+ for (i = 0; i < chips; i++) {
|
||||
+ int offset, pins;
|
||||
+ int reg_offset;
|
||||
+ char *label;
|
||||
+
|
||||
+ label = devm_kasprintf(dev, GFP_KERNEL, "bcm63xx-gpio.%i", i);
|
||||
+ if (!label)
|
||||
+ return -ENOMEM;
|
||||
+
|
||||
+ offset = i * PINS_PER_BANK;
|
||||
+ pins = min_t(int, ngpio - offset, PINS_PER_BANK);
|
||||
+
|
||||
+ /* the registers are treated like a huge big endian register */
|
||||
+ reg_offset = (banks - i - 1) * BANK_SIZE;
|
||||
+
|
||||
+ ret = bgpio_init(&gc[i], dev, BANK_SIZE, data + reg_offset,
|
||||
+ NULL, NULL, dirout + reg_offset, NULL,
|
||||
+ BGPIOF_BIG_ENDIAN_BYTE_ORDER);
|
||||
+ if (ret)
|
||||
+ return ret;
|
||||
+
|
||||
+ gc[i].request = gpiochip_generic_request;
|
||||
+ gc[i].free = gpiochip_generic_free;
|
||||
+
|
||||
+ if (of_get_property(dev->of_node, "interrupt-names", NULL))
|
||||
+ gc[i].to_irq = bcm63xx_gpio_to_irq;
|
||||
+
|
||||
+#ifdef CONFIG_OF
|
||||
+ gc[i].of_gpio_n_cells = 2;
|
||||
+ gc[i].of_xlate = bcm63xx_gpio_of_xlate;
|
||||
+#endif
|
||||
+
|
||||
+ gc[i].label = label;
|
||||
+ gc[i].ngpio = pins;
|
||||
+
|
||||
+ devm_gpiochip_add_data(dev, &gc[i], gc);
|
||||
+ }
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+static void bcm63xx_setup_pinranges(struct gpio_chip *gc, const char *name,
|
||||
+ int ngpio)
|
||||
+{
|
||||
+ int i, chips = DIV_ROUND_UP(ngpio, PINS_PER_BANK);
|
||||
+
|
||||
+ for (i = 0; i < chips; i++) {
|
||||
+ int offset, pins;
|
||||
+
|
||||
+ offset = i * PINS_PER_BANK;
|
||||
+ pins = min_t(int, ngpio - offset, PINS_PER_BANK);
|
||||
+
|
||||
+ gpiochip_add_pin_range(&gc[i], name, 0, offset, pins);
|
||||
+ }
|
||||
+}
|
||||
+
|
||||
+struct pinctrl_dev *bcm63xx_pinctrl_register(struct platform_device *pdev,
|
||||
+ struct pinctrl_desc *desc,
|
||||
+ void *priv, struct gpio_chip *gc,
|
||||
+ int ngpio)
|
||||
+{
|
||||
+ struct pinctrl_dev *pctldev;
|
||||
+ struct resource *res;
|
||||
+ void __iomem *dirout, *data;
|
||||
+ size_t sz;
|
||||
+ int ret;
|
||||
+
|
||||
+ res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "dirout");
|
||||
+ dirout = devm_ioremap_resource(&pdev->dev, res);
|
||||
+ if (IS_ERR(dirout))
|
||||
+ return ERR_CAST(dirout);
|
||||
+
|
||||
+ res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "dat");
|
||||
+ data = devm_ioremap_resource(&pdev->dev, res);
|
||||
+ if (IS_ERR(data))
|
||||
+ return ERR_CAST(data);
|
||||
+
|
||||
+ sz = resource_size(res);
|
||||
+
|
||||
+ ret = bcm63xx_setup_gpio(&pdev->dev, gc, dirout, data, sz, ngpio);
|
||||
+ if (ret)
|
||||
+ return ERR_PTR(ret);
|
||||
+
|
||||
+ pctldev = devm_pinctrl_register(&pdev->dev, desc, priv);
|
||||
+ if (IS_ERR(pctldev))
|
||||
+ return pctldev;
|
||||
+
|
||||
+ bcm63xx_setup_pinranges(gc, pinctrl_dev_get_devname(pctldev), ngpio);
|
||||
+
|
||||
+ dev_info(&pdev->dev, "registered at mmio %p\n", dirout);
|
||||
+
|
||||
+ return pctldev;
|
||||
+}
|
||||
--- /dev/null
|
||||
+++ b/drivers/pinctrl/bcm63xx/pinctrl-bcm63xx.h
|
||||
@@ -0,0 +1,14 @@
|
||||
+#ifndef __PINCTRL_BCM63XX
|
||||
+#define __PINCTRL_BCM63XX
|
||||
+
|
||||
+#include <linux/kernel.h>
|
||||
+#include <linux/gpio.h>
|
||||
+#include <linux/pinctrl/pinctrl.h>
|
||||
+#include <linux/platform_device.h>
|
||||
+
|
||||
+struct pinctrl_dev *bcm63xx_pinctrl_register(struct platform_device *pdev,
|
||||
+ struct pinctrl_desc *desc,
|
||||
+ void *priv, struct gpio_chip *gc,
|
||||
+ int ngpio);
|
||||
+
|
||||
+#endif
|
@ -1,78 +0,0 @@
|
||||
From 4bdd40849632608d5cb7d3a64380cd76e7eea07b Mon Sep 17 00:00:00 2001
|
||||
From: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
Date: Wed, 27 Jul 2016 11:33:56 +0200
|
||||
Subject: [PATCH 02/16] Documentation: add BCM6328 pincontroller binding
|
||||
documentation
|
||||
|
||||
Add binding documentation for the pincontrol core found in BCM6328 SoCs.
|
||||
|
||||
Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
---
|
||||
.../bindings/pinctrl/brcm,bcm6328-pinctrl.txt | 61 ++++++++++++++++++++++
|
||||
1 file changed, 61 insertions(+)
|
||||
create mode 100644 Documentation/devicetree/bindings/pinctrl/brcm,bcm6328-pinctrl.txt
|
||||
|
||||
--- /dev/null
|
||||
+++ b/Documentation/devicetree/bindings/pinctrl/brcm,bcm6328-pinctrl.txt
|
||||
@@ -0,0 +1,61 @@
|
||||
+* Broadcom BCM6328 pin controller
|
||||
+
|
||||
+Required properties:
|
||||
+- compatible: Must be "brcm,bcm6328-pinctrl".
|
||||
+- reg: Register specifies of dirout, dat, mode, mux registers.
|
||||
+- reg-names: Must be "dirout", "dat", "mode", "mux".
|
||||
+- gpio-controller: Identifies this node as a GPIO controller.
|
||||
+- #gpio-cells: Must be <2>
|
||||
+
|
||||
+Example:
|
||||
+
|
||||
+pinctrl: pin-controller@10000080 {
|
||||
+ compatible = "brcm,bcm6328-pinctrl";
|
||||
+ reg = <0x10000080 0x8>,
|
||||
+ <0x10000088 0x8>,
|
||||
+ <0x10000098 0x4>,
|
||||
+ <0x1000009c 0xc>;
|
||||
+ reg-names = "dirout", "dat", "mode", "mux";
|
||||
+
|
||||
+ gpio-controller;
|
||||
+ #gpio-cells = <2>;
|
||||
+};
|
||||
+
|
||||
+Available pins/groups and functions:
|
||||
+
|
||||
+name pins functions
|
||||
+-----------------------------------------------------------
|
||||
+gpio0 0 led
|
||||
+gpio1 1 led
|
||||
+gpio2 2 led
|
||||
+gpio3 3 led
|
||||
+gpio4 4 led
|
||||
+gpio5 5 led
|
||||
+gpio6 6 led, serial_led_data
|
||||
+gpio7 7 led, serial_led_clk
|
||||
+gpio8 8 led
|
||||
+gpio9 9 led
|
||||
+gpio10 10 led
|
||||
+gpio11 11 led
|
||||
+gpio12 12 led
|
||||
+gpio13 13 led
|
||||
+gpio14 14 led
|
||||
+gpio15 15 led
|
||||
+gpio16 16 led, pcie_clkreq
|
||||
+gpio17 17 led
|
||||
+gpio18 18 led
|
||||
+gpio19 19 led
|
||||
+gpio20 20 led
|
||||
+gpio21 21 led
|
||||
+gpio22 22 led
|
||||
+gpio23 23 led
|
||||
+gpio24 24 -
|
||||
+gpio25 25 ephy0_act_led
|
||||
+gpio26 26 ephy1_act_led
|
||||
+gpio27 27 ephy2_act_led
|
||||
+gpio28 28 ephy3_act_led
|
||||
+gpio29 29 -
|
||||
+gpio30 30 -
|
||||
+gpio31 31 -
|
||||
+hsspi_cs1 - hsspi_cs1
|
||||
+usb_port1 - usb_host_port, usb_device_port
|
@ -1,58 +1,75 @@
|
||||
From 393e9753f6492c1fdf55891ddee60d955ae8b119 Mon Sep 17 00:00:00 2001
|
||||
From: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
From 3373a507212e6394921781766e9cd0dc155c62ba Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= <noltari@gmail.com>
|
||||
Date: Fri, 24 Jun 2016 22:12:50 +0200
|
||||
Subject: [PATCH 03/16] pinctrl: add a pincontrol driver for BCM6328
|
||||
Subject: [PATCH 02/12] pinctrl: add a pincontrol driver for BCM6328
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Add a pincontrol driver for BCM6328. BCM628 supports muxing 32 pins as
|
||||
GPIOs, as LEDs for the integrated LED controller, or various other
|
||||
functions. Its pincontrol mux registers also control other aspects, like
|
||||
switching the second USB port between host and device mode.
|
||||
|
||||
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
---
|
||||
drivers/pinctrl/bcm63xx/Kconfig | 7 +
|
||||
drivers/pinctrl/bcm63xx/Makefile | 1 +
|
||||
drivers/pinctrl/bcm63xx/pinctrl-bcm6328.c | 456 ++++++++++++++++++++++++++++++
|
||||
3 files changed, 464 insertions(+)
|
||||
create mode 100644 drivers/pinctrl/bcm63xx/pinctrl-bcm6328.c
|
||||
drivers/pinctrl/bcm/Kconfig | 11 +
|
||||
drivers/pinctrl/bcm/Makefile | 1 +
|
||||
drivers/pinctrl/bcm/pinctrl-bcm6328.c | 581 ++++++++++++++++++++++++++
|
||||
3 files changed, 593 insertions(+)
|
||||
create mode 100644 drivers/pinctrl/bcm/pinctrl-bcm6328.c
|
||||
|
||||
--- a/drivers/pinctrl/bcm63xx/Kconfig
|
||||
+++ b/drivers/pinctrl/bcm63xx/Kconfig
|
||||
@@ -1,3 +1,10 @@
|
||||
config PINCTRL_BCM63XX
|
||||
bool
|
||||
select GPIO_GENERIC
|
||||
+
|
||||
--- a/drivers/pinctrl/bcm/Kconfig
|
||||
+++ b/drivers/pinctrl/bcm/Kconfig
|
||||
@@ -29,6 +29,17 @@ config PINCTRL_BCM2835
|
||||
help
|
||||
Say Y here to enable the Broadcom BCM2835 GPIO driver.
|
||||
|
||||
+config PINCTRL_BCM6328
|
||||
+ bool "BCM6328 pincontrol driver"
|
||||
+ bool "Broadcom BCM6328 GPIO driver"
|
||||
+ depends on OF_GPIO && (BMIPS_GENERIC || COMPILE_TEST)
|
||||
+ select PINMUX
|
||||
+ select PINCONF
|
||||
+ select PINCTRL_BCM63XX
|
||||
+ select GENERIC_PINCONF
|
||||
--- a/drivers/pinctrl/bcm63xx/Makefile
|
||||
+++ b/drivers/pinctrl/bcm63xx/Makefile
|
||||
@@ -1 +1,2 @@
|
||||
obj-$(CONFIG_PINCTRL_BCM63XX) += pinctrl-bcm63xx.o
|
||||
+obj-$(CONFIG_PINCTRL_BCM6328) += pinctrl-bcm6328.o
|
||||
+ select MFD_SYSCON
|
||||
+ default BMIPS_GENERIC
|
||||
+ help
|
||||
+ Say Y here to enable the Broadcom BCM6328 GPIO driver.
|
||||
+
|
||||
config PINCTRL_IPROC_GPIO
|
||||
bool "Broadcom iProc GPIO (with PINCONF) driver"
|
||||
depends on OF_GPIO && (ARCH_BCM_IPROC || COMPILE_TEST)
|
||||
--- a/drivers/pinctrl/bcm/Makefile
|
||||
+++ b/drivers/pinctrl/bcm/Makefile
|
||||
@@ -3,6 +3,7 @@
|
||||
|
||||
obj-$(CONFIG_PINCTRL_BCM281XX) += pinctrl-bcm281xx.o
|
||||
obj-$(CONFIG_PINCTRL_BCM2835) += pinctrl-bcm2835.o
|
||||
+obj-$(CONFIG_PINCTRL_BCM6328) += pinctrl-bcm6328.o
|
||||
obj-$(CONFIG_PINCTRL_IPROC_GPIO) += pinctrl-iproc-gpio.o
|
||||
obj-$(CONFIG_PINCTRL_CYGNUS_MUX) += pinctrl-cygnus-mux.o
|
||||
obj-$(CONFIG_PINCTRL_NS) += pinctrl-ns.o
|
||||
--- /dev/null
|
||||
+++ b/drivers/pinctrl/bcm63xx/pinctrl-bcm6328.c
|
||||
@@ -0,0 +1,456 @@
|
||||
+++ b/drivers/pinctrl/bcm/pinctrl-bcm6328.c
|
||||
@@ -0,0 +1,581 @@
|
||||
+// SPDX-License-Identifier: GPL-2.0+
|
||||
+/*
|
||||
+ * This file is subject to the terms and conditions of the GNU General Public
|
||||
+ * License. See the file "COPYING" in the main directory of this archive
|
||||
+ * for more details.
|
||||
+ * Driver for BCM6328 GPIO unit (pinctrl + GPIO)
|
||||
+ *
|
||||
+ * Copyright (C) 2021 Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
+ * Copyright (C) 2016 Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+ */
|
||||
+
|
||||
+#include <linux/bitops.h>
|
||||
+#include <linux/gpio.h>
|
||||
+#include <linux/kernel.h>
|
||||
+#include <linux/slab.h>
|
||||
+#include <linux/spinlock.h>
|
||||
+#include <linux/mfd/syscon.h>
|
||||
+#include <linux/of.h>
|
||||
+#include <linux/of_gpio.h>
|
||||
+#include <linux/of_irq.h>
|
||||
+#include <linux/platform_device.h>
|
||||
+#include <linux/regmap.h>
|
||||
+
|
||||
+#include <linux/pinctrl/machine.h>
|
||||
+#include <linux/pinctrl/pinconf.h>
|
||||
@ -62,13 +79,18 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+#include "../core.h"
|
||||
+#include "../pinctrl-utils.h"
|
||||
+
|
||||
+#include "pinctrl-bcm63xx.h"
|
||||
+#define MODULE_NAME "bcm6328-pinctrl"
|
||||
+#define BCM6328_NUM_GPIOS 32
|
||||
+
|
||||
+#define BCM6328_MUX_LO_REG 0x4
|
||||
+#define BCM6328_MUX_HI_REG 0x0
|
||||
+#define BCM6328_MUX_OTHER_REG 0x8
|
||||
+#define BANK_SIZE sizeof(uint32_t)
|
||||
+#define PINS_PER_BANK (BANK_SIZE * BITS_PER_BYTE)
|
||||
+
|
||||
+#define BCM6328_NGPIO 32
|
||||
+#define BCM6328_DIROUT_REG 0x04
|
||||
+#define BCM6328_DATA_REG 0x0c
|
||||
+#define BCM6328_MODE_REG 0x18
|
||||
+#define BCM6328_MUX_HI_REG 0x1c
|
||||
+#define BCM6328_MUX_LO_REG 0x20
|
||||
+#define BCM6328_MUX_OTHER_REG 0x24
|
||||
+
|
||||
+struct bcm6328_pingroup {
|
||||
+ const char *name;
|
||||
@ -86,16 +108,13 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+};
|
||||
+
|
||||
+struct bcm6328_pinctrl {
|
||||
+ struct pinctrl_dev *pctldev;
|
||||
+ struct pinctrl_desc desc;
|
||||
+ struct device *dev;
|
||||
+ struct regmap *regs;
|
||||
+
|
||||
+ void __iomem *mode;
|
||||
+ void __iomem *mux[3];
|
||||
+
|
||||
+ /* register access lock */
|
||||
+ spinlock_t lock;
|
||||
+
|
||||
+ struct gpio_chip gpio;
|
||||
+ struct pinctrl_dev *pctl_dev;
|
||||
+ struct gpio_chip gpio_chip;
|
||||
+ struct pinctrl_desc pctl_desc;
|
||||
+ struct pinctrl_gpio_range gpio_range;
|
||||
+};
|
||||
+
|
||||
+static const struct pinctrl_pin_desc bcm6328_pins[] = {
|
||||
@ -325,6 +344,119 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+ BCM6328_MUX_FUN(usb_device_port, 2),
|
||||
+};
|
||||
+
|
||||
+static inline unsigned int bcm6328_bank_pin(unsigned int pin)
|
||||
+{
|
||||
+ return pin % PINS_PER_BANK;
|
||||
+}
|
||||
+
|
||||
+static inline unsigned int bcm6318_mux_off(unsigned int pin)
|
||||
+{
|
||||
+ static const unsigned int bcm6328_mux[] = {
|
||||
+ BCM6328_MUX_LO_REG,
|
||||
+ BCM6328_MUX_HI_REG,
|
||||
+ BCM6328_MUX_OTHER_REG
|
||||
+ };
|
||||
+
|
||||
+ return bcm6328_mux[pin / 16];
|
||||
+}
|
||||
+
|
||||
+static inline unsigned int bcm6328_reg_off(unsigned int reg, unsigned int pin)
|
||||
+{
|
||||
+ return reg - (pin / PINS_PER_BANK) * BANK_SIZE;
|
||||
+}
|
||||
+
|
||||
+static int bcm6328_gpio_direction_input(struct gpio_chip *chip,
|
||||
+ unsigned int pin)
|
||||
+{
|
||||
+ struct bcm6328_pinctrl *pc = gpiochip_get_data(chip);
|
||||
+ unsigned int dirout = bcm6328_reg_off(BCM6328_DIROUT_REG, pin);
|
||||
+ unsigned int bank_pin = bcm6328_bank_pin(pin);
|
||||
+ int ret;
|
||||
+
|
||||
+ /*
|
||||
+ * Check with the pinctrl driver whether this pin is usable as
|
||||
+ * an input GPIO
|
||||
+ */
|
||||
+ ret = pinctrl_gpio_direction_input(chip->base + pin);
|
||||
+ if (ret)
|
||||
+ return ret;
|
||||
+
|
||||
+ regmap_update_bits(pc->regs, dirout, BIT(bank_pin), 0);
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+static int bcm6328_gpio_direction_output(struct gpio_chip *chip,
|
||||
+ unsigned int pin, int value)
|
||||
+{
|
||||
+ struct bcm6328_pinctrl *pc = gpiochip_get_data(chip);
|
||||
+ unsigned int data = bcm6328_reg_off(BCM6328_DATA_REG, pin);
|
||||
+ unsigned int dirout = bcm6328_reg_off(BCM6328_DIROUT_REG, pin);
|
||||
+ unsigned int bank_pin = bcm6328_bank_pin(pin);
|
||||
+ unsigned int val = value ? BIT(bank_pin) : 0;
|
||||
+ int ret;
|
||||
+
|
||||
+ /*
|
||||
+ * Check with the pinctrl driver whether this pin is usable as
|
||||
+ * an output GPIO
|
||||
+ */
|
||||
+ ret = pinctrl_gpio_direction_output(chip->base + pin);
|
||||
+ if (ret)
|
||||
+ return ret;
|
||||
+
|
||||
+ regmap_update_bits(pc->regs, dirout, BIT(bank_pin), BIT(bank_pin));
|
||||
+ regmap_update_bits(pc->regs, data, BIT(bank_pin), val);
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+static int bcm6328_gpio_get(struct gpio_chip *chip, unsigned int pin)
|
||||
+{
|
||||
+ struct bcm6328_pinctrl *pc = gpiochip_get_data(chip);
|
||||
+ unsigned int data = bcm6328_reg_off(BCM6328_DATA_REG, pin);
|
||||
+ unsigned int bank_pin = bcm6328_bank_pin(pin);
|
||||
+ unsigned int val;
|
||||
+
|
||||
+ regmap_read(pc->regs, data, &val);
|
||||
+
|
||||
+ return !!(val & BIT(bank_pin));
|
||||
+}
|
||||
+
|
||||
+static int bcm6328_gpio_get_direction(struct gpio_chip *chip, unsigned int pin)
|
||||
+{
|
||||
+ struct bcm6328_pinctrl *pc = gpiochip_get_data(chip);
|
||||
+ unsigned int dirout = bcm6328_reg_off(BCM6328_DIROUT_REG, pin);
|
||||
+ unsigned int bank_pin = bcm6328_bank_pin(pin);
|
||||
+ unsigned int val;
|
||||
+
|
||||
+ regmap_read(pc->regs, dirout, &val);
|
||||
+
|
||||
+ if (val & BIT(bank_pin))
|
||||
+ return GPIO_LINE_DIRECTION_OUT;
|
||||
+
|
||||
+ return GPIO_LINE_DIRECTION_IN;
|
||||
+}
|
||||
+
|
||||
+static void bcm6328_gpio_set(struct gpio_chip *chip, unsigned int pin,
|
||||
+ int value)
|
||||
+{
|
||||
+ struct bcm6328_pinctrl *pc = gpiochip_get_data(chip);
|
||||
+ unsigned int data = bcm6328_reg_off(BCM6328_DATA_REG, pin);
|
||||
+ unsigned int bank_pin = bcm6328_bank_pin(pin);
|
||||
+ unsigned int val = value ? BIT(bank_pin) : 0;
|
||||
+
|
||||
+ regmap_update_bits(pc->regs, data, BIT(bank_pin), val);
|
||||
+}
|
||||
+
|
||||
+static int bcm6328_gpio_to_irq(struct gpio_chip *chip, unsigned gpio)
|
||||
+{
|
||||
+ char irq_name[7];
|
||||
+
|
||||
+ sprintf(irq_name, "gpio%d", gpio);
|
||||
+
|
||||
+ return of_irq_get_byname(chip->of_node, irq_name);
|
||||
+}
|
||||
+
|
||||
+static int bcm6328_pinctrl_get_group_count(struct pinctrl_dev *pctldev)
|
||||
+{
|
||||
+ return ARRAY_SIZE(bcm6328_groups);
|
||||
@ -368,37 +500,26 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+static void bcm6328_rmw_mux(struct bcm6328_pinctrl *pctl, unsigned pin,
|
||||
+ u32 mode, u32 mux)
|
||||
+static void bcm6328_rmw_mux(struct bcm6328_pinctrl *pc, unsigned pin,
|
||||
+ unsigned int mode, unsigned int mux)
|
||||
+{
|
||||
+ unsigned long flags;
|
||||
+ u32 reg;
|
||||
+ if (pin < BCM6328_NUM_GPIOS)
|
||||
+ regmap_update_bits(pc->regs, BCM6328_MODE_REG, BIT(pin),
|
||||
+ mode ? BIT(pin) : 0);
|
||||
+
|
||||
+ spin_lock_irqsave(&pctl->lock, flags);
|
||||
+ if (pin < 32) {
|
||||
+ reg = __raw_readl(pctl->mode);
|
||||
+ reg &= ~BIT(pin);
|
||||
+ if (mode)
|
||||
+ reg |= BIT(pin);
|
||||
+ __raw_writel(reg, pctl->mode);
|
||||
+ }
|
||||
+
|
||||
+ reg = __raw_readl(pctl->mux[pin / 16]);
|
||||
+ reg &= ~(3UL << ((pin % 16) * 2));
|
||||
+ reg |= mux << ((pin % 16) * 2);
|
||||
+ __raw_writel(reg, pctl->mux[pin / 16]);
|
||||
+
|
||||
+ spin_unlock_irqrestore(&pctl->lock, flags);
|
||||
+ regmap_update_bits(pc->regs, bcm6318_mux_off(pin),
|
||||
+ 3UL << ((pin % 16) * 2),
|
||||
+ mux << ((pin % 16) * 2));
|
||||
+}
|
||||
+
|
||||
+static int bcm6328_pinctrl_set_mux(struct pinctrl_dev *pctldev,
|
||||
+ unsigned selector, unsigned group)
|
||||
+{
|
||||
+ struct bcm6328_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
|
||||
+ const struct bcm6328_pingroup *grp = &bcm6328_groups[group];
|
||||
+ struct bcm6328_pinctrl *pc = pinctrl_dev_get_drvdata(pctldev);
|
||||
+ const struct bcm6328_pingroup *pg = &bcm6328_groups[group];
|
||||
+ const struct bcm6328_function *f = &bcm6328_funcs[selector];
|
||||
+
|
||||
+ bcm6328_rmw_mux(pctl, grp->pins[0], f->mode_val, f->mux_val);
|
||||
+ bcm6328_rmw_mux(pc, pg->pins[0], f->mode_val, f->mux_val);
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
@ -407,74 +528,94 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+ struct pinctrl_gpio_range *range,
|
||||
+ unsigned offset)
|
||||
+{
|
||||
+ struct bcm6328_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
|
||||
+ struct bcm6328_pinctrl *pc = pinctrl_dev_get_drvdata(pctldev);
|
||||
+
|
||||
+ /* disable all functions using this pin */
|
||||
+ bcm6328_rmw_mux(pctl, offset, 0, 0);
|
||||
+ bcm6328_rmw_mux(pc, offset, 0, 0);
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+static struct pinctrl_ops bcm6328_pctl_ops = {
|
||||
+ .get_groups_count = bcm6328_pinctrl_get_group_count,
|
||||
+ .get_group_name = bcm6328_pinctrl_get_group_name,
|
||||
+ .get_group_pins = bcm6328_pinctrl_get_group_pins,
|
||||
+#ifdef CONFIG_OF
|
||||
+ .dt_node_to_map = pinconf_generic_dt_node_to_map_pin,
|
||||
+ .dt_free_map = pinctrl_utils_free_map,
|
||||
+#endif
|
||||
+ .get_groups_count = bcm6328_pinctrl_get_group_count,
|
||||
+ .get_group_name = bcm6328_pinctrl_get_group_name,
|
||||
+ .get_group_pins = bcm6328_pinctrl_get_group_pins,
|
||||
+ .dt_node_to_map = pinconf_generic_dt_node_to_map_pin,
|
||||
+ .dt_free_map = pinctrl_utils_free_map,
|
||||
+};
|
||||
+
|
||||
+static struct pinmux_ops bcm6328_pmx_ops = {
|
||||
+ .get_functions_count = bcm6328_pinctrl_get_func_count,
|
||||
+ .get_function_name = bcm6328_pinctrl_get_func_name,
|
||||
+ .get_function_groups = bcm6328_pinctrl_get_groups,
|
||||
+ .set_mux = bcm6328_pinctrl_set_mux,
|
||||
+ .gpio_request_enable = bcm6328_gpio_request_enable,
|
||||
+ .strict = true,
|
||||
+ .get_functions_count = bcm6328_pinctrl_get_func_count,
|
||||
+ .get_function_name = bcm6328_pinctrl_get_func_name,
|
||||
+ .get_function_groups = bcm6328_pinctrl_get_groups,
|
||||
+ .set_mux = bcm6328_pinctrl_set_mux,
|
||||
+ .gpio_request_enable = bcm6328_gpio_request_enable,
|
||||
+ .strict = true,
|
||||
+};
|
||||
+
|
||||
+static int bcm6328_pinctrl_probe(struct platform_device *pdev)
|
||||
+{
|
||||
+ struct bcm6328_pinctrl *pctl;
|
||||
+ struct resource *res;
|
||||
+ void __iomem *mode, *mux;
|
||||
+ struct device *dev = &pdev->dev;
|
||||
+ struct device_node *np = dev->of_node;
|
||||
+ struct bcm6328_pinctrl *pc;
|
||||
+ int err;
|
||||
+
|
||||
+ res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "mode");
|
||||
+ mode = devm_ioremap_resource(&pdev->dev, res);
|
||||
+ if (IS_ERR(mode))
|
||||
+ return PTR_ERR(mode);
|
||||
+
|
||||
+ res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "mux");
|
||||
+ mux = devm_ioremap_resource(&pdev->dev, res);
|
||||
+ if (IS_ERR(mux))
|
||||
+ return PTR_ERR(mux);
|
||||
+
|
||||
+ pctl = devm_kzalloc(&pdev->dev, sizeof(*pctl), GFP_KERNEL);
|
||||
+ if (!pctl)
|
||||
+ pc = devm_kzalloc(dev, sizeof(*pc), GFP_KERNEL);
|
||||
+ if (!pc)
|
||||
+ return -ENOMEM;
|
||||
+
|
||||
+ spin_lock_init(&pctl->lock);
|
||||
+ platform_set_drvdata(pdev, pc);
|
||||
+ pc->dev = dev;
|
||||
+
|
||||
+ pctl->mode = mode;
|
||||
+ pctl->mux[0] = mux + BCM6328_MUX_LO_REG;
|
||||
+ pctl->mux[1] = mux + BCM6328_MUX_HI_REG;
|
||||
+ pctl->mux[2] = mux + BCM6328_MUX_OTHER_REG;
|
||||
+ pc->regs = syscon_node_to_regmap(dev->parent->of_node);
|
||||
+ if (IS_ERR(pc->regs))
|
||||
+ return PTR_ERR(pc->regs);
|
||||
+
|
||||
+ pctl->desc.name = dev_name(&pdev->dev);
|
||||
+ pctl->desc.owner = THIS_MODULE;
|
||||
+ pctl->desc.pctlops = &bcm6328_pctl_ops;
|
||||
+ pctl->desc.pmxops = &bcm6328_pmx_ops;
|
||||
+ pc->gpio_chip.label = MODULE_NAME;
|
||||
+ pc->gpio_chip.owner = THIS_MODULE;
|
||||
+ pc->gpio_chip.request = gpiochip_generic_request;
|
||||
+ pc->gpio_chip.free = gpiochip_generic_free;
|
||||
+ pc->gpio_chip.direction_input = bcm6328_gpio_direction_input;
|
||||
+ pc->gpio_chip.direction_output = bcm6328_gpio_direction_output;
|
||||
+ pc->gpio_chip.get_direction = bcm6328_gpio_get_direction;
|
||||
+ pc->gpio_chip.get = bcm6328_gpio_get;
|
||||
+ pc->gpio_chip.set = bcm6328_gpio_set;
|
||||
+ pc->gpio_chip.set_config = gpiochip_generic_config;
|
||||
+ pc->gpio_chip.base = -1;
|
||||
+ pc->gpio_chip.ngpio = BCM6328_NUM_GPIOS;
|
||||
+ pc->gpio_chip.can_sleep = false;
|
||||
+ pc->gpio_chip.parent = dev;
|
||||
+ pc->gpio_chip.of_node = np;
|
||||
+
|
||||
+ pctl->desc.npins = ARRAY_SIZE(bcm6328_pins);
|
||||
+ pctl->desc.pins = bcm6328_pins;
|
||||
+ if (of_get_property(np, "interrupt-names", NULL))
|
||||
+ pc->gpio_chip.to_irq = bcm6328_gpio_to_irq;
|
||||
+
|
||||
+ platform_set_drvdata(pdev, pctl);
|
||||
+ err = gpiochip_add_data(&pc->gpio_chip, pc);
|
||||
+ if (err) {
|
||||
+ dev_err(dev, "could not add GPIO chip\n");
|
||||
+ return err;
|
||||
+ }
|
||||
+
|
||||
+ pctl->pctldev = bcm63xx_pinctrl_register(pdev, &pctl->desc, pctl,
|
||||
+ &pctl->gpio, BCM6328_NGPIO);
|
||||
+ if (IS_ERR(pctl->pctldev))
|
||||
+ return PTR_ERR(pctl->pctldev);
|
||||
+ pc->pctl_desc.name = MODULE_NAME,
|
||||
+ pc->pctl_desc.pins = bcm6328_pins,
|
||||
+ pc->pctl_desc.npins = ARRAY_SIZE(bcm6328_pins),
|
||||
+ pc->pctl_desc.pctlops = &bcm6328_pctl_ops,
|
||||
+ pc->pctl_desc.pmxops = &bcm6328_pmx_ops,
|
||||
+ pc->pctl_desc.owner = THIS_MODULE,
|
||||
+
|
||||
+ pc->pctl_dev = devm_pinctrl_register(dev, &pc->pctl_desc, pc);
|
||||
+ if (IS_ERR(pc->pctl_dev)) {
|
||||
+ gpiochip_remove(&pc->gpio_chip);
|
||||
+ return PTR_ERR(pc->pctl_dev);
|
||||
+ }
|
||||
+
|
||||
+ pc->gpio_range.name = MODULE_NAME;
|
||||
+ pc->gpio_range.npins = BCM6328_NUM_GPIOS;
|
||||
+ pc->gpio_range.base = pc->gpio_chip.base;
|
||||
+ pc->gpio_range.gc = &pc->gpio_chip;
|
||||
+ pinctrl_add_gpio_range(pc->pctl_dev, &pc->gpio_range);
|
||||
+
|
||||
+ dev_info(dev, "registered\n");
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
@ -487,7 +628,7 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+static struct platform_driver bcm6328_pinctrl_driver = {
|
||||
+ .probe = bcm6328_pinctrl_probe,
|
||||
+ .driver = {
|
||||
+ .name = "bcm6328-pinctrl",
|
||||
+ .name = MODULE_NAME,
|
||||
+ .of_match_table = bcm6328_pinctrl_match,
|
||||
+ },
|
||||
+};
|
@ -0,0 +1,152 @@
|
||||
From 9fbcbe08479bcb3609952b66627e2d612173229a Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= <noltari@gmail.com>
|
||||
Date: Wed, 27 Jul 2016 11:36:00 +0200
|
||||
Subject: [PATCH 03/12] Documentation: add BCM6358 pincontroller binding
|
||||
documentation
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Add binding documentation for the pincontrol core found in BCM6358 SoCs.
|
||||
|
||||
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
---
|
||||
.../pinctrl/brcm,bcm6358-pinctrl.yaml | 131 ++++++++++++++++++
|
||||
1 file changed, 131 insertions(+)
|
||||
create mode 100644 Documentation/devicetree/bindings/pinctrl/brcm,bcm6358-pinctrl.yaml
|
||||
|
||||
--- /dev/null
|
||||
+++ b/Documentation/devicetree/bindings/pinctrl/brcm,bcm6358-pinctrl.yaml
|
||||
@@ -0,0 +1,131 @@
|
||||
+# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
|
||||
+%YAML 1.2
|
||||
+---
|
||||
+$id: http://devicetree.org/schemas/pinctrl/brcm,bcm6358-pinctrl.yaml#
|
||||
+$schema: http://devicetree.org/meta-schemas/core.yaml#
|
||||
+
|
||||
+title: Broadcom BCM6358 pin controller
|
||||
+
|
||||
+maintainers:
|
||||
+ - Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
+ - Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+
|
||||
+description: |+
|
||||
+ The pin controller node should be the child of a syscon node.
|
||||
+
|
||||
+ Refer to the the bindings described in
|
||||
+ Documentation/devicetree/bindings/mfd/syscon.yaml
|
||||
+
|
||||
+properties:
|
||||
+ compatible:
|
||||
+ const: brcm,bcm6358-pinctrl
|
||||
+
|
||||
+ gpio-controller: true
|
||||
+
|
||||
+ '#gpio-cells':
|
||||
+ description:
|
||||
+ Specifies the pin number and flags, as defined in
|
||||
+ include/dt-bindings/gpio/gpio.h
|
||||
+ const: 2
|
||||
+
|
||||
+ interrupts-extended:
|
||||
+ description:
|
||||
+ One interrupt per each of the 4 GPIO ports supported by the controller,
|
||||
+ sorted by port number ascending order.
|
||||
+ minItems: 6
|
||||
+ maxItems: 6
|
||||
+
|
||||
+patternProperties:
|
||||
+ '^.*$':
|
||||
+ if:
|
||||
+ type: object
|
||||
+ then:
|
||||
+ properties:
|
||||
+ function:
|
||||
+ $ref: "/schemas/types.yaml#/definitions/string"
|
||||
+ enum: [ ebi_cs, uart1, serial_led, legacy_led, led, spi_cs, utopia,
|
||||
+ pwm_syn_clk, sys_irq ]
|
||||
+
|
||||
+ pins:
|
||||
+ $ref: "/schemas/types.yaml#/definitions/string"
|
||||
+ enum: [ ebi_cs_grp, uart1_grp, serial_led_grp, legacy_led_grp,
|
||||
+ led_grp, spi_cs_grp, utopia_grp, pwm_syn_clk, sys_irq_grp ]
|
||||
+
|
||||
+required:
|
||||
+ - compatible
|
||||
+ - gpio-controller
|
||||
+ - '#gpio-cells'
|
||||
+
|
||||
+additionalProperties: false
|
||||
+
|
||||
+examples:
|
||||
+ - |
|
||||
+ gpio@fffe0080 {
|
||||
+ compatible = "syscon", "simple-mfd";
|
||||
+ reg = <0xfffe0080 0x80>;
|
||||
+
|
||||
+ pinctrl: pinctrl {
|
||||
+ compatible = "brcm,bcm6358-pinctrl";
|
||||
+
|
||||
+ gpio-controller;
|
||||
+ #gpio-cells = <2>;
|
||||
+
|
||||
+ interrupts-extended = <&ext_intc1 0 0>,
|
||||
+ <&ext_intc1 1 0>,
|
||||
+ <&ext_intc0 0 0>,
|
||||
+ <&ext_intc0 1 0>,
|
||||
+ <&ext_intc0 2 0>,
|
||||
+ <&ext_intc0 3 0>;
|
||||
+ interrupt-names = "gpio32",
|
||||
+ "gpio33",
|
||||
+ "gpio34",
|
||||
+ "gpio35",
|
||||
+ "gpio36",
|
||||
+ "gpio37";
|
||||
+
|
||||
+ pinctrl_ebi_cs: ebi_cs {
|
||||
+ function = "ebi_cs";
|
||||
+ groups = "ebi_cs_grp";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_uart1: uart1 {
|
||||
+ function = "uart1";
|
||||
+ groups = "uart1_grp";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_serial_led: serial_led {
|
||||
+ function = "serial_led";
|
||||
+ groups = "serial_led_grp";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_legacy_led: legacy_led {
|
||||
+ function = "legacy_led";
|
||||
+ groups = "legacy_led_grp";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_led: led {
|
||||
+ function = "led";
|
||||
+ groups = "led_grp";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_spi_cs_23: spi_cs {
|
||||
+ function = "spi_cs";
|
||||
+ groups = "spi_cs_grp";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_utopia: utopia {
|
||||
+ function = "utopia";
|
||||
+ groups = "utopia_grp";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_pwm_syn_clk: pwm_syn_clk {
|
||||
+ function = "pwm_syn_clk";
|
||||
+ groups = "pwm_syn_clk_grp";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_sys_irq: sys_irq {
|
||||
+ function = "sys_irq";
|
||||
+ groups = "sys_irq_grp";
|
||||
+ };
|
||||
+ };
|
||||
+ };
|
@ -1,61 +0,0 @@
|
||||
From c7c8fa7f5b5ee9bea751fa7bdae8ff4acde8f26e Mon Sep 17 00:00:00 2001
|
||||
From: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
Date: Wed, 27 Jul 2016 11:36:00 +0200
|
||||
Subject: [PATCH 06/16] Documentation: add BCM6358 pincontroller binding
|
||||
documentation
|
||||
|
||||
Add binding documentation for the pincontrol core found in BCM6358 SoCs.
|
||||
|
||||
Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
---
|
||||
.../bindings/pinctrl/brcm,bcm6358-pinctrl.txt | 44 ++++++++++++++++++++++
|
||||
1 file changed, 44 insertions(+)
|
||||
create mode 100644 Documentation/devicetree/bindings/pinctrl/brcm,bcm6358-pinctrl.txt
|
||||
|
||||
--- /dev/null
|
||||
+++ b/Documentation/devicetree/bindings/pinctrl/brcm,bcm6358-pinctrl.txt
|
||||
@@ -0,0 +1,44 @@
|
||||
+* Broadcom BCM6358 pin controller
|
||||
+
|
||||
+Required properties:
|
||||
+- compatible: Must be "brcm,bcm6358-pinctrl".
|
||||
+- reg: Register specifiers of dirout, dat registers.
|
||||
+- reg-names: Must be "dirout", "dat".
|
||||
+- brcm,gpiomode: Phandle to the shared gpiomode register.
|
||||
+- gpio-controller: Identifies this node as a gpio-controller.
|
||||
+- #gpio-cells: Must be <2>.
|
||||
+
|
||||
+Example:
|
||||
+
|
||||
+pinctrl: pin-controller@fffe0080 {
|
||||
+ compatible = "brcm,bcm6358-pinctrl";
|
||||
+ reg = <0xfffe0080 0x8>,
|
||||
+ <0xfffe0088 0x8>,
|
||||
+ <0xfffe0098 0x4>;
|
||||
+ reg-names = "dirout", "dat";
|
||||
+ brcm,gpiomode = <&gpiomode>;
|
||||
+
|
||||
+ gpio-controller;
|
||||
+ #gpio-cells = <2>;
|
||||
+};
|
||||
+
|
||||
+gpiomode: syscon@fffe0098 {
|
||||
+ compatible = "brcm,bcm6358-gpiomode", "syscon";
|
||||
+ reg = <0xfffe0098 0x4>;
|
||||
+ native-endian;
|
||||
+};
|
||||
+
|
||||
+Available pins/groups and functions:
|
||||
+
|
||||
+name pins functions
|
||||
+-----------------------------------------------------------
|
||||
+ebi_cs_grp 30-31 ebi_cs
|
||||
+uart1_grp 28-31 uart1
|
||||
+spi_cs_grp 32-33 spi_cs
|
||||
+async_modem_grp 12-15 async_modem
|
||||
+legacy_led_grp 9-15 legacy_led
|
||||
+serial_led_grp 6-7 serial_led
|
||||
+led_grp 0-3 led
|
||||
+utopia_grp 12-15, 22-31 utopia
|
||||
+pwm_syn_clk_grp 8 pwm_syn_clk
|
||||
+sys_irq_grp 5 sys_irq
|
@ -1,7 +1,10 @@
|
||||
From fb00ef462f3f8b70ea8902151cc72810fe90b999 Mon Sep 17 00:00:00 2001
|
||||
From: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
From b0e1ebc79a6d7f84f71a758f5a504c8cf954e2e0 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= <noltari@gmail.com>
|
||||
Date: Fri, 24 Jun 2016 22:16:01 +0200
|
||||
Subject: [PATCH 07/16] pinctrl: add a pincontrol driver for BCM6358
|
||||
Subject: [PATCH 04/12] pinctrl: add a pincontrol driver for BCM6358
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Add a pincotrol driver for BCM6358. BCM6358 allow overlaying different
|
||||
functions onto the GPIO pins. It does not support configuring individual
|
||||
@ -9,71 +12,85 @@ pins but only whole groups. These groups may overlap, and still require
|
||||
the directions to be set correctly in the GPIO register. In addition the
|
||||
functions register controls other, not directly mux related functions.
|
||||
|
||||
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
---
|
||||
drivers/pinctrl/bcm63xx/Kconfig | 8 +
|
||||
drivers/pinctrl/bcm63xx/Makefile | 1 +
|
||||
drivers/pinctrl/bcm63xx/pinctrl-bcm6358.c | 393 ++++++++++++++++++++++++++++++
|
||||
3 files changed, 402 insertions(+)
|
||||
create mode 100644 drivers/pinctrl/bcm63xx/pinctrl-bcm6358.c
|
||||
drivers/pinctrl/bcm/Kconfig | 11 +
|
||||
drivers/pinctrl/bcm/Makefile | 1 +
|
||||
drivers/pinctrl/bcm/pinctrl-bcm6358.c | 526 ++++++++++++++++++++++++++
|
||||
3 files changed, 538 insertions(+)
|
||||
create mode 100644 drivers/pinctrl/bcm/pinctrl-bcm6358.c
|
||||
|
||||
--- a/drivers/pinctrl/bcm63xx/Kconfig
|
||||
+++ b/drivers/pinctrl/bcm63xx/Kconfig
|
||||
@@ -8,3 +8,11 @@ config PINCTRL_BCM6328
|
||||
select PINCONF
|
||||
select PINCTRL_BCM63XX
|
||||
select GENERIC_PINCONF
|
||||
+
|
||||
--- a/drivers/pinctrl/bcm/Kconfig
|
||||
+++ b/drivers/pinctrl/bcm/Kconfig
|
||||
@@ -40,6 +40,17 @@ config PINCTRL_BCM6328
|
||||
help
|
||||
Say Y here to enable the Broadcom BCM6328 GPIO driver.
|
||||
|
||||
+config PINCTRL_BCM6358
|
||||
+ bool "BCM6358 pincontrol driver"
|
||||
+ bool "Broadcom BCM6358 GPIO driver"
|
||||
+ depends on OF_GPIO && (BMIPS_GENERIC || COMPILE_TEST)
|
||||
+ select PINMUX
|
||||
+ select PINCONF
|
||||
+ select PINCTRL_BCM63XX
|
||||
+ select GENERIC_PINCONF
|
||||
+ select MFD_SYSCON
|
||||
--- a/drivers/pinctrl/bcm63xx/Makefile
|
||||
+++ b/drivers/pinctrl/bcm63xx/Makefile
|
||||
@@ -1,2 +1,3 @@
|
||||
obj-$(CONFIG_PINCTRL_BCM63XX) += pinctrl-bcm63xx.o
|
||||
obj-$(CONFIG_PINCTRL_BCM6328) += pinctrl-bcm6328.o
|
||||
+obj-$(CONFIG_PINCTRL_BCM6358) += pinctrl-bcm6358.o
|
||||
+ default BMIPS_GENERIC
|
||||
+ help
|
||||
+ Say Y here to enable the Broadcom BCM6358 GPIO driver.
|
||||
+
|
||||
config PINCTRL_IPROC_GPIO
|
||||
bool "Broadcom iProc GPIO (with PINCONF) driver"
|
||||
depends on OF_GPIO && (ARCH_BCM_IPROC || COMPILE_TEST)
|
||||
--- a/drivers/pinctrl/bcm/Makefile
|
||||
+++ b/drivers/pinctrl/bcm/Makefile
|
||||
@@ -4,6 +4,7 @@
|
||||
obj-$(CONFIG_PINCTRL_BCM281XX) += pinctrl-bcm281xx.o
|
||||
obj-$(CONFIG_PINCTRL_BCM2835) += pinctrl-bcm2835.o
|
||||
obj-$(CONFIG_PINCTRL_BCM6328) += pinctrl-bcm6328.o
|
||||
+obj-$(CONFIG_PINCTRL_BCM6358) += pinctrl-bcm6358.o
|
||||
obj-$(CONFIG_PINCTRL_IPROC_GPIO) += pinctrl-iproc-gpio.o
|
||||
obj-$(CONFIG_PINCTRL_CYGNUS_MUX) += pinctrl-cygnus-mux.o
|
||||
obj-$(CONFIG_PINCTRL_NS) += pinctrl-ns.o
|
||||
--- /dev/null
|
||||
+++ b/drivers/pinctrl/bcm63xx/pinctrl-bcm6358.c
|
||||
@@ -0,0 +1,390 @@
|
||||
+++ b/drivers/pinctrl/bcm/pinctrl-bcm6358.c
|
||||
@@ -0,0 +1,526 @@
|
||||
+// SPDX-License-Identifier: GPL-2.0+
|
||||
+/*
|
||||
+ * This file is subject to the terms and conditions of the GNU General Public
|
||||
+ * License. See the file "COPYING" in the main directory of this archive
|
||||
+ * for more details.
|
||||
+ * Driver for BCM6358 GPIO unit (pinctrl + GPIO)
|
||||
+ *
|
||||
+ * Copyright (C) 2021 Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
+ * Copyright (C) 2016 Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+ */
|
||||
+
|
||||
+#include <linux/kernel.h>
|
||||
+#include <linux/bitops.h>
|
||||
+#include <linux/gpio.h>
|
||||
+#include <linux/gpio/driver.h>
|
||||
+#include <linux/kernel.h>
|
||||
+#include <linux/mfd/syscon.h>
|
||||
+#include <linux/of.h>
|
||||
+#include <linux/of_gpio.h>
|
||||
+#include <linux/of_address.h>
|
||||
+#include <linux/slab.h>
|
||||
+#include <linux/regmap.h>
|
||||
+#include <linux/of_irq.h>
|
||||
+#include <linux/platform_device.h>
|
||||
+#include <linux/regmap.h>
|
||||
+
|
||||
+#include <linux/pinctrl/machine.h>
|
||||
+#include <linux/pinctrl/pinconf.h>
|
||||
+#include <linux/pinctrl/pinconf-generic.h>
|
||||
+#include <linux/pinctrl/pinmux.h>
|
||||
+#include <linux/pinctrl/machine.h>
|
||||
+
|
||||
+#include "../core.h"
|
||||
+#include "../pinctrl-utils.h"
|
||||
+
|
||||
+#include "pinctrl-bcm63xx.h"
|
||||
+#define MODULE_NAME "bcm6358-pinctrl"
|
||||
+#define BCM6358_NUM_GPIOS 40
|
||||
+
|
||||
+#define BANK_SIZE sizeof(uint32_t)
|
||||
+#define PINS_PER_BANK (BANK_SIZE * BITS_PER_BYTE)
|
||||
+
|
||||
+#define BCM6358_DIROUT_REG 0x04
|
||||
+#define BCM6358_DATA_REG 0x0c
|
||||
+#define BCM6358_MODE_REG 0x18
|
||||
+
|
||||
+/* GPIO_MODE register */
|
||||
+#define BCM6358_MODE_MUX_NONE 0
|
||||
+
|
||||
+/* overlays on gpio pins */
|
||||
+#define BCM6358_MODE_MUX_EBI_CS BIT(5)
|
||||
+#define BCM6358_MODE_MUX_UART1 BIT(6)
|
||||
+#define BCM6358_MODE_MUX_SPI_CS BIT(7)
|
||||
@ -86,17 +103,15 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+#define BCM6358_MODE_MUX_PWM_SYN_CLK BIT(14)
|
||||
+#define BCM6358_MODE_MUX_SYS_IRQ BIT(15)
|
||||
+
|
||||
+#define BCM6358_NGPIO 40
|
||||
+
|
||||
+struct bcm6358_pingroup {
|
||||
+ const char *name;
|
||||
+ const unsigned * const pins;
|
||||
+ const unsigned num_pins;
|
||||
+
|
||||
+ const u16 mode_val;
|
||||
+ const uint16_t mode_val;
|
||||
+
|
||||
+ /* non-GPIO function muxes require the gpio direction to be set */
|
||||
+ const u16 direction;
|
||||
+ const uint16_t direction;
|
||||
+};
|
||||
+
|
||||
+struct bcm6358_function {
|
||||
@ -107,12 +122,13 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+
|
||||
+struct bcm6358_pinctrl {
|
||||
+ struct device *dev;
|
||||
+ struct pinctrl_dev *pctldev;
|
||||
+ struct pinctrl_desc desc;
|
||||
+
|
||||
+ struct regmap *regs;
|
||||
+ struct regmap_field *overlays;
|
||||
+
|
||||
+ struct gpio_chip gpio[2];
|
||||
+ struct pinctrl_dev *pctl_dev;
|
||||
+ struct gpio_chip gpio_chip;
|
||||
+ struct pinctrl_desc pctl_desc;
|
||||
+ struct pinctrl_gpio_range gpio_range;
|
||||
+};
|
||||
+
|
||||
+#define BCM6358_GPIO_PIN(a, b, bit1, bit2, bit3) \
|
||||
@ -271,6 +287,108 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+ BCM6358_FUN(sys_irq),
|
||||
+};
|
||||
+
|
||||
+static inline unsigned int bcm6358_bank_pin(unsigned int pin)
|
||||
+{
|
||||
+ return pin % PINS_PER_BANK;
|
||||
+}
|
||||
+
|
||||
+static inline unsigned int bcm6358_reg_off(unsigned int reg, unsigned int pin)
|
||||
+{
|
||||
+ return reg - (pin / PINS_PER_BANK) * BANK_SIZE;
|
||||
+}
|
||||
+
|
||||
+static int bcm6358_gpio_direction_input(struct gpio_chip *chip,
|
||||
+ unsigned int pin)
|
||||
+{
|
||||
+ struct bcm6358_pinctrl *pc = gpiochip_get_data(chip);
|
||||
+ unsigned int dirout = bcm6358_reg_off(BCM6358_DIROUT_REG, pin);
|
||||
+ unsigned int bank_pin = bcm6358_bank_pin(pin);
|
||||
+ int ret;
|
||||
+
|
||||
+ /*
|
||||
+ * Check with the pinctrl driver whether this pin is usable as
|
||||
+ * an input GPIO
|
||||
+ */
|
||||
+ ret = pinctrl_gpio_direction_input(chip->base + pin);
|
||||
+ if (ret)
|
||||
+ return ret;
|
||||
+
|
||||
+ regmap_update_bits(pc->regs, dirout, BIT(bank_pin), 0);
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+static int bcm6358_gpio_direction_output(struct gpio_chip *chip,
|
||||
+ unsigned int pin, int value)
|
||||
+{
|
||||
+ struct bcm6358_pinctrl *pc = gpiochip_get_data(chip);
|
||||
+ unsigned int data = bcm6358_reg_off(BCM6358_DATA_REG, pin);
|
||||
+ unsigned int dirout = bcm6358_reg_off(BCM6358_DIROUT_REG, pin);
|
||||
+ unsigned int bank_pin = bcm6358_bank_pin(pin);
|
||||
+ unsigned int val = value ? BIT(bank_pin) : 0;
|
||||
+ int ret;
|
||||
+
|
||||
+ /*
|
||||
+ * Check with the pinctrl driver whether this pin is usable as
|
||||
+ * an output GPIO
|
||||
+ */
|
||||
+ ret = pinctrl_gpio_direction_output(chip->base + pin);
|
||||
+ if (ret)
|
||||
+ return ret;
|
||||
+
|
||||
+ regmap_update_bits(pc->regs, dirout, BIT(bank_pin), BIT(bank_pin));
|
||||
+ regmap_update_bits(pc->regs, data, BIT(bank_pin), val);
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+static int bcm6358_gpio_get(struct gpio_chip *chip, unsigned int pin)
|
||||
+{
|
||||
+ struct bcm6358_pinctrl *pc = gpiochip_get_data(chip);
|
||||
+ unsigned int data = bcm6358_reg_off(BCM6358_DATA_REG, pin);
|
||||
+ unsigned int bank_pin = bcm6358_bank_pin(pin);
|
||||
+ unsigned int val;
|
||||
+
|
||||
+ regmap_read(pc->regs, data, &val);
|
||||
+
|
||||
+ return !!(val & BIT(bank_pin));
|
||||
+}
|
||||
+
|
||||
+static int bcm6358_gpio_get_direction(struct gpio_chip *chip, unsigned int pin)
|
||||
+{
|
||||
+ struct bcm6358_pinctrl *pc = gpiochip_get_data(chip);
|
||||
+ unsigned int dirout = bcm6358_reg_off(BCM6358_DIROUT_REG, pin);
|
||||
+ unsigned int bank_pin = bcm6358_bank_pin(pin);
|
||||
+ unsigned int val;
|
||||
+
|
||||
+ regmap_read(pc->regs, dirout, &val);
|
||||
+
|
||||
+ if (val & BIT(bank_pin))
|
||||
+ return GPIO_LINE_DIRECTION_OUT;
|
||||
+
|
||||
+ return GPIO_LINE_DIRECTION_IN;
|
||||
+}
|
||||
+
|
||||
+static void bcm6358_gpio_set(struct gpio_chip *chip, unsigned int pin,
|
||||
+ int value)
|
||||
+{
|
||||
+ struct bcm6358_pinctrl *pc = gpiochip_get_data(chip);
|
||||
+ unsigned int data = bcm6358_reg_off(BCM6358_DATA_REG, pin);
|
||||
+ unsigned int bank_pin = bcm6358_bank_pin(pin);
|
||||
+ unsigned int val = value ? BIT(bank_pin) : 0;
|
||||
+
|
||||
+ regmap_update_bits(pc->regs, data, BIT(bank_pin), val);
|
||||
+}
|
||||
+
|
||||
+static int bcm6358_gpio_to_irq(struct gpio_chip *chip, unsigned gpio)
|
||||
+{
|
||||
+ char irq_name[7];
|
||||
+
|
||||
+ sprintf(irq_name, "gpio%d", gpio);
|
||||
+
|
||||
+ return of_irq_get_byname(chip->of_node, irq_name);
|
||||
+}
|
||||
+
|
||||
+static int bcm6358_pinctrl_get_group_count(struct pinctrl_dev *pctldev)
|
||||
+{
|
||||
+ return ARRAY_SIZE(bcm6358_groups);
|
||||
@ -317,25 +435,25 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+static int bcm6358_pinctrl_set_mux(struct pinctrl_dev *pctldev,
|
||||
+ unsigned selector, unsigned group)
|
||||
+{
|
||||
+ struct bcm6358_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
|
||||
+ const struct bcm6358_pingroup *grp = &bcm6358_groups[group];
|
||||
+ u32 val = grp->mode_val;
|
||||
+ u32 mask = val;
|
||||
+ struct bcm6358_pinctrl *pc = pinctrl_dev_get_drvdata(pctldev);
|
||||
+ const struct bcm6358_pingroup *pg = &bcm6358_groups[group];
|
||||
+ unsigned int val = pg->mode_val;
|
||||
+ unsigned int mask = val;
|
||||
+ unsigned pin;
|
||||
+
|
||||
+ for (pin = 0; pin < grp->num_pins; pin++)
|
||||
+ for (pin = 0; pin < pg->num_pins; pin++)
|
||||
+ mask |= (unsigned long)bcm6358_pins[pin].drv_data;
|
||||
+
|
||||
+ regmap_field_update_bits(pctl->overlays, mask, val);
|
||||
+ regmap_field_update_bits(pc->overlays, mask, val);
|
||||
+
|
||||
+ for (pin = 0; pin < grp->num_pins; pin++) {
|
||||
+ for (pin = 0; pin < pg->num_pins; pin++) {
|
||||
+ int hw_gpio = bcm6358_pins[pin].number;
|
||||
+ struct gpio_chip *gc = &pctl->gpio[hw_gpio / 32];
|
||||
+ struct gpio_chip *gc = &pc->gpio_chip;
|
||||
+
|
||||
+ if (grp->direction & BIT(pin))
|
||||
+ gc->direction_output(gc, hw_gpio % 32, 0);
|
||||
+ if (pg->direction & BIT(pin))
|
||||
+ gc->direction_output(gc, hw_gpio, 0);
|
||||
+ else
|
||||
+ gc->direction_input(gc, hw_gpio % 32);
|
||||
+ gc->direction_input(gc, hw_gpio);
|
||||
+ }
|
||||
+
|
||||
+ return 0;
|
||||
@ -345,73 +463,105 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+ struct pinctrl_gpio_range *range,
|
||||
+ unsigned offset)
|
||||
+{
|
||||
+ struct bcm6358_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
|
||||
+ u32 mask;
|
||||
+ struct bcm6358_pinctrl *pc = pinctrl_dev_get_drvdata(pctldev);
|
||||
+ unsigned int mask;
|
||||
+
|
||||
+ mask = (unsigned long)bcm6358_pins[offset].drv_data;
|
||||
+ mask = (unsigned long) bcm6358_pins[offset].drv_data;
|
||||
+ if (!mask)
|
||||
+ return 0;
|
||||
+
|
||||
+ /* disable all functions using this pin */
|
||||
+ return regmap_field_update_bits(pctl->overlays, mask, 0);
|
||||
+ return regmap_field_update_bits(pc->overlays, mask, 0);
|
||||
+}
|
||||
+
|
||||
+static struct pinctrl_ops bcm6358_pctl_ops = {
|
||||
+ .get_groups_count = bcm6358_pinctrl_get_group_count,
|
||||
+ .get_group_name = bcm6358_pinctrl_get_group_name,
|
||||
+ .get_group_pins = bcm6358_pinctrl_get_group_pins,
|
||||
+#ifdef CONFIG_OF
|
||||
+ .dt_node_to_map = pinconf_generic_dt_node_to_map_pin,
|
||||
+ .dt_free_map = pinctrl_utils_free_map,
|
||||
+#endif
|
||||
+ .get_groups_count = bcm6358_pinctrl_get_group_count,
|
||||
+ .get_group_name = bcm6358_pinctrl_get_group_name,
|
||||
+ .get_group_pins = bcm6358_pinctrl_get_group_pins,
|
||||
+ .dt_node_to_map = pinconf_generic_dt_node_to_map_pin,
|
||||
+ .dt_free_map = pinctrl_utils_free_map,
|
||||
+};
|
||||
+
|
||||
+static struct pinmux_ops bcm6358_pmx_ops = {
|
||||
+ .get_functions_count = bcm6358_pinctrl_get_func_count,
|
||||
+ .get_function_name = bcm6358_pinctrl_get_func_name,
|
||||
+ .get_function_groups = bcm6358_pinctrl_get_groups,
|
||||
+ .set_mux = bcm6358_pinctrl_set_mux,
|
||||
+ .gpio_request_enable = bcm6358_gpio_request_enable,
|
||||
+ .strict = true,
|
||||
+ .get_functions_count = bcm6358_pinctrl_get_func_count,
|
||||
+ .get_function_name = bcm6358_pinctrl_get_func_name,
|
||||
+ .get_function_groups = bcm6358_pinctrl_get_groups,
|
||||
+ .set_mux = bcm6358_pinctrl_set_mux,
|
||||
+ .gpio_request_enable = bcm6358_gpio_request_enable,
|
||||
+ .strict = true,
|
||||
+};
|
||||
+
|
||||
+static int bcm6358_pinctrl_probe(struct platform_device *pdev)
|
||||
+{
|
||||
+ struct bcm6358_pinctrl *pctl;
|
||||
+ struct regmap *mode;
|
||||
+ struct reg_field overlays = REG_FIELD(0, 0, 15);
|
||||
+ struct reg_field overlays = REG_FIELD(BCM6358_MODE_REG, 0, 15);
|
||||
+ struct device *dev = &pdev->dev;
|
||||
+ struct device_node *np = dev->of_node;
|
||||
+ struct bcm6358_pinctrl *pc;
|
||||
+ int err;
|
||||
+
|
||||
+ mode = syscon_regmap_lookup_by_phandle(pdev->dev.of_node,
|
||||
+ "brcm,gpiomode");
|
||||
+
|
||||
+ if (IS_ERR(mode))
|
||||
+ return PTR_ERR(mode);
|
||||
+
|
||||
+ pctl = devm_kzalloc(&pdev->dev, sizeof(*pctl), GFP_KERNEL);
|
||||
+ if (!pctl)
|
||||
+ pc = devm_kzalloc(dev, sizeof(*pc), GFP_KERNEL);
|
||||
+ if (!pc)
|
||||
+ return -ENOMEM;
|
||||
+
|
||||
+ pctl->overlays = devm_regmap_field_alloc(&pdev->dev, mode, overlays);
|
||||
+ if (IS_ERR(pctl->overlays))
|
||||
+ return PTR_ERR(pctl->overlays);
|
||||
+ platform_set_drvdata(pdev, pc);
|
||||
+ pc->dev = dev;
|
||||
+
|
||||
+ pc->regs = syscon_node_to_regmap(dev->parent->of_node);
|
||||
+ if (IS_ERR(pc->regs))
|
||||
+ return PTR_ERR(pc->regs);
|
||||
+
|
||||
+ pc->overlays = devm_regmap_field_alloc(&pdev->dev, pc->regs, overlays);
|
||||
+ if (IS_ERR(pc->overlays))
|
||||
+ return PTR_ERR(pc->overlays);
|
||||
+
|
||||
+ /* disable all muxes by default */
|
||||
+ regmap_field_write(pctl->overlays, 0);
|
||||
+ regmap_field_write(pc->overlays, 0);
|
||||
+
|
||||
+ pctl->desc.name = dev_name(&pdev->dev);
|
||||
+ pctl->desc.owner = THIS_MODULE;
|
||||
+ pctl->desc.pctlops = &bcm6358_pctl_ops;
|
||||
+ pctl->desc.pmxops = &bcm6358_pmx_ops;
|
||||
+ pc->gpio_chip.label = MODULE_NAME;
|
||||
+ pc->gpio_chip.owner = THIS_MODULE;
|
||||
+ pc->gpio_chip.request = gpiochip_generic_request;
|
||||
+ pc->gpio_chip.free = gpiochip_generic_free;
|
||||
+ pc->gpio_chip.direction_input = bcm6358_gpio_direction_input;
|
||||
+ pc->gpio_chip.direction_output = bcm6358_gpio_direction_output;
|
||||
+ pc->gpio_chip.get_direction = bcm6358_gpio_get_direction;
|
||||
+ pc->gpio_chip.get = bcm6358_gpio_get;
|
||||
+ pc->gpio_chip.set = bcm6358_gpio_set;
|
||||
+ pc->gpio_chip.set_config = gpiochip_generic_config;
|
||||
+ pc->gpio_chip.base = -1;
|
||||
+ pc->gpio_chip.ngpio = BCM6358_NUM_GPIOS;
|
||||
+ pc->gpio_chip.can_sleep = false;
|
||||
+ pc->gpio_chip.parent = dev;
|
||||
+ pc->gpio_chip.of_node = np;
|
||||
+
|
||||
+ pctl->desc.npins = ARRAY_SIZE(bcm6358_pins);
|
||||
+ pctl->desc.pins = bcm6358_pins;
|
||||
+ if (of_get_property(np, "interrupt-names", NULL))
|
||||
+ pc->gpio_chip.to_irq = bcm6358_gpio_to_irq;
|
||||
+
|
||||
+ platform_set_drvdata(pdev, pctl);
|
||||
+ err = gpiochip_add_data(&pc->gpio_chip, pc);
|
||||
+ if (err) {
|
||||
+ dev_err(dev, "could not add GPIO chip\n");
|
||||
+ return err;
|
||||
+ }
|
||||
+
|
||||
+ pctl->pctldev = bcm63xx_pinctrl_register(pdev, &pctl->desc, pctl,
|
||||
+ pctl->gpio, BCM6358_NGPIO);
|
||||
+ if (IS_ERR(pctl->pctldev))
|
||||
+ return PTR_ERR(pctl->pctldev);
|
||||
+ pc->pctl_desc.name = MODULE_NAME,
|
||||
+ pc->pctl_desc.pins = bcm6358_pins,
|
||||
+ pc->pctl_desc.npins = ARRAY_SIZE(bcm6358_pins),
|
||||
+ pc->pctl_desc.pctlops = &bcm6358_pctl_ops,
|
||||
+ pc->pctl_desc.pmxops = &bcm6358_pmx_ops,
|
||||
+ pc->pctl_desc.owner = THIS_MODULE,
|
||||
+
|
||||
+ pc->pctl_dev = devm_pinctrl_register(dev, &pc->pctl_desc, pc);
|
||||
+ if (IS_ERR(pc->pctl_dev)) {
|
||||
+ gpiochip_remove(&pc->gpio_chip);
|
||||
+ return PTR_ERR(pc->pctl_dev);
|
||||
+ }
|
||||
+
|
||||
+ pc->gpio_range.name = MODULE_NAME;
|
||||
+ pc->gpio_range.npins = BCM6358_NUM_GPIOS;
|
||||
+ pc->gpio_range.base = pc->gpio_chip.base;
|
||||
+ pc->gpio_range.gc = &pc->gpio_chip;
|
||||
+ pinctrl_add_gpio_range(pc->pctl_dev, &pc->gpio_range);
|
||||
+
|
||||
+ dev_info(dev, "registered\n");
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
@ -424,7 +574,7 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+static struct platform_driver bcm6358_pinctrl_driver = {
|
||||
+ .probe = bcm6358_pinctrl_probe,
|
||||
+ .driver = {
|
||||
+ .name = "bcm6358-pinctrl",
|
||||
+ .name = MODULE_NAME,
|
||||
+ .of_match_table = bcm6358_pinctrl_match,
|
||||
+ },
|
||||
+};
|
@ -0,0 +1,261 @@
|
||||
From 1c839f287a008023b3b3ae7d892b4d25e3d224ad Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= <noltari@gmail.com>
|
||||
Date: Wed, 27 Jul 2016 11:36:18 +0200
|
||||
Subject: [PATCH 05/12] Documentation: add BCM6362 pincontroller binding
|
||||
documentation
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Add binding documentation for the pincontrol core found in BCM6362 SoCs.
|
||||
|
||||
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
---
|
||||
.../pinctrl/brcm,bcm6362-pinctrl.yaml | 240 ++++++++++++++++++
|
||||
1 file changed, 240 insertions(+)
|
||||
create mode 100644 Documentation/devicetree/bindings/pinctrl/brcm,bcm6362-pinctrl.yaml
|
||||
|
||||
--- /dev/null
|
||||
+++ b/Documentation/devicetree/bindings/pinctrl/brcm,bcm6362-pinctrl.yaml
|
||||
@@ -0,0 +1,240 @@
|
||||
+# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
|
||||
+%YAML 1.2
|
||||
+---
|
||||
+$id: http://devicetree.org/schemas/pinctrl/brcm,bcm6362-pinctrl.yaml#
|
||||
+$schema: http://devicetree.org/meta-schemas/core.yaml#
|
||||
+
|
||||
+title: Broadcom BCM6362 pin controller
|
||||
+
|
||||
+maintainers:
|
||||
+ - Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
+ - Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+
|
||||
+description: |+
|
||||
+ The pin controller node should be the child of a syscon node.
|
||||
+
|
||||
+ Refer to the the bindings described in
|
||||
+ Documentation/devicetree/bindings/mfd/syscon.yaml
|
||||
+
|
||||
+properties:
|
||||
+ compatible:
|
||||
+ const: brcm,bcm6362-pinctrl
|
||||
+
|
||||
+ gpio-controller: true
|
||||
+
|
||||
+ '#gpio-cells':
|
||||
+ description:
|
||||
+ Specifies the pin number and flags, as defined in
|
||||
+ include/dt-bindings/gpio/gpio.h
|
||||
+ const: 2
|
||||
+
|
||||
+ interrupts-extended:
|
||||
+ description:
|
||||
+ One interrupt per each of the 4 GPIO ports supported by the controller,
|
||||
+ sorted by port number ascending order.
|
||||
+ minItems: 4
|
||||
+ maxItems: 4
|
||||
+
|
||||
+patternProperties:
|
||||
+ '^.*$':
|
||||
+ if:
|
||||
+ type: object
|
||||
+ then:
|
||||
+ properties:
|
||||
+ function:
|
||||
+ $ref: "/schemas/types.yaml#/definitions/string"
|
||||
+ enum: [ usb_device_led, sys_irq, serial_led_clk, serial_led_data,
|
||||
+ robosw_led_data, robosw_led_clk, robosw_led0, robosw_led1,
|
||||
+ inet_led, spi_cs2, spi_cs3, ntr_pulse, uart1_scts,
|
||||
+ uart1_srts, uart1_sdin, uart1_sdout, adsl_spi_miso,
|
||||
+ adsl_spi_mosi, adsl_spi_clk, adsl_spi_cs, ephy0_led,
|
||||
+ ephy1_led, ephy2_led, ephy3_led, ext_irq0, ext_irq1,
|
||||
+ ext_irq2, ext_irq3, nand ]
|
||||
+
|
||||
+ pins:
|
||||
+ $ref: "/schemas/types.yaml#/definitions/string"
|
||||
+ enum: [ gpio0, gpio1, gpio2, gpio3, gpio4, gpio5, gpio6, gpio7,
|
||||
+ gpio8, gpio9, gpio10, gpio11, gpio12, gpio13, gpio14,
|
||||
+ gpio15, gpio16, gpio17, gpio18, gpio19, gpio20, gpio21,
|
||||
+ gpio22, gpio23, gpio24, gpio25, gpio26, gpio27, nand_grp ]
|
||||
+
|
||||
+required:
|
||||
+ - compatible
|
||||
+ - gpio-controller
|
||||
+ - '#gpio-cells'
|
||||
+
|
||||
+additionalProperties: false
|
||||
+
|
||||
+examples:
|
||||
+ - |
|
||||
+ gpio@10000080 {
|
||||
+ compatible = "syscon", "simple-mfd";
|
||||
+ reg = <0x10000080 0x80>;
|
||||
+
|
||||
+ pinctrl: pinctrl {
|
||||
+ compatible = "brcm,bcm6362-pinctrl";
|
||||
+
|
||||
+ gpio-controller;
|
||||
+ #gpio-cells = <2>;
|
||||
+
|
||||
+ interrupts-extended = <&ext_intc 0 0>,
|
||||
+ <&ext_intc 1 0>,
|
||||
+ <&ext_intc 2 0>,
|
||||
+ <&ext_intc 3 0>;
|
||||
+ interrupt-names = "gpio24",
|
||||
+ "gpio25",
|
||||
+ "gpio26",
|
||||
+ "gpio27";
|
||||
+
|
||||
+ pinctrl_usb_device_led: usb_device_led {
|
||||
+ function = "usb_device_led";
|
||||
+ pins = "gpio0";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_sys_irq: sys_irq {
|
||||
+ function = "sys_irq";
|
||||
+ pins = "gpio1";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_serial_led: serial_led {
|
||||
+ pinctrl_serial_led_clk: serial_led_clk {
|
||||
+ function = "serial_led_clk";
|
||||
+ pins = "gpio2";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_serial_led_data: serial_led_data {
|
||||
+ function = "serial_led_data";
|
||||
+ pins = "gpio3";
|
||||
+ };
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_robosw_led_data: robosw_led_data {
|
||||
+ function = "robosw_led_data";
|
||||
+ pins = "gpio4";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_robosw_led_clk: robosw_led_clk {
|
||||
+ function = "robosw_led_clk";
|
||||
+ pins = "gpio5";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_robosw_led0: robosw_led0 {
|
||||
+ function = "robosw_led0";
|
||||
+ pins = "gpio6";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_robosw_led1: robosw_led1 {
|
||||
+ function = "robosw_led1";
|
||||
+ pins = "gpio7";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_inet_led: inet_led {
|
||||
+ function = "inet_led";
|
||||
+ pins = "gpio8";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_spi_cs2: spi_cs2 {
|
||||
+ function = "spi_cs2";
|
||||
+ pins = "gpio9";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_spi_cs3: spi_cs3 {
|
||||
+ function = "spi_cs3";
|
||||
+ pins = "gpio10";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_ntr_pulse: ntr_pulse {
|
||||
+ function = "ntr_pulse";
|
||||
+ pins = "gpio11";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_uart1_scts: uart1_scts {
|
||||
+ function = "uart1_scts";
|
||||
+ pins = "gpio12";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_uart1_srts: uart1_srts {
|
||||
+ function = "uart1_srts";
|
||||
+ pins = "gpio13";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_uart1: uart1 {
|
||||
+ pinctrl_uart1_sdin: uart1_sdin {
|
||||
+ function = "uart1_sdin";
|
||||
+ pins = "gpio14";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_uart1_sdout: uart1_sdout {
|
||||
+ function = "uart1_sdout";
|
||||
+ pins = "gpio15";
|
||||
+ };
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_adsl_spi: adsl_spi {
|
||||
+ pinctrl_adsl_spi_miso: adsl_spi_miso {
|
||||
+ function = "adsl_spi_miso";
|
||||
+ pins = "gpio16";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_adsl_spi_mosi: adsl_spi_mosi {
|
||||
+ function = "adsl_spi_mosi";
|
||||
+ pins = "gpio17";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_adsl_spi_clk: adsl_spi_clk {
|
||||
+ function = "adsl_spi_clk";
|
||||
+ pins = "gpio18";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_adsl_spi_cs: adsl_spi_cs {
|
||||
+ function = "adsl_spi_cs";
|
||||
+ pins = "gpio19";
|
||||
+ };
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_ephy0_led: ephy0_led {
|
||||
+ function = "ephy0_led";
|
||||
+ pins = "gpio20";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_ephy1_led: ephy1_led {
|
||||
+ function = "ephy1_led";
|
||||
+ pins = "gpio21";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_ephy2_led: ephy2_led {
|
||||
+ function = "ephy2_led";
|
||||
+ pins = "gpio22";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_ephy3_led: ephy3_led {
|
||||
+ function = "ephy3_led";
|
||||
+ pins = "gpio23";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_ext_irq0: ext_irq0 {
|
||||
+ function = "ext_irq0";
|
||||
+ pins = "gpio24";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_ext_irq1: ext_irq1 {
|
||||
+ function = "ext_irq1";
|
||||
+ pins = "gpio25";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_ext_irq2: ext_irq2 {
|
||||
+ function = "ext_irq2";
|
||||
+ pins = "gpio26";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_ext_irq3: ext_irq3 {
|
||||
+ function = "ext_irq3";
|
||||
+ pins = "gpio27";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_nand: nand {
|
||||
+ function = "nand";
|
||||
+ group = "nand_grp";
|
||||
+ };
|
||||
+ };
|
||||
+ };
|
@ -1,96 +0,0 @@
|
||||
From ba03ea8ada2ca71c9095d96a1e4085c2c5cf0e69 Mon Sep 17 00:00:00 2001
|
||||
From: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
Date: Wed, 27 Jul 2016 11:36:18 +0200
|
||||
Subject: [PATCH 08/16] Documentation: add BCM6362 pincontroller binding
|
||||
documentation
|
||||
|
||||
Add binding documentation for the pincontrol core found in BCM6362 SoCs.
|
||||
|
||||
Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
---
|
||||
.../bindings/pinctrl/brcm,bcm6362-pinctrl.txt | 79 ++++++++++++++++++++++
|
||||
1 file changed, 79 insertions(+)
|
||||
create mode 100644 Documentation/devicetree/bindings/pinctrl/brcm,bcm6362-pinctrl.txt
|
||||
|
||||
--- /dev/null
|
||||
+++ b/Documentation/devicetree/bindings/pinctrl/brcm,bcm6362-pinctrl.txt
|
||||
@@ -0,0 +1,79 @@
|
||||
+* Broadcom BCM6362 pin controller
|
||||
+
|
||||
+Required properties:
|
||||
+- compatible: Must be "brcm,bcm6362-pinctrl"
|
||||
+- reg: Register specifiers of dirout, dat, led, mode, ctrl, basemode registers.
|
||||
+- reg-names: Must be "dirout", "dat", "led", "mode", "ctrl", "basemode".
|
||||
+- gpio-controller: Identifies this node as a GPIO controller.
|
||||
+- #gpio-cells: Must be <2>.
|
||||
+
|
||||
+Example:
|
||||
+
|
||||
+pinctrl: pin-controller@10000080 {
|
||||
+ compatible = "brcm,bcm6362-pinctrl";
|
||||
+ reg = <0x10000080 0x8>,
|
||||
+ <0x10000088 0x8>,
|
||||
+ <0x10000090 0x4>,
|
||||
+ <0x10000098 0x4>,
|
||||
+ <0x1000009c 0x4>,
|
||||
+ <0x100000b8 0x4>;
|
||||
+ reg-names = "dirout", "dat", "led",
|
||||
+ "mode", "ctrl", "basemode";
|
||||
+
|
||||
+ gpio-controller;
|
||||
+ #gpio-cells = <2>;
|
||||
+};
|
||||
+
|
||||
+Available pins/groups and functions:
|
||||
+
|
||||
+name pins functions
|
||||
+-----------------------------------------------------------
|
||||
+gpio0 0 led, usb_device_led
|
||||
+gpio1 1 led, sys_irq
|
||||
+gpio2 2 led, serial_led_clk
|
||||
+gpio3 3 led, serial_led_data
|
||||
+gpio4 4 led, robosw_led_data
|
||||
+gpio5 5 led, robosw_led_clk
|
||||
+gpio6 6 led, robosw_led0
|
||||
+gpio7 7 led, robosw_led1
|
||||
+gpio8 8 led, inet_led
|
||||
+gpio9 9 led, spi_cs2
|
||||
+gpio10 10 led, spi_cs3
|
||||
+gpio11 11 led, ntr_pulse
|
||||
+gpio12 12 led, uart1_scts
|
||||
+gpio13 13 led, uart1_srts
|
||||
+gpio14 14 led, uart1_sdin
|
||||
+gpio15 15 led, uart1_sdout
|
||||
+gpio16 16 led, adsl_spi_miso
|
||||
+gpio17 17 led, adsl_spi_mosi
|
||||
+gpio18 18 led, adsl_spi_clk
|
||||
+gpio19 19 led, adsl_spi_cs
|
||||
+gpio20 20 led, ephy0_led
|
||||
+gpio21 21 led, ephy1_led
|
||||
+gpio22 22 led, ephy2_led
|
||||
+gpio23 23 led, ephy3_led
|
||||
+gpio24 24 ext_irq0
|
||||
+gpio25 25 ext_irq1
|
||||
+gpio26 26 ext_irq2
|
||||
+gpio27 27 ext_irq3
|
||||
+gpio28 28 -
|
||||
+gpio29 29 -
|
||||
+gpio30 30 -
|
||||
+gpio31 31 -
|
||||
+gpio32 32 wifi
|
||||
+gpio33 33 wifi
|
||||
+gpio34 34 wifi
|
||||
+gpio35 35 wifi
|
||||
+gpio36 36 wifi
|
||||
+gpio37 37 wifi
|
||||
+gpio38 38 wifi
|
||||
+gpio39 39 wifi
|
||||
+gpio40 40 wifi
|
||||
+gpio41 41 wifi
|
||||
+gpio42 42 wifi
|
||||
+gpio43 43 wifi
|
||||
+gpio44 44 wifi
|
||||
+gpio45 45 wifi
|
||||
+gpio46 46 wifi
|
||||
+gpio47 47 wifi
|
||||
+nand_grp 8, 12-23, 27 nand
|
@ -1,75 +1,98 @@
|
||||
From eea6b96701d734095e2f823f3a82d9b063f553ae Mon Sep 17 00:00:00 2001
|
||||
From: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
From 2872fcb5eac02d3a74d696e6350410a9e66281b4 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= <noltari@gmail.com>
|
||||
Date: Fri, 24 Jun 2016 22:17:20 +0200
|
||||
Subject: [PATCH 09/16] pinctrl: add a pincontrol driver for BCM6362
|
||||
Subject: [PATCH 06/12] pinctrl: add a pincontrol driver for BCM6362
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Add a pincotrol driver for BCM6362. BCM6362 allows muxing individual
|
||||
GPIO pins to the LED controller, to be available by the integrated
|
||||
wifi, or other functions. It also supports overlay groups, of which
|
||||
only NAND is documented.
|
||||
|
||||
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
---
|
||||
drivers/pinctrl/bcm63xx/Kconfig | 7 +
|
||||
drivers/pinctrl/bcm63xx/Makefile | 1 +
|
||||
drivers/pinctrl/bcm63xx/pinctrl-bcm6362.c | 692 ++++++++++++++++++++++++++++++
|
||||
3 files changed, 700 insertions(+)
|
||||
create mode 100644 drivers/pinctrl/bcm63xx/pinctrl-bcm6362.c
|
||||
drivers/pinctrl/bcm/Kconfig | 11 +
|
||||
drivers/pinctrl/bcm/Makefile | 1 +
|
||||
drivers/pinctrl/bcm/pinctrl-bcm6362.c | 794 ++++++++++++++++++++++++++
|
||||
3 files changed, 806 insertions(+)
|
||||
create mode 100644 drivers/pinctrl/bcm/pinctrl-bcm6362.c
|
||||
|
||||
--- a/drivers/pinctrl/bcm63xx/Kconfig
|
||||
+++ b/drivers/pinctrl/bcm63xx/Kconfig
|
||||
@@ -16,3 +16,10 @@ config PINCTRL_BCM6358
|
||||
select PINCTRL_BCM63XX
|
||||
select GENERIC_PINCONF
|
||||
select MFD_SYSCON
|
||||
+
|
||||
--- a/drivers/pinctrl/bcm/Kconfig
|
||||
+++ b/drivers/pinctrl/bcm/Kconfig
|
||||
@@ -51,6 +51,17 @@ config PINCTRL_BCM6358
|
||||
help
|
||||
Say Y here to enable the Broadcom BCM6358 GPIO driver.
|
||||
|
||||
+config PINCTRL_BCM6362
|
||||
+ bool "BCM6362 pincontrol driver"
|
||||
+ bool "Broadcom BCM6362 GPIO driver"
|
||||
+ depends on OF_GPIO && (BMIPS_GENERIC || COMPILE_TEST)
|
||||
+ select PINMUX
|
||||
+ select PINCONF
|
||||
+ select PINCTRL_BCM63XX
|
||||
+ select GENERIC_PINCONF
|
||||
--- a/drivers/pinctrl/bcm63xx/Makefile
|
||||
+++ b/drivers/pinctrl/bcm63xx/Makefile
|
||||
@@ -1,3 +1,4 @@
|
||||
obj-$(CONFIG_PINCTRL_BCM63XX) += pinctrl-bcm63xx.o
|
||||
obj-$(CONFIG_PINCTRL_BCM6328) += pinctrl-bcm6328.o
|
||||
obj-$(CONFIG_PINCTRL_BCM6358) += pinctrl-bcm6358.o
|
||||
+obj-$(CONFIG_PINCTRL_BCM6362) += pinctrl-bcm6362.o
|
||||
+ select MFD_SYSCON
|
||||
+ default BMIPS_GENERIC
|
||||
+ help
|
||||
+ Say Y here to enable the Broadcom BCM6362 GPIO driver.
|
||||
+
|
||||
config PINCTRL_IPROC_GPIO
|
||||
bool "Broadcom iProc GPIO (with PINCONF) driver"
|
||||
depends on OF_GPIO && (ARCH_BCM_IPROC || COMPILE_TEST)
|
||||
--- a/drivers/pinctrl/bcm/Makefile
|
||||
+++ b/drivers/pinctrl/bcm/Makefile
|
||||
@@ -5,6 +5,7 @@ obj-$(CONFIG_PINCTRL_BCM281XX) += pinct
|
||||
obj-$(CONFIG_PINCTRL_BCM2835) += pinctrl-bcm2835.o
|
||||
obj-$(CONFIG_PINCTRL_BCM6328) += pinctrl-bcm6328.o
|
||||
obj-$(CONFIG_PINCTRL_BCM6358) += pinctrl-bcm6358.o
|
||||
+obj-$(CONFIG_PINCTRL_BCM6362) += pinctrl-bcm6362.o
|
||||
obj-$(CONFIG_PINCTRL_IPROC_GPIO) += pinctrl-iproc-gpio.o
|
||||
obj-$(CONFIG_PINCTRL_CYGNUS_MUX) += pinctrl-cygnus-mux.o
|
||||
obj-$(CONFIG_PINCTRL_NS) += pinctrl-ns.o
|
||||
--- /dev/null
|
||||
+++ b/drivers/pinctrl/bcm63xx/pinctrl-bcm6362.c
|
||||
@@ -0,0 +1,692 @@
|
||||
+++ b/drivers/pinctrl/bcm/pinctrl-bcm6362.c
|
||||
@@ -0,0 +1,794 @@
|
||||
+// SPDX-License-Identifier: GPL-2.0+
|
||||
+/*
|
||||
+ * This file is subject to the terms and conditions of the GNU General Public
|
||||
+ * License. See the file "COPYING" in the main directory of this archive
|
||||
+ * for more details.
|
||||
+ * Driver for BCM6362 GPIO unit (pinctrl + GPIO)
|
||||
+ *
|
||||
+ * Copyright (C) 2021 Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
+ * Copyright (C) 2016 Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+ */
|
||||
+
|
||||
+#include <linux/kernel.h>
|
||||
+#include <linux/spinlock.h>
|
||||
+#include <linux/bitops.h>
|
||||
+#include <linux/gpio.h>
|
||||
+#include <linux/kernel.h>
|
||||
+#include <linux/mfd/syscon.h>
|
||||
+#include <linux/of.h>
|
||||
+#include <linux/of_gpio.h>
|
||||
+#include <linux/slab.h>
|
||||
+#include <linux/of_irq.h>
|
||||
+#include <linux/platform_device.h>
|
||||
+#include <linux/regmap.h>
|
||||
+
|
||||
+#include <linux/pinctrl/machine.h>
|
||||
+#include <linux/pinctrl/pinconf.h>
|
||||
+#include <linux/pinctrl/pinconf-generic.h>
|
||||
+#include <linux/pinctrl/pinmux.h>
|
||||
+#include <linux/pinctrl/machine.h>
|
||||
+
|
||||
+#include "../core.h"
|
||||
+#include "../pinctrl-utils.h"
|
||||
+
|
||||
+#include "pinctrl-bcm63xx.h"
|
||||
+#define MODULE_NAME "bcm6362-pinctrl"
|
||||
+#define BCM6362_NUM_GPIOS 48
|
||||
+#define BCM6362_NUM_LEDS 24
|
||||
+
|
||||
+#define BCM6362_NGPIO 48
|
||||
+#define BANK_SIZE sizeof(uint32_t)
|
||||
+#define PINS_PER_BANK (BANK_SIZE * BITS_PER_BYTE)
|
||||
+
|
||||
+/* GPIO_BASEMODE register */
|
||||
+#define BASEMODE_NAND BIT(2)
|
||||
+#define BCM6362_DIROUT_REG 0x04
|
||||
+#define BCM6362_DATA_REG 0x0c
|
||||
+#define BCM6362_LED_REG 0x10
|
||||
+#define BCM6362_MODE_REG 0x18
|
||||
+#define BCM6362_CTRL_REG 0x1c
|
||||
+#define BCM6362_BASEMODE_REG 0x38
|
||||
+#define BASEMODE_NAND BIT(2)
|
||||
+
|
||||
+enum bcm6362_pinctrl_reg {
|
||||
+ BCM6362_LEDCTRL,
|
||||
@ -90,22 +113,17 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+ const unsigned num_groups;
|
||||
+
|
||||
+ enum bcm6362_pinctrl_reg reg;
|
||||
+ u32 basemode_mask;
|
||||
+ uint32_t basemode_mask;
|
||||
+};
|
||||
+
|
||||
+struct bcm6362_pinctrl {
|
||||
+ struct pinctrl_dev *pctldev;
|
||||
+ struct pinctrl_desc desc;
|
||||
+ struct device *dev;
|
||||
+ struct regmap *regs;
|
||||
+
|
||||
+ void __iomem *led;
|
||||
+ void __iomem *mode;
|
||||
+ void __iomem *ctrl;
|
||||
+ void __iomem *basemode;
|
||||
+
|
||||
+ /* register access lock */
|
||||
+ spinlock_t lock;
|
||||
+
|
||||
+ struct gpio_chip gpio[2];
|
||||
+ struct pinctrl_dev *pctl_dev;
|
||||
+ struct gpio_chip gpio_chip;
|
||||
+ struct pinctrl_desc pctl_desc;
|
||||
+ struct pinctrl_gpio_range gpio_range;
|
||||
+};
|
||||
+
|
||||
+#define BCM6362_PIN(a, b, mask) \
|
||||
@ -508,6 +526,108 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+ BCM6362_BASEMODE_FUN(nand, BASEMODE_NAND),
|
||||
+};
|
||||
+
|
||||
+static inline unsigned int bcm6362_bank_pin(unsigned int pin)
|
||||
+{
|
||||
+ return pin % PINS_PER_BANK;
|
||||
+}
|
||||
+
|
||||
+static inline unsigned int bcm6362_reg_off(unsigned int reg, unsigned int pin)
|
||||
+{
|
||||
+ return reg - (pin / PINS_PER_BANK) * BANK_SIZE;
|
||||
+}
|
||||
+
|
||||
+static int bcm6362_gpio_direction_input(struct gpio_chip *chip,
|
||||
+ unsigned int pin)
|
||||
+{
|
||||
+ struct bcm6362_pinctrl *pc = gpiochip_get_data(chip);
|
||||
+ unsigned int dirout = bcm6362_reg_off(BCM6362_DIROUT_REG, pin);
|
||||
+ unsigned int bank_pin = bcm6362_bank_pin(pin);
|
||||
+ int ret;
|
||||
+
|
||||
+ /*
|
||||
+ * Check with the pinctrl driver whether this pin is usable as
|
||||
+ * an input GPIO
|
||||
+ */
|
||||
+ ret = pinctrl_gpio_direction_input(chip->base + pin);
|
||||
+ if (ret)
|
||||
+ return ret;
|
||||
+
|
||||
+ regmap_update_bits(pc->regs, dirout, BIT(bank_pin), 0);
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+static int bcm6362_gpio_direction_output(struct gpio_chip *chip,
|
||||
+ unsigned int pin, int value)
|
||||
+{
|
||||
+ struct bcm6362_pinctrl *pc = gpiochip_get_data(chip);
|
||||
+ unsigned int data = bcm6362_reg_off(BCM6362_DATA_REG, pin);
|
||||
+ unsigned int dirout = bcm6362_reg_off(BCM6362_DIROUT_REG, pin);
|
||||
+ unsigned int bank_pin = bcm6362_bank_pin(pin);
|
||||
+ unsigned int val = value ? BIT(bank_pin) : 0;
|
||||
+ int ret;
|
||||
+
|
||||
+ /*
|
||||
+ * Check with the pinctrl driver whether this pin is usable as
|
||||
+ * an output GPIO
|
||||
+ */
|
||||
+ ret = pinctrl_gpio_direction_output(chip->base + pin);
|
||||
+ if (ret)
|
||||
+ return ret;
|
||||
+
|
||||
+ regmap_update_bits(pc->regs, dirout, BIT(bank_pin), BIT(bank_pin));
|
||||
+ regmap_update_bits(pc->regs, data, BIT(bank_pin), val);
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+static int bcm6362_gpio_get(struct gpio_chip *chip, unsigned int pin)
|
||||
+{
|
||||
+ struct bcm6362_pinctrl *pc = gpiochip_get_data(chip);
|
||||
+ unsigned int data = bcm6362_reg_off(BCM6362_DATA_REG, pin);
|
||||
+ unsigned int bank_pin = bcm6362_bank_pin(pin);
|
||||
+ unsigned int val;
|
||||
+
|
||||
+ regmap_read(pc->regs, data, &val);
|
||||
+
|
||||
+ return !!(val & BIT(bank_pin));
|
||||
+}
|
||||
+
|
||||
+static int bcm6362_gpio_get_direction(struct gpio_chip *chip, unsigned int pin)
|
||||
+{
|
||||
+ struct bcm6362_pinctrl *pc = gpiochip_get_data(chip);
|
||||
+ unsigned int dirout = bcm6362_reg_off(BCM6362_DIROUT_REG, pin);
|
||||
+ unsigned int bank_pin = bcm6362_bank_pin(pin);
|
||||
+ unsigned int val;
|
||||
+
|
||||
+ regmap_read(pc->regs, dirout, &val);
|
||||
+
|
||||
+ if (val & BIT(bank_pin))
|
||||
+ return GPIO_LINE_DIRECTION_OUT;
|
||||
+
|
||||
+ return GPIO_LINE_DIRECTION_IN;
|
||||
+}
|
||||
+
|
||||
+static void bcm6362_gpio_set(struct gpio_chip *chip, unsigned int pin,
|
||||
+ int value)
|
||||
+{
|
||||
+ struct bcm6362_pinctrl *pc = gpiochip_get_data(chip);
|
||||
+ unsigned int data = bcm6362_reg_off(BCM6362_DATA_REG, pin);
|
||||
+ unsigned int bank_pin = bcm6362_bank_pin(pin);
|
||||
+ unsigned int val = value ? BIT(bank_pin) : 0;
|
||||
+
|
||||
+ regmap_update_bits(pc->regs, data, BIT(bank_pin), val);
|
||||
+}
|
||||
+
|
||||
+static int bcm6362_gpio_to_irq(struct gpio_chip *chip, unsigned gpio)
|
||||
+{
|
||||
+ char irq_name[7];
|
||||
+
|
||||
+ sprintf(irq_name, "gpio%d", gpio);
|
||||
+
|
||||
+ return of_irq_get_byname(chip->of_node, irq_name);
|
||||
+}
|
||||
+
|
||||
+static int bcm6362_pinctrl_get_group_count(struct pinctrl_dev *pctldev)
|
||||
+{
|
||||
+ return ARRAY_SIZE(bcm6362_groups);
|
||||
@ -551,73 +671,59 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+static void bcm6362_rmw_mux(struct bcm6362_pinctrl *pctl, void __iomem *reg,
|
||||
+ u32 mask, u32 val)
|
||||
+{
|
||||
+ unsigned long flags;
|
||||
+ u32 tmp;
|
||||
+
|
||||
+ spin_lock_irqsave(&pctl->lock, flags);
|
||||
+ tmp = __raw_readl(reg);
|
||||
+ tmp &= ~mask;
|
||||
+ tmp |= val & mask;
|
||||
+ __raw_writel(tmp, reg);
|
||||
+
|
||||
+ spin_unlock_irqrestore(&pctl->lock, flags);
|
||||
+}
|
||||
+
|
||||
+static void bcm6362_set_gpio(struct bcm6362_pinctrl *pctl, unsigned pin)
|
||||
+static void bcm6362_set_gpio(struct bcm6362_pinctrl *pc, unsigned pin)
|
||||
+{
|
||||
+ const struct pinctrl_pin_desc *desc = &bcm6362_pins[pin];
|
||||
+ u32 mask = BIT(pin % 32);
|
||||
+ unsigned int mask = bcm6362_bank_pin(pin);
|
||||
+
|
||||
+ if (desc->drv_data)
|
||||
+ bcm6362_rmw_mux(pctl, pctl->basemode, (u32)desc->drv_data, 0);
|
||||
+ regmap_update_bits(pc->regs, BCM6362_BASEMODE_REG,
|
||||
+ (uint32_t) desc->drv_data, 0);
|
||||
+
|
||||
+ if (pin < 32) {
|
||||
+ if (pin < PINS_PER_BANK) {
|
||||
+ /* base mode 0 => gpio 1 => mux function */
|
||||
+ bcm6362_rmw_mux(pctl, pctl->mode, mask, 0);
|
||||
+ regmap_update_bits(pc->regs, BCM6362_MODE_REG, mask, 0);
|
||||
+
|
||||
+ /* pins 0-23 might be muxed to led */
|
||||
+ if (pin < 24)
|
||||
+ bcm6362_rmw_mux(pctl, pctl->led, mask, 0);
|
||||
+ if (pin < BCM6362_NUM_LEDS)
|
||||
+ regmap_update_bits(pc->regs, BCM6362_LED_REG, mask, 0);
|
||||
+ } else {
|
||||
+ /* ctrl reg 0 => wifi function 1 => gpio */
|
||||
+ bcm6362_rmw_mux(pctl, pctl->ctrl, mask, mask);
|
||||
+ regmap_update_bits(pc->regs, BCM6362_CTRL_REG, mask, mask);
|
||||
+ }
|
||||
+}
|
||||
+
|
||||
+static int bcm6362_pinctrl_set_mux(struct pinctrl_dev *pctldev,
|
||||
+ unsigned selector, unsigned group)
|
||||
+{
|
||||
+ struct bcm6362_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
|
||||
+ const struct bcm6362_pingroup *grp = &bcm6362_groups[group];
|
||||
+ struct bcm6362_pinctrl *pc = pinctrl_dev_get_drvdata(pctldev);
|
||||
+ const struct bcm6362_pingroup *pg = &bcm6362_groups[group];
|
||||
+ const struct bcm6362_function *f = &bcm6362_funcs[selector];
|
||||
+ unsigned i;
|
||||
+ void __iomem *reg;
|
||||
+ u32 val, mask;
|
||||
+ unsigned int reg;
|
||||
+ unsigned int val, mask;
|
||||
+
|
||||
+ for (i = 0; i < grp->num_pins; i++)
|
||||
+ bcm6362_set_gpio(pctl, grp->pins[i]);
|
||||
+ for (i = 0; i < pg->num_pins; i++)
|
||||
+ bcm6362_set_gpio(pc, pg->pins[i]);
|
||||
+
|
||||
+ switch (f->reg) {
|
||||
+ case BCM6362_LEDCTRL:
|
||||
+ reg = pctl->led;
|
||||
+ mask = BIT(grp->pins[0]);
|
||||
+ val = BIT(grp->pins[0]);
|
||||
+ reg = BCM6362_LED_REG;
|
||||
+ mask = BIT(pg->pins[0]);
|
||||
+ val = BIT(pg->pins[0]);
|
||||
+ break;
|
||||
+ case BCM6362_MODE:
|
||||
+ reg = pctl->mode;
|
||||
+ mask = BIT(grp->pins[0]);
|
||||
+ val = BIT(grp->pins[0]);
|
||||
+ reg = BCM6362_MODE_REG;
|
||||
+ mask = BIT(pg->pins[0]);
|
||||
+ val = BIT(pg->pins[0]);
|
||||
+ break;
|
||||
+ case BCM6362_CTRL:
|
||||
+ reg = pctl->ctrl;
|
||||
+ mask = BIT(grp->pins[0]);
|
||||
+ reg = BCM6362_CTRL_REG;
|
||||
+ mask = BIT(pg->pins[0]);
|
||||
+ val = 0;
|
||||
+ break;
|
||||
+ case BCM6362_BASEMODE:
|
||||
+ reg = pctl->basemode;
|
||||
+ reg = BCM6362_BASEMODE_REG;
|
||||
+ mask = f->basemode_mask;
|
||||
+ val = f->basemode_mask;
|
||||
+ break;
|
||||
@ -626,7 +732,7 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+ return -EINVAL;
|
||||
+ }
|
||||
+
|
||||
+ bcm6362_rmw_mux(pctl, reg, mask, val);
|
||||
+ regmap_update_bits(pc->regs, reg, mask, val);
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
@ -635,84 +741,94 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+ struct pinctrl_gpio_range *range,
|
||||
+ unsigned offset)
|
||||
+{
|
||||
+ struct bcm6362_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
|
||||
+ struct bcm6362_pinctrl *pc = pinctrl_dev_get_drvdata(pctldev);
|
||||
+
|
||||
+ /* disable all functions using this pin */
|
||||
+ bcm6362_set_gpio(pctl, offset);
|
||||
+ bcm6362_set_gpio(pc, offset);
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+static struct pinctrl_ops bcm6362_pctl_ops = {
|
||||
+ .get_groups_count = bcm6362_pinctrl_get_group_count,
|
||||
+ .get_group_name = bcm6362_pinctrl_get_group_name,
|
||||
+ .get_group_pins = bcm6362_pinctrl_get_group_pins,
|
||||
+#ifdef CONFIG_OF
|
||||
+ .dt_node_to_map = pinconf_generic_dt_node_to_map_pin,
|
||||
+ .dt_free_map = pinctrl_utils_free_map,
|
||||
+#endif
|
||||
+ .get_groups_count = bcm6362_pinctrl_get_group_count,
|
||||
+ .get_group_name = bcm6362_pinctrl_get_group_name,
|
||||
+ .get_group_pins = bcm6362_pinctrl_get_group_pins,
|
||||
+ .dt_node_to_map = pinconf_generic_dt_node_to_map_pin,
|
||||
+ .dt_free_map = pinctrl_utils_free_map,
|
||||
+};
|
||||
+
|
||||
+static struct pinmux_ops bcm6362_pmx_ops = {
|
||||
+ .get_functions_count = bcm6362_pinctrl_get_func_count,
|
||||
+ .get_function_name = bcm6362_pinctrl_get_func_name,
|
||||
+ .get_function_groups = bcm6362_pinctrl_get_groups,
|
||||
+ .set_mux = bcm6362_pinctrl_set_mux,
|
||||
+ .gpio_request_enable = bcm6362_gpio_request_enable,
|
||||
+ .strict = true,
|
||||
+ .get_functions_count = bcm6362_pinctrl_get_func_count,
|
||||
+ .get_function_name = bcm6362_pinctrl_get_func_name,
|
||||
+ .get_function_groups = bcm6362_pinctrl_get_groups,
|
||||
+ .set_mux = bcm6362_pinctrl_set_mux,
|
||||
+ .gpio_request_enable = bcm6362_gpio_request_enable,
|
||||
+ .strict = true,
|
||||
+};
|
||||
+
|
||||
+static int bcm6362_pinctrl_probe(struct platform_device *pdev)
|
||||
+{
|
||||
+ struct bcm6362_pinctrl *pctl;
|
||||
+ struct resource *res;
|
||||
+ void __iomem *led, *mode, *ctrl, *basemode;
|
||||
+ struct device *dev = &pdev->dev;
|
||||
+ struct device_node *np = dev->of_node;
|
||||
+ struct bcm6362_pinctrl *pc;
|
||||
+ int err;
|
||||
+
|
||||
+ res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "led");
|
||||
+ led = devm_ioremap_resource(&pdev->dev, res);
|
||||
+ if (IS_ERR(led))
|
||||
+ return PTR_ERR(led);
|
||||
+
|
||||
+ res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "mode");
|
||||
+ mode = devm_ioremap_resource(&pdev->dev, res);
|
||||
+ if (IS_ERR(mode))
|
||||
+ return PTR_ERR(mode);
|
||||
+
|
||||
+ res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "ctrl");
|
||||
+ ctrl = devm_ioremap_resource(&pdev->dev, res);
|
||||
+ if (IS_ERR(ctrl))
|
||||
+ return PTR_ERR(ctrl);
|
||||
+
|
||||
+ res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "basemode");
|
||||
+ basemode = devm_ioremap_resource(&pdev->dev, res);
|
||||
+ if (IS_ERR(basemode))
|
||||
+ return PTR_ERR(basemode);
|
||||
+
|
||||
+ pctl = devm_kzalloc(&pdev->dev, sizeof(*pctl), GFP_KERNEL);
|
||||
+ if (!pctl)
|
||||
+ pc = devm_kzalloc(dev, sizeof(*pc), GFP_KERNEL);
|
||||
+ if (!pc)
|
||||
+ return -ENOMEM;
|
||||
+
|
||||
+ spin_lock_init(&pctl->lock);
|
||||
+ platform_set_drvdata(pdev, pc);
|
||||
+ pc->dev = dev;
|
||||
+
|
||||
+ pctl->led = led;
|
||||
+ pctl->mode = mode;
|
||||
+ pctl->ctrl = ctrl;
|
||||
+ pctl->basemode = basemode;
|
||||
+ pc->regs = syscon_node_to_regmap(dev->parent->of_node);
|
||||
+ if (IS_ERR(pc->regs))
|
||||
+ return PTR_ERR(pc->regs);
|
||||
+
|
||||
+ pctl->desc.name = dev_name(&pdev->dev);
|
||||
+ pctl->desc.owner = THIS_MODULE;
|
||||
+ pctl->desc.pctlops = &bcm6362_pctl_ops;
|
||||
+ pctl->desc.pmxops = &bcm6362_pmx_ops;
|
||||
+ pc->gpio_chip.label = MODULE_NAME;
|
||||
+ pc->gpio_chip.owner = THIS_MODULE;
|
||||
+ pc->gpio_chip.request = gpiochip_generic_request;
|
||||
+ pc->gpio_chip.free = gpiochip_generic_free;
|
||||
+ pc->gpio_chip.direction_input = bcm6362_gpio_direction_input;
|
||||
+ pc->gpio_chip.direction_output = bcm6362_gpio_direction_output;
|
||||
+ pc->gpio_chip.get_direction = bcm6362_gpio_get_direction;
|
||||
+ pc->gpio_chip.get = bcm6362_gpio_get;
|
||||
+ pc->gpio_chip.set = bcm6362_gpio_set;
|
||||
+ pc->gpio_chip.set_config = gpiochip_generic_config;
|
||||
+ pc->gpio_chip.base = -1;
|
||||
+ pc->gpio_chip.ngpio = BCM6362_NUM_GPIOS;
|
||||
+ pc->gpio_chip.can_sleep = false;
|
||||
+ pc->gpio_chip.parent = dev;
|
||||
+ pc->gpio_chip.of_node = np;
|
||||
+
|
||||
+ pctl->desc.npins = ARRAY_SIZE(bcm6362_pins);
|
||||
+ pctl->desc.pins = bcm6362_pins;
|
||||
+ if (of_get_property(np, "interrupt-names", NULL))
|
||||
+ pc->gpio_chip.to_irq = bcm6362_gpio_to_irq;
|
||||
+
|
||||
+ platform_set_drvdata(pdev, pctl);
|
||||
+ err = gpiochip_add_data(&pc->gpio_chip, pc);
|
||||
+ if (err) {
|
||||
+ dev_err(dev, "could not add GPIO chip\n");
|
||||
+ return err;
|
||||
+ }
|
||||
+
|
||||
+ pctl->pctldev = bcm63xx_pinctrl_register(pdev, &pctl->desc, pctl,
|
||||
+ pctl->gpio, BCM6362_NGPIO);
|
||||
+ if (IS_ERR(pctl->pctldev))
|
||||
+ return PTR_ERR(pctl->pctldev);
|
||||
+ pc->pctl_desc.name = MODULE_NAME,
|
||||
+ pc->pctl_desc.pins = bcm6362_pins,
|
||||
+ pc->pctl_desc.npins = ARRAY_SIZE(bcm6362_pins),
|
||||
+ pc->pctl_desc.pctlops = &bcm6362_pctl_ops,
|
||||
+ pc->pctl_desc.pmxops = &bcm6362_pmx_ops,
|
||||
+ pc->pctl_desc.owner = THIS_MODULE,
|
||||
+
|
||||
+ pc->pctl_dev = devm_pinctrl_register(dev, &pc->pctl_desc, pc);
|
||||
+ if (IS_ERR(pc->pctl_dev)) {
|
||||
+ gpiochip_remove(&pc->gpio_chip);
|
||||
+ return PTR_ERR(pc->pctl_dev);
|
||||
+ }
|
||||
+
|
||||
+ pc->gpio_range.name = MODULE_NAME;
|
||||
+ pc->gpio_range.npins = BCM6362_NUM_GPIOS;
|
||||
+ pc->gpio_range.base = pc->gpio_chip.base;
|
||||
+ pc->gpio_range.gc = &pc->gpio_chip;
|
||||
+ pinctrl_add_gpio_range(pc->pctl_dev, &pc->gpio_range);
|
||||
+
|
||||
+ dev_info(dev, "registered\n");
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
@ -725,7 +841,7 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+static struct platform_driver bcm6362_pinctrl_driver = {
|
||||
+ .probe = bcm6362_pinctrl_probe,
|
||||
+ .driver = {
|
||||
+ .name = "bcm6362-pinctrl",
|
||||
+ .name = MODULE_NAME,
|
||||
+ .of_match_table = bcm6362_pinctrl_match,
|
||||
+ },
|
||||
+};
|
@ -0,0 +1,276 @@
|
||||
From 12f1d5123ee405266596eaea238d9810e0628d18 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= <noltari@gmail.com>
|
||||
Date: Wed, 27 Jul 2016 11:36:51 +0200
|
||||
Subject: [PATCH 07/12] Documentation: add BCM6368 pincontroller binding
|
||||
documentation
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Add binding documentation for the pincontrol core found in BCM6368 SoCs.
|
||||
|
||||
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
---
|
||||
.../pinctrl/brcm,bcm6368-pinctrl.yaml | 255 ++++++++++++++++++
|
||||
1 file changed, 255 insertions(+)
|
||||
create mode 100644 Documentation/devicetree/bindings/pinctrl/brcm,bcm6368-pinctrl.yaml
|
||||
|
||||
--- /dev/null
|
||||
+++ b/Documentation/devicetree/bindings/pinctrl/brcm,bcm6368-pinctrl.yaml
|
||||
@@ -0,0 +1,255 @@
|
||||
+# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
|
||||
+%YAML 1.2
|
||||
+---
|
||||
+$id: http://devicetree.org/schemas/pinctrl/brcm,bcm6368-pinctrl.yaml#
|
||||
+$schema: http://devicetree.org/meta-schemas/core.yaml#
|
||||
+
|
||||
+title: Broadcom BCM6368 pin controller
|
||||
+
|
||||
+maintainers:
|
||||
+ - Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
+ - Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+
|
||||
+description: |+
|
||||
+ The pin controller node should be the child of a syscon node.
|
||||
+
|
||||
+ Refer to the the bindings described in
|
||||
+ Documentation/devicetree/bindings/mfd/syscon.yaml
|
||||
+
|
||||
+properties:
|
||||
+ compatible:
|
||||
+ const: brcm,bcm6368-pinctrl
|
||||
+
|
||||
+ gpio-controller: true
|
||||
+
|
||||
+ '#gpio-cells':
|
||||
+ description:
|
||||
+ Specifies the pin number and flags, as defined in
|
||||
+ include/dt-bindings/gpio/gpio.h
|
||||
+ const: 2
|
||||
+
|
||||
+ interrupts-extended:
|
||||
+ description:
|
||||
+ One interrupt per each of the 6 GPIO ports supported by the controller,
|
||||
+ sorted by port number ascending order.
|
||||
+ minItems: 6
|
||||
+ maxItems: 6
|
||||
+
|
||||
+patternProperties:
|
||||
+ '^.*$':
|
||||
+ if:
|
||||
+ type: object
|
||||
+ then:
|
||||
+ properties:
|
||||
+ function:
|
||||
+ $ref: "/schemas/types.yaml#/definitions/string"
|
||||
+ enum: [ analog_afe_0, analog_afe_1, sys_irq, serial_led_data,
|
||||
+ serial_led_clk, inet_led, ephy0_led, ephy1_led, ephy2_led,
|
||||
+ ephy3_led, robosw_led_data, robosw_led_clk, robosw_led0,
|
||||
+ robosw_led1, usb_device_led, pci_req1, pci_gnt1, pci_intb,
|
||||
+ pci_req0, pci_gnt0, pcmcia_cd1, pcmcia_cd2, pcmcia_vs1,
|
||||
+ pcmcia_vs2, ebi_cs2, ebi_cs3, spi_cs2, spi_cs3, spi_cs4,
|
||||
+ spi_cs5, uart1 ]
|
||||
+
|
||||
+ pins:
|
||||
+ $ref: "/schemas/types.yaml#/definitions/string"
|
||||
+ enum: [ gpio0, gpio1, gpio2, gpio3, gpio4, gpio5, gpio6, gpio7,
|
||||
+ gpio8, gpio9, gpio10, gpio11, gpio12, gpio13, gpio14,
|
||||
+ gpio16, gpio17, gpio18, gpio19, gpio20, gpio22, gpio23,
|
||||
+ gpio24, gpio25, gpio26, gpio27, gpio28, gpio29, gpio30,
|
||||
+ gpio31, uart1_grp ]
|
||||
+
|
||||
+required:
|
||||
+ - compatible
|
||||
+ - gpio-controller
|
||||
+ - '#gpio-cells'
|
||||
+
|
||||
+additionalProperties: false
|
||||
+
|
||||
+examples:
|
||||
+ - |
|
||||
+ gpio@10000080 {
|
||||
+ compatible = "syscon", "simple-mfd";
|
||||
+ reg = <0x10000080 0x80>;
|
||||
+
|
||||
+ pinctrl: pinctrl {
|
||||
+ compatible = "brcm,bcm6368-pinctrl";
|
||||
+
|
||||
+ gpio-controller;
|
||||
+ #gpio-cells = <2>;
|
||||
+
|
||||
+ interrupts-extended = <&ext_intc1 0 0>,
|
||||
+ <&ext_intc1 1 0>,
|
||||
+ <&ext_intc0 0 0>,
|
||||
+ <&ext_intc0 1 0>,
|
||||
+ <&ext_intc0 2 0>,
|
||||
+ <&ext_intc0 3 0>;
|
||||
+ interrupt-names = "gpio32",
|
||||
+ "gpio33",
|
||||
+ "gpio34",
|
||||
+ "gpio35",
|
||||
+ "gpio36",
|
||||
+ "gpio37";
|
||||
+
|
||||
+ pinctrl_analog_afe_0: analog_afe_0 {
|
||||
+ function = "analog_afe_0";
|
||||
+ pins = "gpio0";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_analog_afe_1: analog_afe_1 {
|
||||
+ function = "analog_afe_1";
|
||||
+ pins = "gpio1";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_sys_irq: sys_irq {
|
||||
+ function = "sys_irq";
|
||||
+ pins = "gpio2";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_serial_led: serial_led {
|
||||
+ pinctrl_serial_led_data: serial_led_data {
|
||||
+ function = "serial_led_data";
|
||||
+ pins = "gpio3";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_serial_led_clk: serial_led_clk {
|
||||
+ function = "serial_led_clk";
|
||||
+ pins = "gpio4";
|
||||
+ };
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_inet_led: inet_led {
|
||||
+ function = "inet_led";
|
||||
+ pins = "gpio5";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_ephy0_led: ephy0_led {
|
||||
+ function = "ephy0_led";
|
||||
+ pins = "gpio6";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_ephy1_led: ephy1_led {
|
||||
+ function = "ephy1_led";
|
||||
+ pins = "gpio7";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_ephy2_led: ephy2_led {
|
||||
+ function = "ephy2_led";
|
||||
+ pins = "gpio8";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_ephy3_led: ephy3_led {
|
||||
+ function = "ephy3_led";
|
||||
+ pins = "gpio9";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_robosw_led_data: robosw_led_data {
|
||||
+ function = "robosw_led_data";
|
||||
+ pins = "gpio10";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_robosw_led_clk: robosw_led_clk {
|
||||
+ function = "robosw_led_clk";
|
||||
+ pins = "gpio11";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_robosw_led0: robosw_led0 {
|
||||
+ function = "robosw_led0";
|
||||
+ pins = "gpio12";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_robosw_led1: robosw_led1 {
|
||||
+ function = "robosw_led1";
|
||||
+ pins = "gpio13";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_usb_device_led: usb_device_led {
|
||||
+ function = "usb_device_led";
|
||||
+ pins = "gpio14";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_pci: pci {
|
||||
+ pinctrl_pci_req1: pci_req1 {
|
||||
+ function = "pci_req1";
|
||||
+ pins = "gpio16";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_pci_gnt1: pci_gnt1 {
|
||||
+ function = "pci_gnt1";
|
||||
+ pins = "gpio17";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_pci_intb: pci_intb {
|
||||
+ function = "pci_intb";
|
||||
+ pins = "gpio18";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_pci_req0: pci_req0 {
|
||||
+ function = "pci_req0";
|
||||
+ pins = "gpio19";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_pci_gnt0: pci_gnt0 {
|
||||
+ function = "pci_gnt0";
|
||||
+ pins = "gpio20";
|
||||
+ };
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_pcmcia: pcmcia {
|
||||
+ pinctrl_pcmcia_cd1: pcmcia_cd1 {
|
||||
+ function = "pcmcia_cd1";
|
||||
+ pins = "gpio22";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_pcmcia_cd2: pcmcia_cd2 {
|
||||
+ function = "pcmcia_cd2";
|
||||
+ pins = "gpio23";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_pcmcia_vs1: pcmcia_vs1 {
|
||||
+ function = "pcmcia_vs1";
|
||||
+ pins = "gpio24";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_pcmcia_vs2: pcmcia_vs2 {
|
||||
+ function = "pcmcia_vs2";
|
||||
+ pins = "gpio25";
|
||||
+ };
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_ebi_cs2: ebi_cs2 {
|
||||
+ function = "ebi_cs2";
|
||||
+ pins = "gpio26";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_ebi_cs3: ebi_cs3 {
|
||||
+ function = "ebi_cs3";
|
||||
+ pins = "gpio27";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_spi_cs2: spi_cs2 {
|
||||
+ function = "spi_cs2";
|
||||
+ pins = "gpio28";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_spi_cs3: spi_cs3 {
|
||||
+ function = "spi_cs3";
|
||||
+ pins = "gpio29";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_spi_cs4: spi_cs4 {
|
||||
+ function = "spi_cs4";
|
||||
+ pins = "gpio30";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_spi_cs5: spi_cs5 {
|
||||
+ function = "spi_cs5";
|
||||
+ pins = "gpio31";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_uart1: uart1 {
|
||||
+ function = "uart1";
|
||||
+ group = "uart1_grp";
|
||||
+ };
|
||||
+ };
|
||||
+ };
|
@ -1,84 +0,0 @@
|
||||
From 30594cf9bfff176a9e4b14c50dcd8b9d0cc3edec Mon Sep 17 00:00:00 2001
|
||||
From: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
Date: Wed, 27 Jul 2016 11:36:51 +0200
|
||||
Subject: [PATCH 10/16] Documentation: add BCM6368 pincontroller binding
|
||||
documentation
|
||||
|
||||
Add binding documentation for the pincontrol core found in BCM6368 SoCs.
|
||||
|
||||
Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
---
|
||||
.../bindings/pinctrl/brcm,bcm6368-pinctrl.txt | 67 ++++++++++++++++++++++
|
||||
1 file changed, 67 insertions(+)
|
||||
create mode 100644 Documentation/devicetree/bindings/pinctrl/brcm,bcm6368-pinctrl.txt
|
||||
|
||||
--- /dev/null
|
||||
+++ b/Documentation/devicetree/bindings/pinctrl/brcm,bcm6368-pinctrl.txt
|
||||
@@ -0,0 +1,67 @@
|
||||
+* Broadcom BCM6368 pin controller
|
||||
+
|
||||
+Required properties:
|
||||
+- compatible: Must be "brcm,bcm6368-pinctrl".
|
||||
+- reg: Register specifiers of dirout, dat, mode registers.
|
||||
+- reg-names: Must be "dirout", "dat", "mode".
|
||||
+- brcm,gpiobasemode: Phandle to the gpio basemode register.
|
||||
+- gpio-controller: Identifies this node as a GPIO controller.
|
||||
+- #gpio-cells: Must be <2>.
|
||||
+
|
||||
+Example:
|
||||
+
|
||||
+pinctrl: pin-controller@10000080 {
|
||||
+ compatible = "brcm,bcm6368-pinctrl";
|
||||
+ reg = <0x10000080 0x08>,
|
||||
+ <0x10000088 0x08>,
|
||||
+ <0x10000098 0x04>;
|
||||
+ reg-names = "dirout", "dat", "mode";
|
||||
+ brcm,gpiobasemode = <&gpiobasemode>;
|
||||
+
|
||||
+ gpio-controller;
|
||||
+ #gpio-cells = <2>;
|
||||
+};
|
||||
+
|
||||
+gpiobasemode: syscon@100000b8 {
|
||||
+ compatible = "brcm,bcm6368-gpiobasemode", "syscon";
|
||||
+ reg = <0x100000b8 4>;
|
||||
+ native-endian;
|
||||
+};
|
||||
+
|
||||
+Available pins/groups and functions:
|
||||
+
|
||||
+name pins functions
|
||||
+-----------------------------------------------------------
|
||||
+gpio0 0 analog_afe0
|
||||
+gpio1 1 analog_afe1
|
||||
+gpio2 2 sys_irq
|
||||
+gpio3 3 serial_led_data
|
||||
+gpio4 4 serial_led_clk
|
||||
+gpio5 5 inet_led
|
||||
+gpio6 6 ephy0_led
|
||||
+gpio7 7 ephy1_led
|
||||
+gpio8 8 ephy2_led
|
||||
+gpio9 9 ephy3_led
|
||||
+gpio10 10 robosw_led_data
|
||||
+gpio11 11 robosw_led_clk
|
||||
+gpio12 12 robosw_led0
|
||||
+gpio13 13 robosw_led1
|
||||
+gpio14 14 usb_device_led
|
||||
+gpio15 15 -
|
||||
+gpio16 16 pci_req1
|
||||
+gpio17 17 pci_gnt1
|
||||
+gpio18 18 pci_intb
|
||||
+gpio19 19 pci_req0
|
||||
+gpio20 20 pci_gnt0
|
||||
+gpio21 21 -
|
||||
+gpio22 22 pcmcia_cd1
|
||||
+gpio23 23 pcmcia_cd2
|
||||
+gpio24 24 pcmcia_vs1
|
||||
+gpio25 25 pcmcia_vs2
|
||||
+gpio26 26 ebi_cs2
|
||||
+gpio27 27 ebi_cs3
|
||||
+gpio28 28 spi_cs2
|
||||
+gpio29 29 spi_cs3
|
||||
+gpio30 30 spi_cs4
|
||||
+gpio31 31 spi_cs5
|
||||
+uart1_grp 30-33 uart1
|
@ -1,77 +1,95 @@
|
||||
From 90be3cb4f1a45b8be4a4ec264cd66c2f8e893fcb Mon Sep 17 00:00:00 2001
|
||||
From: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
From a212dcb2f04ae42f35ec11122a2532b1bcf8a94f Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= <noltari@gmail.com>
|
||||
Date: Fri, 24 Jun 2016 22:18:25 +0200
|
||||
Subject: [PATCH 11/16] pinctrl: add a pincontrol driver for BCM6368
|
||||
Subject: [PATCH 08/12] pinctrl: add a pincontrol driver for BCM6368
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Add a pincontrol driver for BCM6368. BCM6368 allows muxing the first 32
|
||||
GPIOs onto alternative functions. Not all are documented.
|
||||
|
||||
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
---
|
||||
drivers/pinctrl/bcm63xx/Kconfig | 15 +
|
||||
drivers/pinctrl/bcm63xx/Makefile | 1 +
|
||||
drivers/pinctrl/bcm63xx/pinctrl-bcm6368.c | 573 ++++++++++++++++++++++++++++++
|
||||
3 files changed, 589 insertions(+)
|
||||
create mode 100644 drivers/pinctrl/bcm63xx/pinctrl-bcm6368.c
|
||||
drivers/pinctrl/bcm/Kconfig | 11 +
|
||||
drivers/pinctrl/bcm/Makefile | 1 +
|
||||
drivers/pinctrl/bcm/pinctrl-bcm6368.c | 679 ++++++++++++++++++++++++++
|
||||
3 files changed, 691 insertions(+)
|
||||
create mode 100644 drivers/pinctrl/bcm/pinctrl-bcm6368.c
|
||||
|
||||
--- a/drivers/pinctrl/bcm63xx/Kconfig
|
||||
+++ b/drivers/pinctrl/bcm63xx/Kconfig
|
||||
@@ -23,3 +23,11 @@ config PINCTRL_BCM6362
|
||||
select PINCONF
|
||||
select PINCTRL_BCM63XX
|
||||
select GENERIC_PINCONF
|
||||
+
|
||||
--- a/drivers/pinctrl/bcm/Kconfig
|
||||
+++ b/drivers/pinctrl/bcm/Kconfig
|
||||
@@ -62,6 +62,17 @@ config PINCTRL_BCM6362
|
||||
help
|
||||
Say Y here to enable the Broadcom BCM6362 GPIO driver.
|
||||
|
||||
+config PINCTRL_BCM6368
|
||||
+ bool "BCM6368 pincontrol driver"
|
||||
+ bool "Broadcom BCM6368 GPIO driver"
|
||||
+ depends on OF_GPIO && (BMIPS_GENERIC || COMPILE_TEST)
|
||||
+ select PINMUX
|
||||
+ select PINCONF
|
||||
+ select PINCTRL_BCM63XX
|
||||
+ select GENERIC_PINCONF
|
||||
+ select MFD_SYSCON
|
||||
--- a/drivers/pinctrl/bcm63xx/Makefile
|
||||
+++ b/drivers/pinctrl/bcm63xx/Makefile
|
||||
@@ -2,3 +2,4 @@ obj-$(CONFIG_PINCTRL_BCM63XX) += pinctrl
|
||||
obj-$(CONFIG_PINCTRL_BCM6328) += pinctrl-bcm6328.o
|
||||
obj-$(CONFIG_PINCTRL_BCM6358) += pinctrl-bcm6358.o
|
||||
obj-$(CONFIG_PINCTRL_BCM6362) += pinctrl-bcm6362.o
|
||||
+obj-$(CONFIG_PINCTRL_BCM6368) += pinctrl-bcm6368.o
|
||||
+ default BMIPS_GENERIC
|
||||
+ help
|
||||
+ Say Y here to enable the Broadcom BCM6368 GPIO driver.
|
||||
+
|
||||
config PINCTRL_IPROC_GPIO
|
||||
bool "Broadcom iProc GPIO (with PINCONF) driver"
|
||||
depends on OF_GPIO && (ARCH_BCM_IPROC || COMPILE_TEST)
|
||||
--- a/drivers/pinctrl/bcm/Makefile
|
||||
+++ b/drivers/pinctrl/bcm/Makefile
|
||||
@@ -6,6 +6,7 @@ obj-$(CONFIG_PINCTRL_BCM2835) += pinctr
|
||||
obj-$(CONFIG_PINCTRL_BCM6328) += pinctrl-bcm6328.o
|
||||
obj-$(CONFIG_PINCTRL_BCM6358) += pinctrl-bcm6358.o
|
||||
obj-$(CONFIG_PINCTRL_BCM6362) += pinctrl-bcm6362.o
|
||||
+obj-$(CONFIG_PINCTRL_BCM6368) += pinctrl-bcm6368.o
|
||||
obj-$(CONFIG_PINCTRL_IPROC_GPIO) += pinctrl-iproc-gpio.o
|
||||
obj-$(CONFIG_PINCTRL_CYGNUS_MUX) += pinctrl-cygnus-mux.o
|
||||
obj-$(CONFIG_PINCTRL_NS) += pinctrl-ns.o
|
||||
--- /dev/null
|
||||
+++ b/drivers/pinctrl/bcm63xx/pinctrl-bcm6368.c
|
||||
@@ -0,0 +1,570 @@
|
||||
+++ b/drivers/pinctrl/bcm/pinctrl-bcm6368.c
|
||||
@@ -0,0 +1,679 @@
|
||||
+// SPDX-License-Identifier: GPL-2.0+
|
||||
+/*
|
||||
+ * This file is subject to the terms and conditions of the GNU General Public
|
||||
+ * License. See the file "COPYING" in the main directory of this archive
|
||||
+ * for more details.
|
||||
+ * Driver for BCM6368 GPIO unit (pinctrl + GPIO)
|
||||
+ *
|
||||
+ * Copyright (C) 2021 Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
+ * Copyright (C) 2016 Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+ */
|
||||
+
|
||||
+#include <linux/bitops.h>
|
||||
+#include <linux/kernel.h>
|
||||
+#include <linux/gpio.h>
|
||||
+#include <linux/kernel.h>
|
||||
+#include <linux/mfd/syscon.h>
|
||||
+#include <linux/of.h>
|
||||
+#include <linux/of_address.h>
|
||||
+#include <linux/of_gpio.h>
|
||||
+#include <linux/of_irq.h>
|
||||
+#include <linux/platform_device.h>
|
||||
+#include <linux/regmap.h>
|
||||
+
|
||||
+#include <linux/pinctrl/machine.h>
|
||||
+#include <linux/pinctrl/pinconf.h>
|
||||
+#include <linux/pinctrl/pinconf-generic.h>
|
||||
+#include <linux/pinctrl/pinmux.h>
|
||||
+#include <linux/pinctrl/machine.h>
|
||||
+#include <linux/platform_device.h>
|
||||
+#include <linux/regmap.h>
|
||||
+#include <linux/slab.h>
|
||||
+#include <linux/spinlock.h>
|
||||
+
|
||||
+#include "../core.h"
|
||||
+#include "../pinctrl-utils.h"
|
||||
+
|
||||
+#include "pinctrl-bcm63xx.h"
|
||||
+#define MODULE_NAME "bcm6368-pinctrl"
|
||||
+#define BCM6368_NUM_GPIOS 38
|
||||
+
|
||||
+#define BCM6368_NGPIO 38
|
||||
+#define BANK_SIZE sizeof(uint32_t)
|
||||
+#define PINS_PER_BANK (BANK_SIZE * BITS_PER_BYTE)
|
||||
+
|
||||
+#define BCM6368_BASEMODE_MASK 0x7
|
||||
+#define BCM6368_BASEMODE_GPIO 0x0
|
||||
+#define BCM6368_BASEMODE_UART1 0x1
|
||||
+#define BCM6368_DIROUT_REG 0x04
|
||||
+#define BCM6368_DATA_REG 0x0c
|
||||
+#define BCM6368_MODE_REG 0x18
|
||||
+#define BCM6368_BASEMODE_REG 0x38
|
||||
+#define BCM6368_BASEMODE_MASK 0x7
|
||||
+#define BCM6368_BASEMODE_GPIO 0x0
|
||||
+#define BCM6368_BASEMODE_UART1 0x1
|
||||
+
|
||||
+struct bcm6368_pingroup {
|
||||
+ const char *name;
|
||||
@ -89,16 +107,14 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+};
|
||||
+
|
||||
+struct bcm6368_pinctrl {
|
||||
+ struct pinctrl_dev *pctldev;
|
||||
+ struct pinctrl_desc desc;
|
||||
+ struct device *dev;
|
||||
+ struct regmap *regs;
|
||||
+ struct regmap_field *overlays;
|
||||
+
|
||||
+ void __iomem *mode;
|
||||
+ struct regmap_field *overlay;
|
||||
+
|
||||
+ /* register access lock */
|
||||
+ spinlock_t lock;
|
||||
+
|
||||
+ struct gpio_chip gpio[2];
|
||||
+ struct pinctrl_dev *pctl_dev;
|
||||
+ struct gpio_chip gpio_chip;
|
||||
+ struct pinctrl_desc pctl_desc;
|
||||
+ struct pinctrl_gpio_range gpio_range;
|
||||
+};
|
||||
+
|
||||
+#define BCM6368_BASEMODE_PIN(a, b) \
|
||||
@ -401,6 +417,108 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+ BCM6368_BASEMODE_FUN(uart1, UART1, 0x6),
|
||||
+};
|
||||
+
|
||||
+static inline unsigned int bcm6368_bank_pin(unsigned int pin)
|
||||
+{
|
||||
+ return pin % PINS_PER_BANK;
|
||||
+}
|
||||
+
|
||||
+static inline unsigned int bcm6368_reg_off(unsigned int reg, unsigned int pin)
|
||||
+{
|
||||
+ return reg - (pin / PINS_PER_BANK) * BANK_SIZE;
|
||||
+}
|
||||
+
|
||||
+static int bcm6368_gpio_direction_input(struct gpio_chip *chip,
|
||||
+ unsigned int pin)
|
||||
+{
|
||||
+ struct bcm6368_pinctrl *pc = gpiochip_get_data(chip);
|
||||
+ unsigned int dirout = bcm6368_reg_off(BCM6368_DIROUT_REG, pin);
|
||||
+ unsigned int bank_pin = bcm6368_bank_pin(pin);
|
||||
+ int ret;
|
||||
+
|
||||
+ /*
|
||||
+ * Check with the pinctrl driver whether this pin is usable as
|
||||
+ * an input GPIO
|
||||
+ */
|
||||
+ ret = pinctrl_gpio_direction_input(chip->base + pin);
|
||||
+ if (ret)
|
||||
+ return ret;
|
||||
+
|
||||
+ regmap_update_bits(pc->regs, dirout, BIT(bank_pin), 0);
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+static int bcm6368_gpio_direction_output(struct gpio_chip *chip,
|
||||
+ unsigned int pin, int value)
|
||||
+{
|
||||
+ struct bcm6368_pinctrl *pc = gpiochip_get_data(chip);
|
||||
+ unsigned int data = bcm6368_reg_off(BCM6368_DATA_REG, pin);
|
||||
+ unsigned int dirout = bcm6368_reg_off(BCM6368_DIROUT_REG, pin);
|
||||
+ unsigned int bank_pin = bcm6368_bank_pin(pin);
|
||||
+ unsigned int val = value ? BIT(bank_pin) : 0;
|
||||
+ int ret;
|
||||
+
|
||||
+ /*
|
||||
+ * Check with the pinctrl driver whether this pin is usable as
|
||||
+ * an output GPIO
|
||||
+ */
|
||||
+ ret = pinctrl_gpio_direction_output(chip->base + pin);
|
||||
+ if (ret)
|
||||
+ return ret;
|
||||
+
|
||||
+ regmap_update_bits(pc->regs, dirout, BIT(bank_pin), BIT(bank_pin));
|
||||
+ regmap_update_bits(pc->regs, data, BIT(bank_pin), val);
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+static int bcm6368_gpio_get(struct gpio_chip *chip, unsigned int pin)
|
||||
+{
|
||||
+ struct bcm6368_pinctrl *pc = gpiochip_get_data(chip);
|
||||
+ unsigned int data = bcm6368_reg_off(BCM6368_DATA_REG, pin);
|
||||
+ unsigned int bank_pin = bcm6368_bank_pin(pin);
|
||||
+ unsigned int val;
|
||||
+
|
||||
+ regmap_read(pc->regs, data, &val);
|
||||
+
|
||||
+ return !!(val & BIT(bank_pin));
|
||||
+}
|
||||
+
|
||||
+static int bcm6368_gpio_get_direction(struct gpio_chip *chip, unsigned int pin)
|
||||
+{
|
||||
+ struct bcm6368_pinctrl *pc = gpiochip_get_data(chip);
|
||||
+ unsigned int dirout = bcm6368_reg_off(BCM6368_DIROUT_REG, pin);
|
||||
+ unsigned int bank_pin = bcm6368_bank_pin(pin);
|
||||
+ unsigned int val;
|
||||
+
|
||||
+ regmap_read(pc->regs, dirout, &val);
|
||||
+
|
||||
+ if (val & BIT(bank_pin))
|
||||
+ return GPIO_LINE_DIRECTION_OUT;
|
||||
+
|
||||
+ return GPIO_LINE_DIRECTION_IN;
|
||||
+}
|
||||
+
|
||||
+static void bcm6368_gpio_set(struct gpio_chip *chip, unsigned int pin,
|
||||
+ int value)
|
||||
+{
|
||||
+ struct bcm6368_pinctrl *pc = gpiochip_get_data(chip);
|
||||
+ unsigned int data = bcm6368_reg_off(BCM6368_DATA_REG, pin);
|
||||
+ unsigned int bank_pin = bcm6368_bank_pin(pin);
|
||||
+ unsigned int val = value ? BIT(bank_pin) : 0;
|
||||
+
|
||||
+ regmap_update_bits(pc->regs, data, BIT(bank_pin), val);
|
||||
+}
|
||||
+
|
||||
+static int bcm6368_gpio_to_irq(struct gpio_chip *chip, unsigned gpio)
|
||||
+{
|
||||
+ char irq_name[7];
|
||||
+
|
||||
+ sprintf(irq_name, "gpio%d", gpio);
|
||||
+
|
||||
+ return of_irq_get_byname(chip->of_node, irq_name);
|
||||
+}
|
||||
+
|
||||
+static int bcm6368_pinctrl_get_group_count(struct pinctrl_dev *pctldev)
|
||||
+{
|
||||
+ return ARRAY_SIZE(bcm6368_groups);
|
||||
@ -444,57 +562,44 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+static void bcm6368_rmw_mux(struct bcm6368_pinctrl *pctl, void __iomem *reg,
|
||||
+ u32 mask, u32 val)
|
||||
+{
|
||||
+ u32 tmp;
|
||||
+
|
||||
+ tmp = __raw_readl(reg);
|
||||
+ tmp &= ~mask;
|
||||
+ tmp |= (val & mask);
|
||||
+ __raw_writel(tmp, reg);
|
||||
+}
|
||||
+
|
||||
+static int bcm6368_pinctrl_set_mux(struct pinctrl_dev *pctldev,
|
||||
+ unsigned selector, unsigned group)
|
||||
+{
|
||||
+ struct bcm6368_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
|
||||
+ const struct bcm6368_pingroup *grp = &bcm6368_groups[group];
|
||||
+ struct bcm6368_pinctrl *pc = pinctrl_dev_get_drvdata(pctldev);
|
||||
+ const struct bcm6368_pingroup *pg = &bcm6368_groups[group];
|
||||
+ const struct bcm6368_function *fun = &bcm6368_funcs[selector];
|
||||
+ unsigned long flags;
|
||||
+ int i, pin;
|
||||
+
|
||||
+ spin_lock_irqsave(&pctl->lock, flags);
|
||||
+ if (fun->basemode) {
|
||||
+ u32 mask = 0;
|
||||
+ unsigned int mask = 0;
|
||||
+
|
||||
+ for (i = 0; i < grp->num_pins; i++) {
|
||||
+ pin = grp->pins[i];
|
||||
+ if (pin < 32)
|
||||
+ for (i = 0; i < pg->num_pins; i++) {
|
||||
+ pin = pg->pins[i];
|
||||
+ if (pin < PINS_PER_BANK)
|
||||
+ mask |= BIT(pin);
|
||||
+ }
|
||||
+
|
||||
+ bcm6368_rmw_mux(pctl, pctl->mode, mask, 0);
|
||||
+ regmap_field_write(pctl->overlay, fun->basemode);
|
||||
+ regmap_update_bits(pc->regs, BCM6368_MODE_REG, mask, 0);
|
||||
+ regmap_field_write(pc->overlays, fun->basemode);
|
||||
+ } else {
|
||||
+ pin = grp->pins[0];
|
||||
+ pin = pg->pins[0];
|
||||
+
|
||||
+ if (bcm6368_pins[pin].drv_data)
|
||||
+ regmap_field_write(pctl->overlay,
|
||||
+ regmap_field_write(pc->overlays,
|
||||
+ BCM6368_BASEMODE_GPIO);
|
||||
+
|
||||
+ bcm6368_rmw_mux(pctl, pctl->mode, BIT(pin), BIT(pin));
|
||||
+ regmap_update_bits(pc->regs, BCM6368_MODE_REG, BIT(pin),
|
||||
+ BIT(pin));
|
||||
+ }
|
||||
+ spin_unlock_irqrestore(&pctl->lock, flags);
|
||||
+
|
||||
+ for (pin = 0; pin < grp->num_pins; pin++) {
|
||||
+ for (pin = 0; pin < pg->num_pins; pin++) {
|
||||
+ int hw_gpio = bcm6368_pins[pin].number;
|
||||
+ struct gpio_chip *gc = &pctl->gpio[hw_gpio / 32];
|
||||
+ struct gpio_chip *gc = &pc->gpio_chip;
|
||||
+
|
||||
+ if (fun->dir_out & BIT(pin))
|
||||
+ gc->direction_output(gc, hw_gpio % 32, 0);
|
||||
+ gc->direction_output(gc, hw_gpio, 0);
|
||||
+ else
|
||||
+ gc->direction_input(gc, hw_gpio % 32);
|
||||
+ gc->direction_input(gc, hw_gpio);
|
||||
+ }
|
||||
+
|
||||
+ return 0;
|
||||
@ -504,92 +609,109 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+ struct pinctrl_gpio_range *range,
|
||||
+ unsigned offset)
|
||||
+{
|
||||
+ struct bcm6368_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
|
||||
+ unsigned long flags;
|
||||
+ struct bcm6368_pinctrl *pc = pinctrl_dev_get_drvdata(pctldev);
|
||||
+
|
||||
+ if (offset >= 32 && !bcm6368_pins[offset].drv_data)
|
||||
+ if (offset >= PINS_PER_BANK && !bcm6368_pins[offset].drv_data)
|
||||
+ return 0;
|
||||
+
|
||||
+ spin_lock_irqsave(&pctl->lock, flags);
|
||||
+ /* disable all functions using this pin */
|
||||
+ if (offset < 32)
|
||||
+ bcm6368_rmw_mux(pctl, pctl->mode, BIT(offset), 0);
|
||||
+ if (offset < PINS_PER_BANK)
|
||||
+ regmap_update_bits(pc->regs, BCM6368_MODE_REG, BIT(offset), 0);
|
||||
+
|
||||
+ if (bcm6368_pins[offset].drv_data)
|
||||
+ regmap_field_write(pctl->overlay, BCM6368_BASEMODE_GPIO);
|
||||
+
|
||||
+ spin_unlock_irqrestore(&pctl->lock, flags);
|
||||
+ regmap_field_write(pc->overlays, BCM6368_BASEMODE_GPIO);
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+static struct pinctrl_ops bcm6368_pctl_ops = {
|
||||
+ .get_groups_count = bcm6368_pinctrl_get_group_count,
|
||||
+ .get_group_name = bcm6368_pinctrl_get_group_name,
|
||||
+ .get_group_pins = bcm6368_pinctrl_get_group_pins,
|
||||
+#ifdef CONFIG_OF
|
||||
+ .dt_node_to_map = pinconf_generic_dt_node_to_map_pin,
|
||||
+ .dt_free_map = pinctrl_utils_free_map,
|
||||
+#endif
|
||||
+ .get_groups_count = bcm6368_pinctrl_get_group_count,
|
||||
+ .get_group_name = bcm6368_pinctrl_get_group_name,
|
||||
+ .get_group_pins = bcm6368_pinctrl_get_group_pins,
|
||||
+ .dt_node_to_map = pinconf_generic_dt_node_to_map_pin,
|
||||
+ .dt_free_map = pinctrl_utils_free_map,
|
||||
+};
|
||||
+
|
||||
+static struct pinmux_ops bcm6368_pmx_ops = {
|
||||
+ .get_functions_count = bcm6368_pinctrl_get_func_count,
|
||||
+ .get_function_name = bcm6368_pinctrl_get_func_name,
|
||||
+ .get_function_groups = bcm6368_pinctrl_get_groups,
|
||||
+ .set_mux = bcm6368_pinctrl_set_mux,
|
||||
+ .gpio_request_enable = bcm6368_gpio_request_enable,
|
||||
+ .strict = true,
|
||||
+ .get_functions_count = bcm6368_pinctrl_get_func_count,
|
||||
+ .get_function_name = bcm6368_pinctrl_get_func_name,
|
||||
+ .get_function_groups = bcm6368_pinctrl_get_groups,
|
||||
+ .set_mux = bcm6368_pinctrl_set_mux,
|
||||
+ .gpio_request_enable = bcm6368_gpio_request_enable,
|
||||
+ .strict = true,
|
||||
+};
|
||||
+
|
||||
+static int bcm6368_pinctrl_probe(struct platform_device *pdev)
|
||||
+{
|
||||
+ struct bcm6368_pinctrl *pctl;
|
||||
+ struct resource *res;
|
||||
+ void __iomem *mode;
|
||||
+ struct regmap *basemode;
|
||||
+ struct reg_field overlay = REG_FIELD(0, 0, 3);
|
||||
+ struct reg_field overlays = REG_FIELD(BCM6368_BASEMODE_REG, 0, 15);
|
||||
+ struct device *dev = &pdev->dev;
|
||||
+ struct device_node *np = dev->of_node;
|
||||
+ struct bcm6368_pinctrl *pc;
|
||||
+ int err;
|
||||
+
|
||||
+ basemode = syscon_regmap_lookup_by_phandle(pdev->dev.of_node,
|
||||
+ "brcm,gpiobasemode");
|
||||
+
|
||||
+ if (IS_ERR(basemode))
|
||||
+ return PTR_ERR(basemode);
|
||||
+
|
||||
+ res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "mode");
|
||||
+ mode = devm_ioremap_resource(&pdev->dev, res);
|
||||
+ if (IS_ERR(mode))
|
||||
+ return PTR_ERR(mode);
|
||||
+
|
||||
+ pctl = devm_kzalloc(&pdev->dev, sizeof(*pctl), GFP_KERNEL);
|
||||
+ if (!pctl)
|
||||
+ pc = devm_kzalloc(dev, sizeof(*pc), GFP_KERNEL);
|
||||
+ if (!pc)
|
||||
+ return -ENOMEM;
|
||||
+
|
||||
+ pctl->overlay = devm_regmap_field_alloc(&pdev->dev, basemode, overlay);
|
||||
+ if (IS_ERR(pctl->overlay))
|
||||
+ return PTR_ERR(pctl->overlay);
|
||||
+ platform_set_drvdata(pdev, pc);
|
||||
+ pc->dev = dev;
|
||||
+
|
||||
+ spin_lock_init(&pctl->lock);
|
||||
+ pc->regs = syscon_node_to_regmap(dev->parent->of_node);
|
||||
+ if (IS_ERR(pc->regs))
|
||||
+ return PTR_ERR(pc->regs);
|
||||
+
|
||||
+ pctl->mode = mode;
|
||||
+ pc->overlays = devm_regmap_field_alloc(&pdev->dev, pc->regs, overlays);
|
||||
+ if (IS_ERR(pc->overlays))
|
||||
+ return PTR_ERR(pc->overlays);
|
||||
+
|
||||
+ /* disable all muxes by default */
|
||||
+ __raw_writel(0, pctl->mode);
|
||||
+ regmap_field_write(pc->overlays, 0);
|
||||
+
|
||||
+ pctl->desc.name = dev_name(&pdev->dev);
|
||||
+ pctl->desc.owner = THIS_MODULE;
|
||||
+ pctl->desc.pctlops = &bcm6368_pctl_ops;
|
||||
+ pctl->desc.pmxops = &bcm6368_pmx_ops;
|
||||
+ pc->gpio_chip.label = MODULE_NAME;
|
||||
+ pc->gpio_chip.owner = THIS_MODULE;
|
||||
+ pc->gpio_chip.request = gpiochip_generic_request;
|
||||
+ pc->gpio_chip.free = gpiochip_generic_free;
|
||||
+ pc->gpio_chip.direction_input = bcm6368_gpio_direction_input;
|
||||
+ pc->gpio_chip.direction_output = bcm6368_gpio_direction_output;
|
||||
+ pc->gpio_chip.get_direction = bcm6368_gpio_get_direction;
|
||||
+ pc->gpio_chip.get = bcm6368_gpio_get;
|
||||
+ pc->gpio_chip.set = bcm6368_gpio_set;
|
||||
+ pc->gpio_chip.set_config = gpiochip_generic_config;
|
||||
+ pc->gpio_chip.base = -1;
|
||||
+ pc->gpio_chip.ngpio = BCM6368_NUM_GPIOS;
|
||||
+ pc->gpio_chip.can_sleep = false;
|
||||
+ pc->gpio_chip.parent = dev;
|
||||
+ pc->gpio_chip.of_node = np;
|
||||
+
|
||||
+ pctl->desc.npins = ARRAY_SIZE(bcm6368_pins);
|
||||
+ pctl->desc.pins = bcm6368_pins;
|
||||
+ if (of_get_property(np, "interrupt-names", NULL))
|
||||
+ pc->gpio_chip.to_irq = bcm6368_gpio_to_irq;
|
||||
+
|
||||
+ platform_set_drvdata(pdev, pctl);
|
||||
+ err = gpiochip_add_data(&pc->gpio_chip, pc);
|
||||
+ if (err) {
|
||||
+ dev_err(dev, "could not add GPIO chip\n");
|
||||
+ return err;
|
||||
+ }
|
||||
+
|
||||
+ pctl->pctldev = bcm63xx_pinctrl_register(pdev, &pctl->desc, pctl,
|
||||
+ pctl->gpio, BCM6368_NGPIO);
|
||||
+ if (IS_ERR(pctl->pctldev))
|
||||
+ return PTR_ERR(pctl->pctldev);
|
||||
+ pc->pctl_desc.name = MODULE_NAME,
|
||||
+ pc->pctl_desc.pins = bcm6368_pins,
|
||||
+ pc->pctl_desc.npins = ARRAY_SIZE(bcm6368_pins),
|
||||
+ pc->pctl_desc.pctlops = &bcm6368_pctl_ops,
|
||||
+ pc->pctl_desc.pmxops = &bcm6368_pmx_ops,
|
||||
+ pc->pctl_desc.owner = THIS_MODULE,
|
||||
+
|
||||
+ pc->pctl_dev = devm_pinctrl_register(dev, &pc->pctl_desc, pc);
|
||||
+ if (IS_ERR(pc->pctl_dev)) {
|
||||
+ gpiochip_remove(&pc->gpio_chip);
|
||||
+ return PTR_ERR(pc->pctl_dev);
|
||||
+ }
|
||||
+
|
||||
+ pc->gpio_range.name = MODULE_NAME;
|
||||
+ pc->gpio_range.npins = BCM6368_NUM_GPIOS;
|
||||
+ pc->gpio_range.base = pc->gpio_chip.base;
|
||||
+ pc->gpio_range.gc = &pc->gpio_chip;
|
||||
+ pinctrl_add_gpio_range(pc->pctl_dev, &pc->gpio_range);
|
||||
+
|
||||
+ dev_info(dev, "registered\n");
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
@ -602,7 +724,7 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+static struct platform_driver bcm6368_pinctrl_driver = {
|
||||
+ .probe = bcm6368_pinctrl_probe,
|
||||
+ .driver = {
|
||||
+ .name = "bcm6368-pinctrl",
|
||||
+ .name = MODULE_NAME,
|
||||
+ .of_match_table = bcm6368_pinctrl_match,
|
||||
+ },
|
||||
+};
|
@ -0,0 +1,220 @@
|
||||
From 826266914f8397c996d2d4d821b315d614bfc325 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= <noltari@gmail.com>
|
||||
Date: Wed, 27 Jul 2016 11:37:08 +0200
|
||||
Subject: [PATCH 09/12] Documentation: add BCM63268 pincontroller binding
|
||||
documentation
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Add binding documentation for the pincontrol core found in the BCM63268
|
||||
family SoCs.
|
||||
|
||||
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
---
|
||||
.../pinctrl/brcm,bcm63268-pinctrl.yaml | 198 ++++++++++++++++++
|
||||
1 file changed, 198 insertions(+)
|
||||
create mode 100644 Documentation/devicetree/bindings/pinctrl/brcm,bcm63268-pinctrl.yaml
|
||||
|
||||
--- /dev/null
|
||||
+++ b/Documentation/devicetree/bindings/pinctrl/brcm,bcm63268-pinctrl.yaml
|
||||
@@ -0,0 +1,198 @@
|
||||
+# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
|
||||
+%YAML 1.2
|
||||
+---
|
||||
+$id: http://devicetree.org/schemas/pinctrl/brcm,bcm63268-pinctrl.yaml#
|
||||
+$schema: http://devicetree.org/meta-schemas/core.yaml#
|
||||
+
|
||||
+title: Broadcom BCM63268 pin controller
|
||||
+
|
||||
+maintainers:
|
||||
+ - Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
+ - Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+
|
||||
+description: |+
|
||||
+ The pin controller node should be the child of a syscon node.
|
||||
+
|
||||
+ Refer to the the bindings described in
|
||||
+ Documentation/devicetree/bindings/mfd/syscon.yaml
|
||||
+
|
||||
+properties:
|
||||
+ compatible:
|
||||
+ const: brcm,bcm63268-pinctrl
|
||||
+
|
||||
+ gpio-controller: true
|
||||
+
|
||||
+ '#gpio-cells':
|
||||
+ description:
|
||||
+ Specifies the pin number and flags, as defined in
|
||||
+ include/dt-bindings/gpio/gpio.h
|
||||
+ const: 2
|
||||
+
|
||||
+ interrupts-extended:
|
||||
+ description:
|
||||
+ One interrupt per each of the 4 GPIO ports supported by the controller,
|
||||
+ sorted by port number ascending order.
|
||||
+ minItems: 4
|
||||
+ maxItems: 4
|
||||
+
|
||||
+patternProperties:
|
||||
+ '^.*$':
|
||||
+ if:
|
||||
+ type: object
|
||||
+ then:
|
||||
+ properties:
|
||||
+ function:
|
||||
+ $ref: "/schemas/types.yaml#/definitions/string"
|
||||
+ enum: [ serial_led_clk, serial_led_data, hsspi_cs4, hsspi_cs5,
|
||||
+ hsspi_cs6, hsspi_cs7, adsl_spi_miso, adsl_spi_mosi,
|
||||
+ vreq_clk, pcie_clkreq_b, robosw_led_clk, robosw_led_data,
|
||||
+ nand, gpio35_alt, dectpd, vdsl_phy_override_0,
|
||||
+ vdsl_phy_override_1, vdsl_phy_override_2,
|
||||
+ vdsl_phy_override_3, dsl_gpio8, dsl_gpio9 ]
|
||||
+
|
||||
+ pins:
|
||||
+ $ref: "/schemas/types.yaml#/definitions/string"
|
||||
+ enum: [ gpio0, gpio1, gpio16, gpio17, gpio8, gpio9, gpio18, gpio19,
|
||||
+ gpio22, gpio23, gpio30, gpio31, nand_grp, gpio35
|
||||
+ dectpd_grp, vdsl_phy_override_0_grp,
|
||||
+ vdsl_phy_override_1_grp, vdsl_phy_override_2_grp,
|
||||
+ vdsl_phy_override_3_grp, dsl_gpio8, dsl_gpio9 ]
|
||||
+
|
||||
+required:
|
||||
+ - compatible
|
||||
+ - gpio-controller
|
||||
+ - '#gpio-cells'
|
||||
+
|
||||
+additionalProperties: false
|
||||
+
|
||||
+examples:
|
||||
+ - |
|
||||
+ gpio@100000c0 {
|
||||
+ compatible = "syscon", "simple-mfd";
|
||||
+ reg = <0x100000c0 0x80>;
|
||||
+
|
||||
+ pinctrl: pinctrl {
|
||||
+ compatible = "brcm,bcm63268-pinctrl";
|
||||
+
|
||||
+ gpio-controller;
|
||||
+ #gpio-cells = <2>;
|
||||
+
|
||||
+ interrupts-extended = <&ext_intc 0 0>,
|
||||
+ <&ext_intc 1 0>,
|
||||
+ <&ext_intc 2 0>,
|
||||
+ <&ext_intc 3 0>;
|
||||
+ interrupt-names = "gpio32",
|
||||
+ "gpio33",
|
||||
+ "gpio34",
|
||||
+ "gpio35";
|
||||
+
|
||||
+ pinctrl_serial_led: serial_led {
|
||||
+ pinctrl_serial_led_clk: serial_led_clk {
|
||||
+ function = "serial_led_clk";
|
||||
+ pins = "gpio0";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_serial_led_data: serial_led_data {
|
||||
+ function = "serial_led_data";
|
||||
+ pins = "gpio1";
|
||||
+ };
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_hsspi_cs4: hsspi_cs4 {
|
||||
+ function = "hsspi_cs4";
|
||||
+ pins = "gpio16";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_hsspi_cs5: hsspi_cs5 {
|
||||
+ function = "hsspi_cs5";
|
||||
+ pins = "gpio17";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_hsspi_cs6: hsspi_cs6 {
|
||||
+ function = "hsspi_cs6";
|
||||
+ pins = "gpio8";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_hsspi_cs7: hsspi_cs7 {
|
||||
+ function = "hsspi_cs7";
|
||||
+ pins = "gpio9";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_adsl_spi: adsl_spi {
|
||||
+ pinctrl_adsl_spi_miso: adsl_spi_miso {
|
||||
+ function = "adsl_spi_miso";
|
||||
+ pins = "gpio18";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_adsl_spi_mosi: adsl_spi_mosi {
|
||||
+ function = "adsl_spi_mosi";
|
||||
+ pins = "gpio19";
|
||||
+ };
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_vreq_clk: vreq_clk {
|
||||
+ function = "vreq_clk";
|
||||
+ pins = "gpio22";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_pcie_clkreq_b: pcie_clkreq_b {
|
||||
+ function = "pcie_clkreq_b";
|
||||
+ pins = "gpio23";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_robosw_led_clk: robosw_led_clk {
|
||||
+ function = "robosw_led_clk";
|
||||
+ pins = "gpio30";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_robosw_led_data: robosw_led_data {
|
||||
+ function = "robosw_led_data";
|
||||
+ pins = "gpio31";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_nand: nand {
|
||||
+ function = "nand";
|
||||
+ group = "nand_grp";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_gpio35_alt: gpio35_alt {
|
||||
+ function = "gpio35_alt";
|
||||
+ pin = "gpio35";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_dectpd: dectpd {
|
||||
+ function = "dectpd";
|
||||
+ group = "dectpd_grp";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_vdsl_phy_override_0: vdsl_phy_override_0 {
|
||||
+ function = "vdsl_phy_override_0";
|
||||
+ group = "vdsl_phy_override_0_grp";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_vdsl_phy_override_1: vdsl_phy_override_1 {
|
||||
+ function = "vdsl_phy_override_1";
|
||||
+ group = "vdsl_phy_override_1_grp";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_vdsl_phy_override_2: vdsl_phy_override_2 {
|
||||
+ function = "vdsl_phy_override_2";
|
||||
+ group = "vdsl_phy_override_2_grp";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_vdsl_phy_override_3: vdsl_phy_override_3 {
|
||||
+ function = "vdsl_phy_override_3";
|
||||
+ group = "vdsl_phy_override_3_grp";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_dsl_gpio8: dsl_gpio8 {
|
||||
+ function = "dsl_gpio8";
|
||||
+ group = "dsl_gpio8";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_dsl_gpio9: dsl_gpio9 {
|
||||
+ function = "dsl_gpio9";
|
||||
+ group = "dsl_gpio9";
|
||||
+ };
|
||||
+ };
|
||||
+ };
|
@ -1,106 +0,0 @@
|
||||
From 28cc80e4ada5d73d5305fd268297825cd8d01936 Mon Sep 17 00:00:00 2001
|
||||
From: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
Date: Wed, 27 Jul 2016 11:37:08 +0200
|
||||
Subject: [PATCH 12/16] Documentation: add BCM63268 pincontroller binding
|
||||
documentation
|
||||
|
||||
Add binding documentation for the pincontrol core found in the BCM63268
|
||||
family SoCs.
|
||||
|
||||
Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
---
|
||||
.../bindings/pinctrl/brcm,bcm63268-pinctrl.txt | 88 ++++++++++++++++++++++
|
||||
1 file changed, 88 insertions(+)
|
||||
create mode 100644 Documentation/devicetree/bindings/pinctrl/brcm,bcm63268-pinctrl.txt
|
||||
|
||||
--- /dev/null
|
||||
+++ b/Documentation/devicetree/bindings/pinctrl/brcm,bcm63268-pinctrl.txt
|
||||
@@ -0,0 +1,88 @@
|
||||
+* Broadcom BCM63268 pin controller
|
||||
+
|
||||
+Required properties:
|
||||
+- compatible: Must be "brcm,bcm6362-pinctrl".
|
||||
+- reg: Register specifiers of dirout, dat, led, mode, ctrl, basemode registers.
|
||||
+- reg-names: Must be "dirout", "dat", "led", "mode", "ctrl", "basemode".
|
||||
+- gpio-controller: Identifies this node as a GPIO controller.
|
||||
+- #gpio-cells: Must be <2>.
|
||||
+
|
||||
+Example:
|
||||
+
|
||||
+pinctrl: pin-controller@100000c0 {
|
||||
+ compatible = "brcm,bcm63268-pinctrl";
|
||||
+ reg = <0x100000c0 0x8>,
|
||||
+ <0x100000c8 0x8>,
|
||||
+ <0x100000d0 0x4>,
|
||||
+ <0x100000d8 0x4>,
|
||||
+ <0x100000dc 0x4>,
|
||||
+ <0x100000f8 0x4>;
|
||||
+ reg-names = "dirout", "dat", "led", "mode",
|
||||
+ "ctrl", "basemode";
|
||||
+
|
||||
+ gpio-controller;
|
||||
+ #gpio-cells = <2>;
|
||||
+};
|
||||
+
|
||||
+Available pins/groups and functions:
|
||||
+
|
||||
+name pins functions
|
||||
+-----------------------------------------------------------
|
||||
+gpio0 0 led, serial_led_clk
|
||||
+gpio1 1 led, serial_led_data
|
||||
+gpio2 2 led,
|
||||
+gpio3 3 led,
|
||||
+gpio4 4 led,
|
||||
+gpio5 5 led,
|
||||
+gpio6 6 led,
|
||||
+gpio7 7 led,
|
||||
+gpio8 8 led, hsspi_cs6
|
||||
+gpio9 9 led, hsspi_cs7
|
||||
+gpio10 10 led, uart1_scts
|
||||
+gpio11 11 led, uart1_srts
|
||||
+gpio12 12 led, uart1_sdin
|
||||
+gpio13 13 led, uart1_sdout
|
||||
+gpio14 14 led, ntr_pulse_in
|
||||
+gpio15 15 led, dsl_ntr_pulse_out
|
||||
+gpio16 16 led, hsspi_cs4
|
||||
+gpio17 17 led, hsspi_cs5
|
||||
+gpio18 18 led, adsl_spi_miso
|
||||
+gpio19 19 led, adsl_spi_mosi
|
||||
+gpio20 20 led,
|
||||
+gpio21 21 led,
|
||||
+gpio22 22 led, vreg_clk
|
||||
+gpio23 23 led, pcie_clkreq_b
|
||||
+gpio24 24 uart1_scts
|
||||
+gpio25 25 uart1_srts
|
||||
+gpio26 26 uart1_sdin
|
||||
+gpio27 27 uart1_sdout
|
||||
+gpio28 28 ntr_pulse_in
|
||||
+gpio29 29 dsl_ntr_pulse_out
|
||||
+gpio30 30 switch_led_clk
|
||||
+gpio31 31 switch_led_data
|
||||
+gpio32 32 wifi
|
||||
+gpio33 33 wifi
|
||||
+gpio34 34 wifi
|
||||
+gpio35 35 wifi
|
||||
+gpio36 36 wifi
|
||||
+gpio37 37 wifi
|
||||
+gpio38 38 wifi
|
||||
+gpio39 39 wifi
|
||||
+gpio40 40 wifi
|
||||
+gpio41 41 wifi
|
||||
+gpio42 42 wifi
|
||||
+gpio43 43 wifi
|
||||
+gpio44 44 wifi
|
||||
+gpio45 45 wifi
|
||||
+gpio46 46 wifi
|
||||
+gpio47 47 wifi
|
||||
+gpio48 48 wifi
|
||||
+gpio49 49 wifi
|
||||
+gpio50 50 wifi
|
||||
+gpio51 51 wifi
|
||||
+nand_grp 2-7,24-31 nand
|
||||
+dect_pd_grp 8-9 dect_pd
|
||||
+vdsl_phy0_grp 10-11 vdsl_phy0
|
||||
+vdsl_phy1_grp 12-13 vdsl_phy1
|
||||
+vdsl_phy2_grp 24-25 vdsl_phy2
|
||||
+vdsl_phy3_grp 26-27 vdsl_phy3
|
@ -1,79 +1,103 @@
|
||||
From 8665d3ea63649cc155286c75f83f694a930580e5 Mon Sep 17 00:00:00 2001
|
||||
From: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
From 8ec959299a6e4bbdc65d62180aa952ae04cdcf07 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= <noltari@gmail.com>
|
||||
Date: Fri, 24 Jun 2016 22:19:12 +0200
|
||||
Subject: [PATCH 13/16] pinctrl: add a pincontrol driver for BCM63268
|
||||
Subject: [PATCH 10/12] pinctrl: add a pincontrol driver for BCM63268
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Add a pincontrol driver for BCM63268. BCM63268 allows muxing GPIOs
|
||||
to different functions. Depending on the mux, these are either single
|
||||
pin configurations or whole pin groups.
|
||||
|
||||
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
---
|
||||
drivers/pinctrl/bcm63xx/Makefile | 1 +
|
||||
drivers/pinctrl/bcm63xx/pinctrl-bcm63268.c | 710 +++++++++++++++++++++++++++++
|
||||
2 files changed, 711 insertions(+)
|
||||
create mode 100644 drivers/pinctrl/bcm63xx/pinctrl-bcm63268.c
|
||||
drivers/pinctrl/bcm/Kconfig | 11 +
|
||||
drivers/pinctrl/bcm/Makefile | 1 +
|
||||
drivers/pinctrl/bcm/pinctrl-bcm63268.c | 821 +++++++++++++++++++++++++
|
||||
3 files changed, 833 insertions(+)
|
||||
create mode 100644 drivers/pinctrl/bcm/pinctrl-bcm63268.c
|
||||
|
||||
--- a/drivers/pinctrl/bcm63xx/Kconfig
|
||||
+++ b/drivers/pinctrl/bcm63xx/Kconfig
|
||||
@@ -31,3 +31,10 @@ config PINCTRL_BCM6368
|
||||
select PINCTRL_BCM63XX
|
||||
select GENERIC_PINCONF
|
||||
select MFD_SYSCON
|
||||
+
|
||||
--- a/drivers/pinctrl/bcm/Kconfig
|
||||
+++ b/drivers/pinctrl/bcm/Kconfig
|
||||
@@ -73,6 +73,17 @@ config PINCTRL_BCM6368
|
||||
help
|
||||
Say Y here to enable the Broadcom BCM6368 GPIO driver.
|
||||
|
||||
+config PINCTRL_BCM63268
|
||||
+ bool "BCM63268 pincontrol driver"
|
||||
+ bool "Broadcom BCM63268 GPIO driver"
|
||||
+ depends on OF_GPIO && (BMIPS_GENERIC || COMPILE_TEST)
|
||||
+ select PINMUX
|
||||
+ select PINCONF
|
||||
+ select PINCTRL_BCM63XX
|
||||
+ select GENERIC_PINCONF
|
||||
--- a/drivers/pinctrl/bcm63xx/Makefile
|
||||
+++ b/drivers/pinctrl/bcm63xx/Makefile
|
||||
@@ -3,3 +3,4 @@ obj-$(CONFIG_PINCTRL_BCM6328) += pinctrl
|
||||
obj-$(CONFIG_PINCTRL_BCM6358) += pinctrl-bcm6358.o
|
||||
obj-$(CONFIG_PINCTRL_BCM6362) += pinctrl-bcm6362.o
|
||||
obj-$(CONFIG_PINCTRL_BCM6368) += pinctrl-bcm6368.o
|
||||
+obj-$(CONFIG_PINCTRL_BCM63268) += pinctrl-bcm63268.o
|
||||
+ select MFD_SYSCON
|
||||
+ default BMIPS_GENERIC
|
||||
+ help
|
||||
+ Say Y here to enable the Broadcom BCM63268 GPIO driver.
|
||||
+
|
||||
config PINCTRL_IPROC_GPIO
|
||||
bool "Broadcom iProc GPIO (with PINCONF) driver"
|
||||
depends on OF_GPIO && (ARCH_BCM_IPROC || COMPILE_TEST)
|
||||
--- a/drivers/pinctrl/bcm/Makefile
|
||||
+++ b/drivers/pinctrl/bcm/Makefile
|
||||
@@ -7,6 +7,7 @@ obj-$(CONFIG_PINCTRL_BCM6328) += pinctr
|
||||
obj-$(CONFIG_PINCTRL_BCM6358) += pinctrl-bcm6358.o
|
||||
obj-$(CONFIG_PINCTRL_BCM6362) += pinctrl-bcm6362.o
|
||||
obj-$(CONFIG_PINCTRL_BCM6368) += pinctrl-bcm6368.o
|
||||
+obj-$(CONFIG_PINCTRL_BCM63268) += pinctrl-bcm63268.o
|
||||
obj-$(CONFIG_PINCTRL_IPROC_GPIO) += pinctrl-iproc-gpio.o
|
||||
obj-$(CONFIG_PINCTRL_CYGNUS_MUX) += pinctrl-cygnus-mux.o
|
||||
obj-$(CONFIG_PINCTRL_NS) += pinctrl-ns.o
|
||||
--- /dev/null
|
||||
+++ b/drivers/pinctrl/bcm63xx/pinctrl-bcm63268.c
|
||||
@@ -0,0 +1,710 @@
|
||||
+++ b/drivers/pinctrl/bcm/pinctrl-bcm63268.c
|
||||
@@ -0,0 +1,821 @@
|
||||
+// SPDX-License-Identifier: GPL-2.0+
|
||||
+/*
|
||||
+ * This file is subject to the terms and conditions of the GNU General Public
|
||||
+ * License. See the file "COPYING" in the main directory of this archive
|
||||
+ * for more details.
|
||||
+ * Driver for BCM63268 GPIO unit (pinctrl + GPIO)
|
||||
+ *
|
||||
+ * Copyright (C) 2021 Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
+ * Copyright (C) 2016 Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+ */
|
||||
+
|
||||
+#include <linux/kernel.h>
|
||||
+#include <linux/spinlock.h>
|
||||
+#include <linux/bitops.h>
|
||||
+#include <linux/gpio.h>
|
||||
+#include <linux/kernel.h>
|
||||
+#include <linux/mfd/syscon.h>
|
||||
+#include <linux/of.h>
|
||||
+#include <linux/of_gpio.h>
|
||||
+#include <linux/slab.h>
|
||||
+#include <linux/of_irq.h>
|
||||
+#include <linux/platform_device.h>
|
||||
+#include <linux/regmap.h>
|
||||
+
|
||||
+#include <linux/pinctrl/machine.h>
|
||||
+#include <linux/pinctrl/pinconf.h>
|
||||
+#include <linux/pinctrl/pinconf-generic.h>
|
||||
+#include <linux/pinctrl/pinmux.h>
|
||||
+#include <linux/pinctrl/machine.h>
|
||||
+
|
||||
+#include "../core.h"
|
||||
+#include "../pinctrl-utils.h"
|
||||
+
|
||||
+#include "pinctrl-bcm63xx.h"
|
||||
+#define MODULE_NAME "bcm63268-pinctrl"
|
||||
+#define BCM63268_NUM_GPIOS 52
|
||||
+#define BCM63268_NUM_LEDS 24
|
||||
+
|
||||
+#define BCM63268_NGPIO 52
|
||||
+#define BANK_SIZE sizeof(uint32_t)
|
||||
+#define PINS_PER_BANK (BANK_SIZE * BITS_PER_BYTE)
|
||||
+
|
||||
+/* GPIO_BASEMODE register */
|
||||
+#define BASEMODE_NAND BIT(2) /* GPIOs 2-7, 24-31 */
|
||||
+#define BASEMODE_GPIO35 BIT(4) /* GPIO 35 */
|
||||
+#define BASEMODE_DECTPD BIT(5) /* GPIOs 8/9 */
|
||||
+#define BASEMODE_VDSL_PHY_0 BIT(6) /* GPIOs 10/11 */
|
||||
+#define BASEMODE_VDSL_PHY_1 BIT(7) /* GPIOs 12/13 */
|
||||
+#define BASEMODE_VDSL_PHY_2 BIT(8) /* GPIOs 24/25 */
|
||||
+#define BASEMODE_VDSL_PHY_3 BIT(9) /* GPIOs 26/27 */
|
||||
+#define BCM63268_DIROUT_REG 0x04
|
||||
+#define BCM63268_DATA_REG 0x0c
|
||||
+#define BCM63268_LED_REG 0x10
|
||||
+#define BCM63268_MODE_REG 0x18
|
||||
+#define BCM63268_CTRL_REG 0x1c
|
||||
+#define BCM63268_BASEMODE_REG 0x38
|
||||
+#define BCM63268_BASEMODE_NAND BIT(2) /* GPIOs 2-7, 24-31 */
|
||||
+#define BCM63268_BASEMODE_GPIO35 BIT(4) /* GPIO 35 */
|
||||
+#define BCM63268_BASEMODE_DECTPD BIT(5) /* GPIOs 8/9 */
|
||||
+#define BCM63268_BASEMODE_VDSL_PHY_0 BIT(6) /* GPIOs 10/11 */
|
||||
+#define BCM63268_BASEMODE_VDSL_PHY_1 BIT(7) /* GPIOs 12/13 */
|
||||
+#define BCM63268_BASEMODE_VDSL_PHY_2 BIT(8) /* GPIOs 24/25 */
|
||||
+#define BCM63268_BASEMODE_VDSL_PHY_3 BIT(9) /* GPIOs 26/27 */
|
||||
+
|
||||
+enum bcm63268_pinctrl_reg {
|
||||
+ BCM63268_LEDCTRL,
|
||||
@ -94,22 +118,17 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+ const unsigned num_groups;
|
||||
+
|
||||
+ enum bcm63268_pinctrl_reg reg;
|
||||
+ u32 mask;
|
||||
+ uint32_t mask;
|
||||
+};
|
||||
+
|
||||
+struct bcm63268_pinctrl {
|
||||
+ struct pinctrl_dev *pctldev;
|
||||
+ struct pinctrl_desc desc;
|
||||
+ struct device *dev;
|
||||
+ struct regmap *regs;
|
||||
+
|
||||
+ void __iomem *led;
|
||||
+ void __iomem *mode;
|
||||
+ void __iomem *ctrl;
|
||||
+ void __iomem *basemode;
|
||||
+
|
||||
+ /* register access lock */
|
||||
+ spinlock_t lock;
|
||||
+
|
||||
+ struct gpio_chip gpio[2];
|
||||
+ struct pinctrl_dev *pctl_dev;
|
||||
+ struct gpio_chip gpio_chip;
|
||||
+ struct pinctrl_desc pctl_desc;
|
||||
+ struct pinctrl_gpio_range gpio_range;
|
||||
+};
|
||||
+
|
||||
+#define BCM63268_PIN(a, b, basemode) \
|
||||
@ -122,18 +141,18 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+static const struct pinctrl_pin_desc bcm63268_pins[] = {
|
||||
+ PINCTRL_PIN(0, "gpio0"),
|
||||
+ PINCTRL_PIN(1, "gpio1"),
|
||||
+ BCM63268_PIN(2, "gpio2", BASEMODE_NAND),
|
||||
+ BCM63268_PIN(3, "gpio3", BASEMODE_NAND),
|
||||
+ BCM63268_PIN(4, "gpio4", BASEMODE_NAND),
|
||||
+ BCM63268_PIN(5, "gpio5", BASEMODE_NAND),
|
||||
+ BCM63268_PIN(6, "gpio6", BASEMODE_NAND),
|
||||
+ BCM63268_PIN(7, "gpio7", BASEMODE_NAND),
|
||||
+ BCM63268_PIN(8, "gpio8", BASEMODE_DECTPD),
|
||||
+ BCM63268_PIN(9, "gpio9", BASEMODE_DECTPD),
|
||||
+ BCM63268_PIN(10, "gpio10", BASEMODE_VDSL_PHY_0),
|
||||
+ BCM63268_PIN(11, "gpio11", BASEMODE_VDSL_PHY_0),
|
||||
+ BCM63268_PIN(12, "gpio12", BASEMODE_VDSL_PHY_1),
|
||||
+ BCM63268_PIN(13, "gpio13", BASEMODE_VDSL_PHY_1),
|
||||
+ BCM63268_PIN(2, "gpio2", BCM63268_BASEMODE_NAND),
|
||||
+ BCM63268_PIN(3, "gpio3", BCM63268_BASEMODE_NAND),
|
||||
+ BCM63268_PIN(4, "gpio4", BCM63268_BASEMODE_NAND),
|
||||
+ BCM63268_PIN(5, "gpio5", BCM63268_BASEMODE_NAND),
|
||||
+ BCM63268_PIN(6, "gpio6", BCM63268_BASEMODE_NAND),
|
||||
+ BCM63268_PIN(7, "gpio7", BCM63268_BASEMODE_NAND),
|
||||
+ BCM63268_PIN(8, "gpio8", BCM63268_BASEMODE_DECTPD),
|
||||
+ BCM63268_PIN(9, "gpio9", BCM63268_BASEMODE_DECTPD),
|
||||
+ BCM63268_PIN(10, "gpio10", BCM63268_BASEMODE_VDSL_PHY_0),
|
||||
+ BCM63268_PIN(11, "gpio11", BCM63268_BASEMODE_VDSL_PHY_0),
|
||||
+ BCM63268_PIN(12, "gpio12", BCM63268_BASEMODE_VDSL_PHY_1),
|
||||
+ BCM63268_PIN(13, "gpio13", BCM63268_BASEMODE_VDSL_PHY_1),
|
||||
+ PINCTRL_PIN(14, "gpio14"),
|
||||
+ PINCTRL_PIN(15, "gpio15"),
|
||||
+ PINCTRL_PIN(16, "gpio16"),
|
||||
@ -144,14 +163,18 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+ PINCTRL_PIN(21, "gpio21"),
|
||||
+ PINCTRL_PIN(22, "gpio22"),
|
||||
+ PINCTRL_PIN(23, "gpio23"),
|
||||
+ BCM63268_PIN(24, "gpio24", BASEMODE_NAND | BASEMODE_VDSL_PHY_2),
|
||||
+ BCM63268_PIN(25, "gpio25", BASEMODE_NAND | BASEMODE_VDSL_PHY_2),
|
||||
+ BCM63268_PIN(26, "gpio26", BASEMODE_NAND | BASEMODE_VDSL_PHY_3),
|
||||
+ BCM63268_PIN(27, "gpio27", BASEMODE_NAND | BASEMODE_VDSL_PHY_3),
|
||||
+ BCM63268_PIN(28, "gpio28", BASEMODE_NAND),
|
||||
+ BCM63268_PIN(29, "gpio29", BASEMODE_NAND),
|
||||
+ BCM63268_PIN(30, "gpio30", BASEMODE_NAND),
|
||||
+ BCM63268_PIN(31, "gpio31", BASEMODE_NAND),
|
||||
+ BCM63268_PIN(24, "gpio24",
|
||||
+ BCM63268_BASEMODE_NAND | BCM63268_BASEMODE_VDSL_PHY_2),
|
||||
+ BCM63268_PIN(25, "gpio25",
|
||||
+ BCM63268_BASEMODE_NAND | BCM63268_BASEMODE_VDSL_PHY_2),
|
||||
+ BCM63268_PIN(26, "gpio26",
|
||||
+ BCM63268_BASEMODE_NAND | BCM63268_BASEMODE_VDSL_PHY_3),
|
||||
+ BCM63268_PIN(27, "gpio27",
|
||||
+ BCM63268_BASEMODE_NAND | BCM63268_BASEMODE_VDSL_PHY_3),
|
||||
+ BCM63268_PIN(28, "gpio28", BCM63268_BASEMODE_NAND),
|
||||
+ BCM63268_PIN(29, "gpio29", BCM63268_BASEMODE_NAND),
|
||||
+ BCM63268_PIN(30, "gpio30", BCM63268_BASEMODE_NAND),
|
||||
+ BCM63268_PIN(31, "gpio31", BCM63268_BASEMODE_NAND),
|
||||
+ PINCTRL_PIN(32, "gpio32"),
|
||||
+ PINCTRL_PIN(33, "gpio33"),
|
||||
+ PINCTRL_PIN(34, "gpio34"),
|
||||
@ -514,14 +537,120 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+ BCM63268_MODE_FUN(switch_led_clk),
|
||||
+ BCM63268_MODE_FUN(switch_led_data),
|
||||
+ BCM63268_CTRL_FUN(wifi),
|
||||
+ BCM63268_BASEMODE_FUN(nand, BASEMODE_NAND),
|
||||
+ BCM63268_BASEMODE_FUN(dectpd, BASEMODE_DECTPD),
|
||||
+ BCM63268_BASEMODE_FUN(vdsl_phy_override_0, BASEMODE_VDSL_PHY_0),
|
||||
+ BCM63268_BASEMODE_FUN(vdsl_phy_override_1, BASEMODE_VDSL_PHY_1),
|
||||
+ BCM63268_BASEMODE_FUN(vdsl_phy_override_2, BASEMODE_VDSL_PHY_2),
|
||||
+ BCM63268_BASEMODE_FUN(vdsl_phy_override_3, BASEMODE_VDSL_PHY_3),
|
||||
+ BCM63268_BASEMODE_FUN(nand, BCM63268_BASEMODE_NAND),
|
||||
+ BCM63268_BASEMODE_FUN(dectpd, BCM63268_BASEMODE_DECTPD),
|
||||
+ BCM63268_BASEMODE_FUN(vdsl_phy_override_0,
|
||||
+ BCM63268_BASEMODE_VDSL_PHY_0),
|
||||
+ BCM63268_BASEMODE_FUN(vdsl_phy_override_1,
|
||||
+ BCM63268_BASEMODE_VDSL_PHY_1),
|
||||
+ BCM63268_BASEMODE_FUN(vdsl_phy_override_2,
|
||||
+ BCM63268_BASEMODE_VDSL_PHY_2),
|
||||
+ BCM63268_BASEMODE_FUN(vdsl_phy_override_3,
|
||||
+ BCM63268_BASEMODE_VDSL_PHY_3),
|
||||
+};
|
||||
+
|
||||
+static inline unsigned int bcm63268_bank_pin(unsigned int pin)
|
||||
+{
|
||||
+ return pin % PINS_PER_BANK;
|
||||
+}
|
||||
+
|
||||
+static inline unsigned int bcm63268_reg_off(unsigned int reg, unsigned int pin)
|
||||
+{
|
||||
+ return reg - (pin / PINS_PER_BANK) * BANK_SIZE;
|
||||
+}
|
||||
+
|
||||
+static int bcm63268_gpio_direction_input(struct gpio_chip *chip,
|
||||
+ unsigned int pin)
|
||||
+{
|
||||
+ struct bcm63268_pinctrl *pc = gpiochip_get_data(chip);
|
||||
+ unsigned int dirout = bcm63268_reg_off(BCM63268_DIROUT_REG, pin);
|
||||
+ unsigned int bank_pin = bcm63268_bank_pin(pin);
|
||||
+ int ret;
|
||||
+
|
||||
+ /*
|
||||
+ * Check with the pinctrl driver whether this pin is usable as
|
||||
+ * an input GPIO
|
||||
+ */
|
||||
+ ret = pinctrl_gpio_direction_input(chip->base + pin);
|
||||
+ if (ret)
|
||||
+ return ret;
|
||||
+
|
||||
+ regmap_update_bits(pc->regs, dirout, BIT(bank_pin), 0);
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+static int bcm63268_gpio_direction_output(struct gpio_chip *chip,
|
||||
+ unsigned int pin, int value)
|
||||
+{
|
||||
+ struct bcm63268_pinctrl *pc = gpiochip_get_data(chip);
|
||||
+ unsigned int data = bcm63268_reg_off(BCM63268_DATA_REG, pin);
|
||||
+ unsigned int dirout = bcm63268_reg_off(BCM63268_DIROUT_REG, pin);
|
||||
+ unsigned int bank_pin = bcm63268_bank_pin(pin);
|
||||
+ unsigned int val = value ? BIT(bank_pin) : 0;
|
||||
+ int ret;
|
||||
+
|
||||
+ /*
|
||||
+ * Check with the pinctrl driver whether this pin is usable as
|
||||
+ * an output GPIO
|
||||
+ */
|
||||
+ ret = pinctrl_gpio_direction_output(chip->base + pin);
|
||||
+ if (ret)
|
||||
+ return ret;
|
||||
+
|
||||
+ regmap_update_bits(pc->regs, dirout, BIT(bank_pin), BIT(bank_pin));
|
||||
+ regmap_update_bits(pc->regs, data, BIT(bank_pin), val);
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+static int bcm63268_gpio_get(struct gpio_chip *chip, unsigned int pin)
|
||||
+{
|
||||
+ struct bcm63268_pinctrl *pc = gpiochip_get_data(chip);
|
||||
+ unsigned int data = bcm63268_reg_off(BCM63268_DATA_REG, pin);
|
||||
+ unsigned int bank_pin = bcm63268_bank_pin(pin);
|
||||
+ unsigned int val;
|
||||
+
|
||||
+ regmap_read(pc->regs, data, &val);
|
||||
+
|
||||
+ return !!(val & BIT(bank_pin));
|
||||
+}
|
||||
+
|
||||
+static int bcm63268_gpio_get_direction(struct gpio_chip *chip, unsigned int pin)
|
||||
+{
|
||||
+ struct bcm63268_pinctrl *pc = gpiochip_get_data(chip);
|
||||
+ unsigned int dirout = bcm63268_reg_off(BCM63268_DIROUT_REG, pin);
|
||||
+ unsigned int bank_pin = bcm63268_bank_pin(pin);
|
||||
+ unsigned int val;
|
||||
+
|
||||
+ regmap_read(pc->regs, dirout, &val);
|
||||
+
|
||||
+ if (val & BIT(bank_pin))
|
||||
+ return GPIO_LINE_DIRECTION_OUT;
|
||||
+
|
||||
+ return GPIO_LINE_DIRECTION_IN;
|
||||
+}
|
||||
+
|
||||
+static void bcm63268_gpio_set(struct gpio_chip *chip, unsigned int pin,
|
||||
+ int value)
|
||||
+{
|
||||
+ struct bcm63268_pinctrl *pc = gpiochip_get_data(chip);
|
||||
+ unsigned int data = bcm63268_reg_off(BCM63268_DATA_REG, pin);
|
||||
+ unsigned int bank_pin = bcm63268_bank_pin(pin);
|
||||
+ unsigned int val = value ? BIT(bank_pin) : 0;
|
||||
+
|
||||
+ regmap_update_bits(pc->regs, data, BIT(bank_pin), val);
|
||||
+}
|
||||
+
|
||||
+static int bcm63268_gpio_to_irq(struct gpio_chip *chip, unsigned gpio)
|
||||
+{
|
||||
+ char irq_name[7];
|
||||
+
|
||||
+ sprintf(irq_name, "gpio%d", gpio);
|
||||
+
|
||||
+ return of_irq_get_byname(chip->of_node, irq_name);
|
||||
+}
|
||||
+
|
||||
+static int bcm63268_pinctrl_get_group_count(struct pinctrl_dev *pctldev)
|
||||
+{
|
||||
+ return ARRAY_SIZE(bcm63268_groups);
|
||||
@ -566,74 +695,61 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+static void bcm63268_rmw_mux(struct bcm63268_pinctrl *pctl, void __iomem *reg,
|
||||
+ u32 mask, u32 val)
|
||||
+{
|
||||
+ unsigned long flags;
|
||||
+ u32 tmp;
|
||||
+
|
||||
+ spin_lock_irqsave(&pctl->lock, flags);
|
||||
+ tmp = __raw_readl(reg);
|
||||
+ tmp &= ~mask;
|
||||
+ tmp |= val;
|
||||
+ __raw_writel(tmp, reg);
|
||||
+
|
||||
+ spin_unlock_irqrestore(&pctl->lock, flags);
|
||||
+}
|
||||
+
|
||||
+static void bcm63268_set_gpio(struct bcm63268_pinctrl *pctl, unsigned pin)
|
||||
+static void bcm63268_set_gpio(struct bcm63268_pinctrl *pc, unsigned pin)
|
||||
+{
|
||||
+ const struct pinctrl_pin_desc *desc = &bcm63268_pins[pin];
|
||||
+ u32 basemode = (unsigned long)desc->drv_data;
|
||||
+ u32 mask = BIT(pin % 32);
|
||||
+ unsigned int basemode = (unsigned long) desc->drv_data;
|
||||
+ unsigned int mask = BIT(bcm63268_bank_pin(pin));
|
||||
+
|
||||
+ if (basemode)
|
||||
+ bcm63268_rmw_mux(pctl, pctl->basemode, basemode, 0);
|
||||
+ regmap_update_bits(pc->regs, BCM63268_BASEMODE_REG, basemode,
|
||||
+ 0);
|
||||
+
|
||||
+ if (pin < 32) {
|
||||
+ if (pin < PINS_PER_BANK) {
|
||||
+ /* base mode: 0 => gpio, 1 => mux function */
|
||||
+ bcm63268_rmw_mux(pctl, pctl->mode, mask, 0);
|
||||
+ regmap_update_bits(pc->regs, BCM63268_MODE_REG, mask, 0);
|
||||
+
|
||||
+ /* pins 0-23 might be muxed to led */
|
||||
+ if (pin < 24)
|
||||
+ bcm63268_rmw_mux(pctl, pctl->led, mask, 0);
|
||||
+ } else if (pin < 52) {
|
||||
+ if (pin < BCM63268_NUM_LEDS)
|
||||
+ regmap_update_bits(pc->regs, BCM63268_LED_REG, mask,
|
||||
+ 0);
|
||||
+ } else if (pin < BCM63268_NUM_GPIOS) {
|
||||
+ /* ctrl reg: 0 => wifi function, 1 => gpio */
|
||||
+ bcm63268_rmw_mux(pctl, pctl->ctrl, mask, mask);
|
||||
+ regmap_update_bits(pc->regs, BCM63268_CTRL_REG, mask, mask);
|
||||
+ }
|
||||
+}
|
||||
+
|
||||
+static int bcm63268_pinctrl_set_mux(struct pinctrl_dev *pctldev,
|
||||
+ unsigned selector, unsigned group)
|
||||
+{
|
||||
+ struct bcm63268_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
|
||||
+ const struct bcm63268_pingroup *grp = &bcm63268_groups[group];
|
||||
+ struct bcm63268_pinctrl *pc = pinctrl_dev_get_drvdata(pctldev);
|
||||
+ const struct bcm63268_pingroup *pg = &bcm63268_groups[group];
|
||||
+ const struct bcm63268_function *f = &bcm63268_funcs[selector];
|
||||
+ unsigned i;
|
||||
+ void __iomem *reg;
|
||||
+ u32 val, mask;
|
||||
+ unsigned int reg;
|
||||
+ unsigned int val, mask;
|
||||
+
|
||||
+ for (i = 0; i < grp->num_pins; i++)
|
||||
+ bcm63268_set_gpio(pctl, grp->pins[i]);
|
||||
+ for (i = 0; i < pg->num_pins; i++)
|
||||
+ bcm63268_set_gpio(pc, pg->pins[i]);
|
||||
+
|
||||
+ switch (f->reg) {
|
||||
+ case BCM63268_LEDCTRL:
|
||||
+ reg = pctl->led;
|
||||
+ mask = BIT(grp->pins[0]);
|
||||
+ val = BIT(grp->pins[0]);
|
||||
+ reg = BCM63268_LED_REG;
|
||||
+ mask = BIT(pg->pins[0]);
|
||||
+ val = BIT(pg->pins[0]);
|
||||
+ break;
|
||||
+ case BCM63268_MODE:
|
||||
+ reg = pctl->mode;
|
||||
+ mask = BIT(grp->pins[0]);
|
||||
+ val = BIT(grp->pins[0]);
|
||||
+ reg = BCM63268_MODE_REG;
|
||||
+ mask = BIT(pg->pins[0]);
|
||||
+ val = BIT(pg->pins[0]);
|
||||
+ break;
|
||||
+ case BCM63268_CTRL:
|
||||
+ reg = pctl->ctrl;
|
||||
+ mask = BIT(grp->pins[0]);
|
||||
+ reg = BCM63268_CTRL_REG;
|
||||
+ mask = BIT(pg->pins[0]);
|
||||
+ val = 0;
|
||||
+ break;
|
||||
+ case BCM63268_BASEMODE:
|
||||
+ reg = pctl->basemode;
|
||||
+ reg = BCM63268_BASEMODE_REG;
|
||||
+ mask = f->mask;
|
||||
+ val = f->mask;
|
||||
+ break;
|
||||
@ -642,7 +758,7 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+ return -EINVAL;
|
||||
+ }
|
||||
+
|
||||
+ bcm63268_rmw_mux(pctl, reg, mask, val);
|
||||
+ regmap_update_bits(pc->regs, reg, mask, val);
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
@ -651,84 +767,94 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+ struct pinctrl_gpio_range *range,
|
||||
+ unsigned offset)
|
||||
+{
|
||||
+ struct bcm63268_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
|
||||
+ struct bcm63268_pinctrl *pc = pinctrl_dev_get_drvdata(pctldev);
|
||||
+
|
||||
+ /* disable all functions using this pin */
|
||||
+ bcm63268_set_gpio(pctl, offset);
|
||||
+ bcm63268_set_gpio(pc, offset);
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+static struct pinctrl_ops bcm63268_pctl_ops = {
|
||||
+ .get_groups_count = bcm63268_pinctrl_get_group_count,
|
||||
+ .get_group_name = bcm63268_pinctrl_get_group_name,
|
||||
+ .get_group_pins = bcm63268_pinctrl_get_group_pins,
|
||||
+#ifdef CONFIG_OF
|
||||
+ .dt_node_to_map = pinconf_generic_dt_node_to_map_pin,
|
||||
+ .dt_free_map = pinctrl_utils_free_map,
|
||||
+#endif
|
||||
+ .get_groups_count = bcm63268_pinctrl_get_group_count,
|
||||
+ .get_group_name = bcm63268_pinctrl_get_group_name,
|
||||
+ .get_group_pins = bcm63268_pinctrl_get_group_pins,
|
||||
+ .dt_node_to_map = pinconf_generic_dt_node_to_map_pin,
|
||||
+ .dt_free_map = pinctrl_utils_free_map,
|
||||
+};
|
||||
+
|
||||
+static struct pinmux_ops bcm63268_pmx_ops = {
|
||||
+ .get_functions_count = bcm63268_pinctrl_get_func_count,
|
||||
+ .get_function_name = bcm63268_pinctrl_get_func_name,
|
||||
+ .get_function_groups = bcm63268_pinctrl_get_groups,
|
||||
+ .set_mux = bcm63268_pinctrl_set_mux,
|
||||
+ .gpio_request_enable = bcm63268_gpio_request_enable,
|
||||
+ .strict = true,
|
||||
+ .get_functions_count = bcm63268_pinctrl_get_func_count,
|
||||
+ .get_function_name = bcm63268_pinctrl_get_func_name,
|
||||
+ .get_function_groups = bcm63268_pinctrl_get_groups,
|
||||
+ .set_mux = bcm63268_pinctrl_set_mux,
|
||||
+ .gpio_request_enable = bcm63268_gpio_request_enable,
|
||||
+ .strict = true,
|
||||
+};
|
||||
+
|
||||
+static int bcm63268_pinctrl_probe(struct platform_device *pdev)
|
||||
+{
|
||||
+ struct bcm63268_pinctrl *pctl;
|
||||
+ struct resource *res;
|
||||
+ void __iomem *led, *mode, *ctrl, *basemode;
|
||||
+ struct device *dev = &pdev->dev;
|
||||
+ struct device_node *np = dev->of_node;
|
||||
+ struct bcm63268_pinctrl *pc;
|
||||
+ int err;
|
||||
+
|
||||
+ res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "led");
|
||||
+ led = devm_ioremap_resource(&pdev->dev, res);
|
||||
+ if (IS_ERR(led))
|
||||
+ return PTR_ERR(led);
|
||||
+
|
||||
+ res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "mode");
|
||||
+ mode = devm_ioremap_resource(&pdev->dev, res);
|
||||
+ if (IS_ERR(mode))
|
||||
+ return PTR_ERR(mode);
|
||||
+
|
||||
+ res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "ctrl");
|
||||
+ ctrl = devm_ioremap_resource(&pdev->dev, res);
|
||||
+ if (IS_ERR(ctrl))
|
||||
+ return PTR_ERR(ctrl);
|
||||
+
|
||||
+ res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "basemode");
|
||||
+ basemode = devm_ioremap_resource(&pdev->dev, res);
|
||||
+ if (IS_ERR(basemode))
|
||||
+ return PTR_ERR(basemode);
|
||||
+
|
||||
+ pctl = devm_kzalloc(&pdev->dev, sizeof(*pctl), GFP_KERNEL);
|
||||
+ if (!pctl)
|
||||
+ pc = devm_kzalloc(dev, sizeof(*pc), GFP_KERNEL);
|
||||
+ if (!pc)
|
||||
+ return -ENOMEM;
|
||||
+
|
||||
+ spin_lock_init(&pctl->lock);
|
||||
+ platform_set_drvdata(pdev, pc);
|
||||
+ pc->dev = dev;
|
||||
+
|
||||
+ pctl->led = led;
|
||||
+ pctl->mode = mode;
|
||||
+ pctl->ctrl = ctrl;
|
||||
+ pctl->basemode = basemode;
|
||||
+ pc->regs = syscon_node_to_regmap(dev->parent->of_node);
|
||||
+ if (IS_ERR(pc->regs))
|
||||
+ return PTR_ERR(pc->regs);
|
||||
+
|
||||
+ pctl->desc.name = dev_name(&pdev->dev);
|
||||
+ pctl->desc.owner = THIS_MODULE;
|
||||
+ pctl->desc.pctlops = &bcm63268_pctl_ops;
|
||||
+ pctl->desc.pmxops = &bcm63268_pmx_ops;
|
||||
+ pc->gpio_chip.label = MODULE_NAME;
|
||||
+ pc->gpio_chip.owner = THIS_MODULE;
|
||||
+ pc->gpio_chip.request = gpiochip_generic_request;
|
||||
+ pc->gpio_chip.free = gpiochip_generic_free;
|
||||
+ pc->gpio_chip.direction_input = bcm63268_gpio_direction_input;
|
||||
+ pc->gpio_chip.direction_output = bcm63268_gpio_direction_output;
|
||||
+ pc->gpio_chip.get_direction = bcm63268_gpio_get_direction;
|
||||
+ pc->gpio_chip.get = bcm63268_gpio_get;
|
||||
+ pc->gpio_chip.set = bcm63268_gpio_set;
|
||||
+ pc->gpio_chip.set_config = gpiochip_generic_config;
|
||||
+ pc->gpio_chip.base = -1;
|
||||
+ pc->gpio_chip.ngpio = BCM63268_NUM_GPIOS;
|
||||
+ pc->gpio_chip.can_sleep = false;
|
||||
+ pc->gpio_chip.parent = dev;
|
||||
+ pc->gpio_chip.of_node = np;
|
||||
+
|
||||
+ pctl->desc.npins = ARRAY_SIZE(bcm63268_pins);
|
||||
+ pctl->desc.pins = bcm63268_pins;
|
||||
+ if (of_get_property(np, "interrupt-names", NULL))
|
||||
+ pc->gpio_chip.to_irq = bcm63268_gpio_to_irq;
|
||||
+
|
||||
+ platform_set_drvdata(pdev, pctl);
|
||||
+ err = gpiochip_add_data(&pc->gpio_chip, pc);
|
||||
+ if (err) {
|
||||
+ dev_err(dev, "could not add GPIO chip\n");
|
||||
+ return err;
|
||||
+ }
|
||||
+
|
||||
+ pctl->pctldev = bcm63xx_pinctrl_register(pdev, &pctl->desc, pctl,
|
||||
+ pctl->gpio, BCM63268_NGPIO);
|
||||
+ if (IS_ERR(pctl->pctldev))
|
||||
+ return PTR_ERR(pctl->pctldev);
|
||||
+ pc->pctl_desc.name = MODULE_NAME,
|
||||
+ pc->pctl_desc.pins = bcm63268_pins,
|
||||
+ pc->pctl_desc.npins = ARRAY_SIZE(bcm63268_pins),
|
||||
+ pc->pctl_desc.pctlops = &bcm63268_pctl_ops,
|
||||
+ pc->pctl_desc.pmxops = &bcm63268_pmx_ops,
|
||||
+ pc->pctl_desc.owner = THIS_MODULE,
|
||||
+
|
||||
+ pc->pctl_dev = devm_pinctrl_register(dev, &pc->pctl_desc, pc);
|
||||
+ if (IS_ERR(pc->pctl_dev)) {
|
||||
+ gpiochip_remove(&pc->gpio_chip);
|
||||
+ return PTR_ERR(pc->pctl_dev);
|
||||
+ }
|
||||
+
|
||||
+ pc->gpio_range.name = MODULE_NAME;
|
||||
+ pc->gpio_range.npins = BCM63268_NUM_GPIOS;
|
||||
+ pc->gpio_range.base = pc->gpio_chip.base;
|
||||
+ pc->gpio_range.gc = &pc->gpio_chip;
|
||||
+ pinctrl_add_gpio_range(pc->pctl_dev, &pc->gpio_range);
|
||||
+
|
||||
+ dev_info(dev, "registered\n");
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
@ -741,7 +867,7 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+static struct platform_driver bcm63268_pinctrl_driver = {
|
||||
+ .probe = bcm63268_pinctrl_probe,
|
||||
+ .driver = {
|
||||
+ .name = "bcm63268-pinctrl",
|
||||
+ .name = MODULE_NAME,
|
||||
+ .of_match_table = bcm63268_pinctrl_match,
|
||||
+ },
|
||||
+};
|
@ -0,0 +1,194 @@
|
||||
From f909bf5d5cf3db6b35c082f27f7982dfcb1447c2 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= <noltari@gmail.com>
|
||||
Date: Wed, 27 Jul 2016 11:38:05 +0200
|
||||
Subject: [PATCH 11/12] Documentation: add BCM6318 pincontroller binding
|
||||
documentation
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Add binding documentation for the pincontrol core found in BCM6318 SoCs.
|
||||
|
||||
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
---
|
||||
.../pinctrl/brcm,bcm6318-pinctrl.yaml | 173 ++++++++++++++++++
|
||||
1 file changed, 173 insertions(+)
|
||||
create mode 100644 Documentation/devicetree/bindings/pinctrl/brcm,bcm6318-pinctrl.yaml
|
||||
|
||||
--- /dev/null
|
||||
+++ b/Documentation/devicetree/bindings/pinctrl/brcm,bcm6318-pinctrl.yaml
|
||||
@@ -0,0 +1,173 @@
|
||||
+# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
|
||||
+%YAML 1.2
|
||||
+---
|
||||
+$id: http://devicetree.org/schemas/pinctrl/brcm,bcm6318-pinctrl.yaml#
|
||||
+$schema: http://devicetree.org/meta-schemas/core.yaml#
|
||||
+
|
||||
+title: Broadcom BCM6318 pin controller
|
||||
+
|
||||
+maintainers:
|
||||
+ - Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
+ - Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+
|
||||
+description: |+
|
||||
+ The pin controller node should be the child of a syscon node.
|
||||
+
|
||||
+ Refer to the the bindings described in
|
||||
+ Documentation/devicetree/bindings/mfd/syscon.yaml
|
||||
+
|
||||
+properties:
|
||||
+ compatible:
|
||||
+ const: brcm,bcm6318-pinctrl
|
||||
+
|
||||
+ gpio-controller: true
|
||||
+
|
||||
+ '#gpio-cells':
|
||||
+ description:
|
||||
+ Specifies the pin number and flags, as defined in
|
||||
+ include/dt-bindings/gpio/gpio.h
|
||||
+ const: 2
|
||||
+
|
||||
+ interrupts-extended:
|
||||
+ description:
|
||||
+ One interrupt per each of the 2 GPIO ports supported by the controller,
|
||||
+ sorted by port number ascending order.
|
||||
+ minItems: 2
|
||||
+ maxItems: 2
|
||||
+
|
||||
+patternProperties:
|
||||
+ '^.*$':
|
||||
+ if:
|
||||
+ type: object
|
||||
+ then:
|
||||
+ properties:
|
||||
+ function:
|
||||
+ $ref: "/schemas/types.yaml#/definitions/string"
|
||||
+ enum: [ ephy0_spd_led, ephy1_spd_led, ephy2_spd_led, ephy3_spd_led,
|
||||
+ ephy0_act_led, ephy1_act_led, ephy2_act_led, ephy3_act_led,
|
||||
+ serial_led_data, serial_led_clk, inet_act_led, inet_fail_led,
|
||||
+ dsl_led, post_fail_led, wlan_wps_led, usb_pwron,
|
||||
+ usb_device_led, usb_active ]
|
||||
+
|
||||
+ pins:
|
||||
+ $ref: "/schemas/types.yaml#/definitions/string"
|
||||
+ enum: [ gpio0, gpio1, gpio2, gpio3, gpio4, gpio5, gpio6, gpio7,
|
||||
+ gpio8, gpio9, gpio10, gpio11, gpio12, gpio13, gpio40 ]
|
||||
+
|
||||
+required:
|
||||
+ - compatible
|
||||
+ - gpio-controller
|
||||
+ - '#gpio-cells'
|
||||
+
|
||||
+additionalProperties: false
|
||||
+
|
||||
+examples:
|
||||
+ - |
|
||||
+ gpio@10000080 {
|
||||
+ compatible = "syscon", "simple-mfd";
|
||||
+ reg = <0x10000080 0x80>;
|
||||
+
|
||||
+ pinctrl: pinctrl {
|
||||
+ compatible = "brcm,bcm6318-pinctrl";
|
||||
+
|
||||
+ gpio-controller;
|
||||
+ #gpio-cells = <2>;
|
||||
+
|
||||
+ interrupts-extended = <&ext_intc 0 0>,
|
||||
+ <&ext_intc 1 0>;
|
||||
+ interrupt-names = "gpio33",
|
||||
+ "gpio34";
|
||||
+
|
||||
+ pinctrl_ephy0_spd_led: ephy0_spd_led {
|
||||
+ function = "ephy0_spd_led";
|
||||
+ pins = "gpio0";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_ephy1_spd_led: ephy1_spd_led {
|
||||
+ function = "ephy1_spd_led";
|
||||
+ pins = "gpio1";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_ephy2_spd_led: ephy2_spd_led {
|
||||
+ function = "ephy2_spd_led";
|
||||
+ pins = "gpio2";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_ephy3_spd_led: ephy3_spd_led {
|
||||
+ function = "ephy3_spd_led";
|
||||
+ pins = "gpio3";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_ephy0_act_led: ephy0_act_led {
|
||||
+ function = "ephy0_act_led";
|
||||
+ pins = "gpio4";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_ephy1_act_led: ephy1_act_led {
|
||||
+ function = "ephy1_act_led";
|
||||
+ pins = "gpio5";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_ephy2_act_led: ephy2_act_led {
|
||||
+ function = "ephy2_act_led";
|
||||
+ pins = "gpio6";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_ephy3_act_led: ephy3_act_led {
|
||||
+ function = "ephy3_act_led";
|
||||
+ pins = "gpio7";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_serial_led: serial_led {
|
||||
+ pinctrl_serial_led_data: serial_led_data {
|
||||
+ function = "serial_led_data";
|
||||
+ pins = "gpio6";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_serial_led_clk: serial_led_clk {
|
||||
+ function = "serial_led_clk";
|
||||
+ pins = "gpio7";
|
||||
+ };
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_inet_act_led: inet_act_led {
|
||||
+ function = "inet_act_led";
|
||||
+ pins = "gpio8";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_inet_fail_led: inet_fail_led {
|
||||
+ function = "inet_fail_led";
|
||||
+ pins = "gpio9";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_dsl_led: dsl_led {
|
||||
+ function = "dsl_led";
|
||||
+ pins = "gpio10";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_post_fail_led: post_fail_led {
|
||||
+ function = "post_fail_led";
|
||||
+ pins = "gpio11";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_wlan_wps_led: wlan_wps_led {
|
||||
+ function = "wlan_wps_led";
|
||||
+ pins = "gpio12";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_usb_pwron: usb_pwron {
|
||||
+ function = "usb_pwron";
|
||||
+ pins = "gpio13";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_usb_device_led: usb_device_led {
|
||||
+ function = "usb_device_led";
|
||||
+ pins = "gpio13";
|
||||
+ };
|
||||
+
|
||||
+ pinctrl_usb_active: usb_active {
|
||||
+ function = "usb_active";
|
||||
+ pins = "gpio40";
|
||||
+ };
|
||||
+ };
|
||||
+ };
|
@ -1,96 +0,0 @@
|
||||
From 8439e5d2e69f54a532bb5f8ec001b4b5a3035574 Mon Sep 17 00:00:00 2001
|
||||
From: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
Date: Wed, 27 Jul 2016 11:38:05 +0200
|
||||
Subject: [PATCH 14/16] Documentation: add BCM6318 pincontroller binding
|
||||
documentation
|
||||
|
||||
Add binding documentation for the pincontrol core found in BCM6318 SoCs.
|
||||
|
||||
Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
---
|
||||
.../bindings/pinctrl/brcm,bcm6318-pinctrl.txt | 79 ++++++++++++++++++++++
|
||||
1 file changed, 79 insertions(+)
|
||||
create mode 100644 Documentation/devicetree/bindings/pinctrl/brcm,bcm6318-pinctrl.txt
|
||||
|
||||
--- /dev/null
|
||||
+++ b/Documentation/devicetree/bindings/pinctrl/brcm,bcm6318-pinctrl.txt
|
||||
@@ -0,0 +1,79 @@
|
||||
+* Broadcom BCM6318 pin controller
|
||||
+
|
||||
+Required properties:
|
||||
+- compatible: Must be "brcm,bcm6318-pinctrl".
|
||||
+- regs: Register specifiers of dirout, dat, mode, mux, and pad registers.
|
||||
+- reg-names: Must be "dirout", "dat", "mode", "mux", "pad".
|
||||
+- gpio-controller: Identifies this node as a gpio controller.
|
||||
+- #gpio-cells: Must be <2>.
|
||||
+
|
||||
+Example:
|
||||
+
|
||||
+pinctrl: pin-controller@10000080 {
|
||||
+ compatible = "brcm,bcm6318-pinctrl";
|
||||
+ reg = <0x10000080 0x08>,
|
||||
+ <0x10000088 0x08>,
|
||||
+ <0x10000098 0x04>,
|
||||
+ <0x1000009c 0x0c>,
|
||||
+ <0x100000d4 0x18>;
|
||||
+ reg-names = "dirout", "dat", "mode", "mux", "pad";
|
||||
+
|
||||
+ gpio-controller;
|
||||
+ #gpio-cells = <2>;
|
||||
+};
|
||||
+
|
||||
+
|
||||
+Available pins/groups and functions:
|
||||
+
|
||||
+name pins functions
|
||||
+-----------------------------------------------------------
|
||||
+gpio0 0 led, ephy0_spd_led
|
||||
+gpio1 1 led, ephy1_spd_led
|
||||
+gpio2 2 led, ephy2_spd_led
|
||||
+gpio3 3 led, ephy3_spd_led
|
||||
+gpio4 4 led, ephy0_act_led
|
||||
+gpio5 5 led, ephy1_act_led
|
||||
+gpio6 6 led, ephy2_act_led, serial_led_data
|
||||
+gpio7 7 led, ephy3_act_led, serial_led_clk
|
||||
+gpio8 8 led, inet_act_led
|
||||
+gpio9 9 led, inet_fail_led
|
||||
+gpio10 10 led, dsl_led
|
||||
+gpio11 11 led, post_fail_led
|
||||
+gpio12 12 led, wlan_wps_led
|
||||
+gpio13 13 led, usb_pwron, usb_device_led
|
||||
+gpio14 14 led
|
||||
+gpio15 15 led
|
||||
+gpio16 16 led
|
||||
+gpio17 17 led
|
||||
+gpio18 18 led
|
||||
+gpio19 19 led
|
||||
+gpio20 20 led
|
||||
+gpio21 21 led
|
||||
+gpio22 22 led
|
||||
+gpio23 23 led
|
||||
+gpio24 24 -
|
||||
+gpio25 25 -
|
||||
+gpio26 26 -
|
||||
+gpio27 27 -
|
||||
+gpio28 28 -
|
||||
+gpio29 29 -
|
||||
+gpio30 30 -
|
||||
+gpio31 31 -
|
||||
+gpio32 32 -
|
||||
+gpio33 33 -
|
||||
+gpio34 34 -
|
||||
+gpio35 35 -
|
||||
+gpio36 36 -
|
||||
+gpio37 37 -
|
||||
+gpio38 38 -
|
||||
+gpio39 39 -
|
||||
+gpio40 40 usb_active
|
||||
+gpio41 41 -
|
||||
+gpio42 42 -
|
||||
+gpio43 43 -
|
||||
+gpio44 44 -
|
||||
+gpio45 45 -
|
||||
+gpio46 46 -
|
||||
+gpio47 47 -
|
||||
+gpio48 48 -
|
||||
+gpio49 49 -
|
@ -1,77 +1,96 @@
|
||||
From bd9c250ef85e6f99aa5d59b21abb87d0a48f2f61 Mon Sep 17 00:00:00 2001
|
||||
From: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
From e1764f96eb563a11c822ff91d1c6d7ed01c3925b Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= <noltari@gmail.com>
|
||||
Date: Fri, 24 Jun 2016 22:20:39 +0200
|
||||
Subject: [PATCH 15/16] pinctrl: add a pincontrol driver for BCM6318
|
||||
Subject: [PATCH 12/12] pinctrl: add a pincontrol driver for BCM6318
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Add a pincontrol driver for BCM6318. BCM6318 allows muxing most GPIOs
|
||||
to different functions. BCM6318 is similar to BCM6328 with the addition
|
||||
of a pad register, and the GPIO meaning of the mux register changes
|
||||
based on the GPIO number.
|
||||
|
||||
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
---
|
||||
drivers/pinctrl/bcm63xx/Kconfig | 7 +
|
||||
drivers/pinctrl/bcm63xx/Makefile | 1 +
|
||||
drivers/pinctrl/bcm63xx/pinctrl-bcm6318.c | 564 ++++++++++++++++++++++++++++++
|
||||
3 files changed, 572 insertions(+)
|
||||
create mode 100644 drivers/pinctrl/bcm63xx/pinctrl-bcm6318.c
|
||||
drivers/pinctrl/bcm/Kconfig | 11 +
|
||||
drivers/pinctrl/bcm/Makefile | 1 +
|
||||
drivers/pinctrl/bcm/pinctrl-bcm6318.c | 674 ++++++++++++++++++++++++++
|
||||
3 files changed, 686 insertions(+)
|
||||
create mode 100644 drivers/pinctrl/bcm/pinctrl-bcm6318.c
|
||||
|
||||
--- a/drivers/pinctrl/bcm63xx/Kconfig
|
||||
+++ b/drivers/pinctrl/bcm63xx/Kconfig
|
||||
@@ -2,6 +2,13 @@ config PINCTRL_BCM63XX
|
||||
bool
|
||||
select GPIO_GENERIC
|
||||
--- a/drivers/pinctrl/bcm/Kconfig
|
||||
+++ b/drivers/pinctrl/bcm/Kconfig
|
||||
@@ -29,6 +29,17 @@ config PINCTRL_BCM2835
|
||||
help
|
||||
Say Y here to enable the Broadcom BCM2835 GPIO driver.
|
||||
|
||||
+config PINCTRL_BCM6318
|
||||
+ bool "BCM6318 pincontrol driver"
|
||||
+ bool "Broadcom BCM6318 GPIO driver"
|
||||
+ depends on OF_GPIO && (BMIPS_GENERIC || COMPILE_TEST)
|
||||
+ select PINMUX
|
||||
+ select PINCONF
|
||||
+ select PINCTRL_BCM63XX
|
||||
+ select GENERIC_PINCONF
|
||||
+ select MFD_SYSCON
|
||||
+ default BMIPS_GENERIC
|
||||
+ help
|
||||
+ Say Y here to enable the Broadcom BCM6318 GPIO driver.
|
||||
+
|
||||
config PINCTRL_BCM6328
|
||||
bool "BCM6328 pincontrol driver"
|
||||
select PINMUX
|
||||
--- a/drivers/pinctrl/bcm63xx/Makefile
|
||||
+++ b/drivers/pinctrl/bcm63xx/Makefile
|
||||
@@ -1,4 +1,5 @@
|
||||
obj-$(CONFIG_PINCTRL_BCM63XX) += pinctrl-bcm63xx.o
|
||||
+obj-$(CONFIG_PINCTRL_BCM6318) += pinctrl-bcm6318.o
|
||||
obj-$(CONFIG_PINCTRL_BCM6328) += pinctrl-bcm6328.o
|
||||
obj-$(CONFIG_PINCTRL_BCM6358) += pinctrl-bcm6358.o
|
||||
obj-$(CONFIG_PINCTRL_BCM6362) += pinctrl-bcm6362.o
|
||||
bool "Broadcom BCM6328 GPIO driver"
|
||||
depends on OF_GPIO && (BMIPS_GENERIC || COMPILE_TEST)
|
||||
--- a/drivers/pinctrl/bcm/Makefile
|
||||
+++ b/drivers/pinctrl/bcm/Makefile
|
||||
@@ -3,6 +3,7 @@
|
||||
|
||||
obj-$(CONFIG_PINCTRL_BCM281XX) += pinctrl-bcm281xx.o
|
||||
obj-$(CONFIG_PINCTRL_BCM2835) += pinctrl-bcm2835.o
|
||||
+obj-$(CONFIG_PINCTRL_BCM6318) += pinctrl-bcm6318.o
|
||||
obj-$(CONFIG_PINCTRL_BCM6328) += pinctrl-bcm6328.o
|
||||
obj-$(CONFIG_PINCTRL_BCM6358) += pinctrl-bcm6358.o
|
||||
obj-$(CONFIG_PINCTRL_BCM6362) += pinctrl-bcm6362.o
|
||||
--- /dev/null
|
||||
+++ b/drivers/pinctrl/bcm63xx/pinctrl-bcm6318.c
|
||||
@@ -0,0 +1,564 @@
|
||||
+++ b/drivers/pinctrl/bcm/pinctrl-bcm6318.c
|
||||
@@ -0,0 +1,674 @@
|
||||
+// SPDX-License-Identifier: GPL-2.0+
|
||||
+/*
|
||||
+ * This file is subject to the terms and conditions of the GNU General Public
|
||||
+ * License. See the file "COPYING" in the main directory of this archive
|
||||
+ * for more details.
|
||||
+ * Driver for BCM6318 GPIO unit (pinctrl + GPIO)
|
||||
+ *
|
||||
+ * Copyright (C) 2021 Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
+ * Copyright (C) 2016 Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+ */
|
||||
+
|
||||
+#include <linux/kernel.h>
|
||||
+#include <linux/spinlock.h>
|
||||
+#include <linux/bitops.h>
|
||||
+#include <linux/gpio.h>
|
||||
+#include <linux/gpio/driver.h>
|
||||
+#include <linux/kernel.h>
|
||||
+#include <linux/mfd/syscon.h>
|
||||
+#include <linux/of.h>
|
||||
+#include <linux/of_gpio.h>
|
||||
+#include <linux/slab.h>
|
||||
+#include <linux/of_irq.h>
|
||||
+#include <linux/platform_device.h>
|
||||
+#include <linux/regmap.h>
|
||||
+
|
||||
+#include <linux/pinctrl/machine.h>
|
||||
+#include <linux/pinctrl/pinconf.h>
|
||||
+#include <linux/pinctrl/pinconf-generic.h>
|
||||
+#include <linux/pinctrl/pinmux.h>
|
||||
+#include <linux/pinctrl/machine.h>
|
||||
+
|
||||
+#include "../core.h"
|
||||
+#include "../pinctrl-utils.h"
|
||||
+
|
||||
+#include "pinctrl-bcm63xx.h"
|
||||
+#define MODULE_NAME "bcm6318-pinctrl"
|
||||
+#define BCM6318_NUM_GPIOS 50
|
||||
+#define BCM6318_NUM_MUX 48
|
||||
+
|
||||
+#define BCM6318_NGPIO 50
|
||||
+#define BANK_SIZE sizeof(uint32_t)
|
||||
+#define PINS_PER_BANK (BANK_SIZE * BITS_PER_BYTE)
|
||||
+
|
||||
+#define BCM6318_DIROUT_REG 0x04
|
||||
+#define BCM6318_DATA_REG 0x0c
|
||||
+#define BCM6318_MODE_REG 0x18
|
||||
+#define BCM6318_MUX_REG 0x1c
|
||||
+#define BCM6318_PAD_REG 0x54
|
||||
+
|
||||
+struct bcm6318_pingroup {
|
||||
+ const char *name;
|
||||
@ -89,17 +108,13 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+};
|
||||
+
|
||||
+struct bcm6318_pinctrl {
|
||||
+ struct pinctrl_dev *pctldev;
|
||||
+ struct pinctrl_desc desc;
|
||||
+ struct device *dev;
|
||||
+ struct regmap *regs;
|
||||
+
|
||||
+ void __iomem *mode;
|
||||
+ void __iomem *mux[3];
|
||||
+ void __iomem *pad[6];
|
||||
+
|
||||
+ /* register access lock */
|
||||
+ spinlock_t lock;
|
||||
+
|
||||
+ struct gpio_chip gpio[2];
|
||||
+ struct pinctrl_dev *pctl_dev;
|
||||
+ struct gpio_chip gpio_chip;
|
||||
+ struct pinctrl_desc pctl_desc;
|
||||
+ struct pinctrl_gpio_range gpio_range;
|
||||
+};
|
||||
+
|
||||
+static const struct pinctrl_pin_desc bcm6318_pins[] = {
|
||||
@ -405,6 +420,118 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+ BCM6318_MUX_FUN(usb_active, 2),
|
||||
+};
|
||||
+
|
||||
+static inline unsigned int bcm6318_bank_pin(unsigned int pin)
|
||||
+{
|
||||
+ return pin % PINS_PER_BANK;
|
||||
+}
|
||||
+
|
||||
+static inline unsigned int bcm6318_mux_off(unsigned int pin)
|
||||
+{
|
||||
+ return BCM6318_MUX_REG + (pin / 16) * BANK_SIZE;
|
||||
+}
|
||||
+
|
||||
+static inline unsigned int bcm6318_pad_off(unsigned int pin)
|
||||
+{
|
||||
+ return BCM6318_PAD_REG + (pin / 8) * BANK_SIZE;
|
||||
+}
|
||||
+
|
||||
+static inline unsigned int bcm6318_reg_off(unsigned int reg, unsigned int pin)
|
||||
+{
|
||||
+ return reg - (pin / PINS_PER_BANK) * BANK_SIZE;
|
||||
+}
|
||||
+
|
||||
+static int bcm6318_gpio_direction_input(struct gpio_chip *chip,
|
||||
+ unsigned int pin)
|
||||
+{
|
||||
+ struct bcm6318_pinctrl *pc = gpiochip_get_data(chip);
|
||||
+ unsigned int dirout = bcm6318_reg_off(BCM6318_DIROUT_REG, pin);
|
||||
+ unsigned int bank_pin = bcm6318_bank_pin(pin);
|
||||
+ int ret;
|
||||
+
|
||||
+ /*
|
||||
+ * Check with the pinctrl driver whether this pin is usable as
|
||||
+ * an input GPIO
|
||||
+ */
|
||||
+ ret = pinctrl_gpio_direction_input(chip->base + pin);
|
||||
+ if (ret)
|
||||
+ return ret;
|
||||
+
|
||||
+ regmap_update_bits(pc->regs, dirout, BIT(bank_pin), 0);
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+static int bcm6318_gpio_direction_output(struct gpio_chip *chip,
|
||||
+ unsigned int pin, int value)
|
||||
+{
|
||||
+ struct bcm6318_pinctrl *pc = gpiochip_get_data(chip);
|
||||
+ unsigned int data = bcm6318_reg_off(BCM6318_DATA_REG, pin);
|
||||
+ unsigned int dirout = bcm6318_reg_off(BCM6318_DIROUT_REG, pin);
|
||||
+ unsigned int bank_pin = bcm6318_bank_pin(pin);
|
||||
+ unsigned int val = value ? BIT(bank_pin) : 0;
|
||||
+ int ret;
|
||||
+
|
||||
+ /*
|
||||
+ * Check with the pinctrl driver whether this pin is usable as
|
||||
+ * an output GPIO
|
||||
+ */
|
||||
+ ret = pinctrl_gpio_direction_output(chip->base + pin);
|
||||
+ if (ret)
|
||||
+ return ret;
|
||||
+
|
||||
+ regmap_update_bits(pc->regs, dirout, BIT(bank_pin), BIT(bank_pin));
|
||||
+ regmap_update_bits(pc->regs, data, BIT(bank_pin), val);
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+static int bcm6318_gpio_get(struct gpio_chip *chip, unsigned int pin)
|
||||
+{
|
||||
+ struct bcm6318_pinctrl *pc = gpiochip_get_data(chip);
|
||||
+ unsigned int data = bcm6318_reg_off(BCM6318_DATA_REG, pin);
|
||||
+ unsigned int bank_pin = bcm6318_bank_pin(pin);
|
||||
+ unsigned int val;
|
||||
+
|
||||
+ regmap_read(pc->regs, data, &val);
|
||||
+
|
||||
+ return !!(val & BIT(bank_pin));
|
||||
+}
|
||||
+
|
||||
+static int bcm6318_gpio_get_direction(struct gpio_chip *chip, unsigned int pin)
|
||||
+{
|
||||
+ struct bcm6318_pinctrl *pc = gpiochip_get_data(chip);
|
||||
+ unsigned int dirout = bcm6318_reg_off(BCM6318_DIROUT_REG, pin);
|
||||
+ unsigned int bank_pin = bcm6318_bank_pin(pin);
|
||||
+ unsigned int val;
|
||||
+
|
||||
+ regmap_read(pc->regs, dirout, &val);
|
||||
+
|
||||
+ if (val & BIT(bank_pin))
|
||||
+ return GPIO_LINE_DIRECTION_OUT;
|
||||
+
|
||||
+ return GPIO_LINE_DIRECTION_IN;
|
||||
+}
|
||||
+
|
||||
+static void bcm6318_gpio_set(struct gpio_chip *chip, unsigned int pin,
|
||||
+ int value)
|
||||
+{
|
||||
+ struct bcm6318_pinctrl *pc = gpiochip_get_data(chip);
|
||||
+ unsigned int data = bcm6318_reg_off(BCM6318_DATA_REG, pin);
|
||||
+ unsigned int bank_pin = bcm6318_bank_pin(pin);
|
||||
+ unsigned int val = value ? BIT(bank_pin) : 0;
|
||||
+
|
||||
+ regmap_update_bits(pc->regs, data, BIT(bank_pin), val);
|
||||
+}
|
||||
+
|
||||
+static int bcm6318_gpio_to_irq(struct gpio_chip *chip, unsigned gpio)
|
||||
+{
|
||||
+ char irq_name[7];
|
||||
+
|
||||
+ sprintf(irq_name, "gpio%d", gpio);
|
||||
+
|
||||
+ return of_irq_get_byname(chip->of_node, irq_name);
|
||||
+}
|
||||
+
|
||||
+static int bcm6318_pinctrl_get_group_count(struct pinctrl_dev *pctldev)
|
||||
+{
|
||||
+ return ARRAY_SIZE(bcm6318_groups);
|
||||
@ -448,51 +575,36 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+static void bcm6318_rmw_mux(struct bcm6318_pinctrl *pctl, unsigned pin,
|
||||
+ u32 mode, u32 mux)
|
||||
+static inline void bcm6318_rmw_mux(struct bcm6318_pinctrl *pc, unsigned pin,
|
||||
+ unsigned int mode, unsigned int mux)
|
||||
+{
|
||||
+ unsigned long flags;
|
||||
+ u32 reg;
|
||||
+ if (pin < PINS_PER_BANK)
|
||||
+ regmap_update_bits(pc->regs, BCM6318_MODE_REG, BIT(pin),
|
||||
+ mode ? BIT(pin) : 0);
|
||||
+
|
||||
+ spin_lock_irqsave(&pctl->lock, flags);
|
||||
+ if (pin < 32) {
|
||||
+ reg = __raw_readl(pctl->mode);
|
||||
+ reg &= ~BIT(pin);
|
||||
+ if (mode)
|
||||
+ reg |= BIT(pin);
|
||||
+ __raw_writel(reg, pctl->mode);
|
||||
+ }
|
||||
+
|
||||
+ if (pin < 48) {
|
||||
+ reg = __raw_readl(pctl->mux[pin / 16]);
|
||||
+ reg &= ~(3UL << ((pin % 16) * 2));
|
||||
+ reg |= mux << ((pin % 16) * 2);
|
||||
+ __raw_writel(reg, pctl->mux[pin / 16]);
|
||||
+ }
|
||||
+ spin_unlock_irqrestore(&pctl->lock, flags);
|
||||
+ if (pin < BCM6318_NUM_MUX)
|
||||
+ regmap_update_bits(pc->regs,
|
||||
+ bcm6318_mux_off(pin),
|
||||
+ 3UL << ((pin % 16) * 2),
|
||||
+ mux << ((pin % 16) * 2));
|
||||
+}
|
||||
+
|
||||
+static void bcm6318_set_pad(struct bcm6318_pinctrl *pctl, unsigned pin, u8 val)
|
||||
+static inline void bcm6318_set_pad(struct bcm6318_pinctrl *pc, unsigned pin,
|
||||
+ uint8_t val)
|
||||
+{
|
||||
+ unsigned long flags;
|
||||
+ u32 reg;
|
||||
+
|
||||
+ spin_lock_irqsave(&pctl->lock, flags);
|
||||
+ reg = __raw_readl(pctl->pad[pin / 8]);
|
||||
+ reg &= ~(0xfUL << ((pin % 8) * 4));
|
||||
+ reg |= val << ((pin % 8) * 4);
|
||||
+ __raw_writel(reg, pctl->pad[pin / 8]);
|
||||
+ spin_unlock_irqrestore(&pctl->lock, flags);
|
||||
+ regmap_update_bits(pc->regs, bcm6318_pad_off(pin),
|
||||
+ 0xfUL << ((pin % 8) * 4),
|
||||
+ val << ((pin % 8) * 4));
|
||||
+}
|
||||
+
|
||||
+static int bcm6318_pinctrl_set_mux(struct pinctrl_dev *pctldev,
|
||||
+ unsigned selector, unsigned group)
|
||||
+{
|
||||
+ struct bcm6318_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
|
||||
+ const struct bcm6318_pingroup *grp = &bcm6318_groups[group];
|
||||
+ struct bcm6318_pinctrl *pc = pinctrl_dev_get_drvdata(pctldev);
|
||||
+ const struct bcm6318_pingroup *pg = &bcm6318_groups[group];
|
||||
+ const struct bcm6318_function *f = &bcm6318_funcs[selector];
|
||||
+
|
||||
+ bcm6318_rmw_mux(pctl, grp->pins[0], f->mode_val, f->mux_val);
|
||||
+ bcm6318_rmw_mux(pc, pg->pins[0], f->mode_val, f->mux_val);
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
@ -501,94 +613,102 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+ struct pinctrl_gpio_range *range,
|
||||
+ unsigned offset)
|
||||
+{
|
||||
+ struct bcm6318_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
|
||||
+ struct bcm6318_pinctrl *pc = pinctrl_dev_get_drvdata(pctldev);
|
||||
+
|
||||
+ /* disable all functions using this pin */
|
||||
+ if (offset < 13) {
|
||||
+ /* GPIOs 0-12 use mux 0 as GPIO function */
|
||||
+ bcm6318_rmw_mux(pctl, offset, 0, 0);
|
||||
+ bcm6318_rmw_mux(pc, offset, 0, 0);
|
||||
+ } else if (offset < 42) {
|
||||
+ /* GPIOs 13-41 use mux 3 as GPIO function */
|
||||
+ bcm6318_rmw_mux(pctl, offset, 0, 3);
|
||||
+ bcm6318_rmw_mux(pc, offset, 0, 3);
|
||||
+
|
||||
+ /* FIXME: revert to old value for non gpio? */
|
||||
+ bcm6318_set_pad(pctl, offset, 0);
|
||||
+ } else {
|
||||
+ /* no idea, really */
|
||||
+ bcm6318_set_pad(pc, offset, 0);
|
||||
+ }
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+static struct pinctrl_ops bcm6318_pctl_ops = {
|
||||
+ .get_groups_count = bcm6318_pinctrl_get_group_count,
|
||||
+ .get_group_name = bcm6318_pinctrl_get_group_name,
|
||||
+ .get_group_pins = bcm6318_pinctrl_get_group_pins,
|
||||
+#ifdef CONFIG_OF
|
||||
+ .dt_node_to_map = pinconf_generic_dt_node_to_map_pin,
|
||||
+ .dt_free_map = pinctrl_utils_free_map,
|
||||
+#endif
|
||||
+ .get_groups_count = bcm6318_pinctrl_get_group_count,
|
||||
+ .get_group_name = bcm6318_pinctrl_get_group_name,
|
||||
+ .get_group_pins = bcm6318_pinctrl_get_group_pins,
|
||||
+ .dt_node_to_map = pinconf_generic_dt_node_to_map_pin,
|
||||
+ .dt_free_map = pinctrl_utils_free_map,
|
||||
+};
|
||||
+
|
||||
+static struct pinmux_ops bcm6318_pmx_ops = {
|
||||
+ .get_functions_count = bcm6318_pinctrl_get_func_count,
|
||||
+ .get_function_name = bcm6318_pinctrl_get_func_name,
|
||||
+ .get_function_groups = bcm6318_pinctrl_get_groups,
|
||||
+ .set_mux = bcm6318_pinctrl_set_mux,
|
||||
+ .gpio_request_enable = bcm6318_gpio_request_enable,
|
||||
+ .strict = true,
|
||||
+ .get_functions_count = bcm6318_pinctrl_get_func_count,
|
||||
+ .get_function_name = bcm6318_pinctrl_get_func_name,
|
||||
+ .get_function_groups = bcm6318_pinctrl_get_groups,
|
||||
+ .set_mux = bcm6318_pinctrl_set_mux,
|
||||
+ .gpio_request_enable = bcm6318_gpio_request_enable,
|
||||
+ .strict = true,
|
||||
+};
|
||||
+
|
||||
+static int bcm6318_pinctrl_probe(struct platform_device *pdev)
|
||||
+{
|
||||
+ struct bcm6318_pinctrl *pctl;
|
||||
+ struct resource *res;
|
||||
+ void __iomem *mode, *mux, *pad;
|
||||
+ unsigned i;
|
||||
+ struct device *dev = &pdev->dev;
|
||||
+ struct device_node *np = dev->of_node;
|
||||
+ struct bcm6318_pinctrl *pc;
|
||||
+ int err;
|
||||
+
|
||||
+ res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "mode");
|
||||
+ mode = devm_ioremap_resource(&pdev->dev, res);
|
||||
+ if (IS_ERR(mode))
|
||||
+ return PTR_ERR(mode);
|
||||
+
|
||||
+ res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "mux");
|
||||
+ mux = devm_ioremap_resource(&pdev->dev, res);
|
||||
+ if (IS_ERR(mux))
|
||||
+ return PTR_ERR(mux);
|
||||
+
|
||||
+ res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "pad");
|
||||
+ pad = devm_ioremap_resource(&pdev->dev, res);
|
||||
+ if (IS_ERR(pad))
|
||||
+ return PTR_ERR(pad);
|
||||
+
|
||||
+ pctl = devm_kzalloc(&pdev->dev, sizeof(*pctl), GFP_KERNEL);
|
||||
+ if (!pctl)
|
||||
+ pc = devm_kzalloc(dev, sizeof(*pc), GFP_KERNEL);
|
||||
+ if (!pc)
|
||||
+ return -ENOMEM;
|
||||
+
|
||||
+ spin_lock_init(&pctl->lock);
|
||||
+ platform_set_drvdata(pdev, pc);
|
||||
+ pc->dev = dev;
|
||||
+
|
||||
+ pctl->mode = mode;
|
||||
+ pc->regs = syscon_node_to_regmap(dev->parent->of_node);
|
||||
+ if (IS_ERR(pc->regs))
|
||||
+ return PTR_ERR(pc->regs);
|
||||
+
|
||||
+ for (i = 0; i < 3; i++)
|
||||
+ pctl->mux[i] = mux + (i * 4);
|
||||
+ pc->gpio_chip.label = MODULE_NAME;
|
||||
+ pc->gpio_chip.owner = THIS_MODULE;
|
||||
+ pc->gpio_chip.request = gpiochip_generic_request;
|
||||
+ pc->gpio_chip.free = gpiochip_generic_free;
|
||||
+ pc->gpio_chip.direction_input = bcm6318_gpio_direction_input;
|
||||
+ pc->gpio_chip.direction_output = bcm6318_gpio_direction_output;
|
||||
+ pc->gpio_chip.get_direction = bcm6318_gpio_get_direction;
|
||||
+ pc->gpio_chip.get = bcm6318_gpio_get;
|
||||
+ pc->gpio_chip.set = bcm6318_gpio_set;
|
||||
+ pc->gpio_chip.set_config = gpiochip_generic_config;
|
||||
+ pc->gpio_chip.base = -1;
|
||||
+ pc->gpio_chip.ngpio = BCM6318_NUM_GPIOS;
|
||||
+ pc->gpio_chip.can_sleep = false;
|
||||
+ pc->gpio_chip.parent = dev;
|
||||
+ pc->gpio_chip.of_node = np;
|
||||
+
|
||||
+ for (i = 0; i < 6; i++)
|
||||
+ pctl->pad[i] = pad + (i * 4);
|
||||
+ if (of_get_property(np, "interrupt-names", NULL))
|
||||
+ pc->gpio_chip.to_irq = bcm6318_gpio_to_irq;
|
||||
+
|
||||
+ pctl->desc.name = dev_name(&pdev->dev);
|
||||
+ pctl->desc.owner = THIS_MODULE;
|
||||
+ pctl->desc.pctlops = &bcm6318_pctl_ops;
|
||||
+ pctl->desc.pmxops = &bcm6318_pmx_ops;
|
||||
+ err = gpiochip_add_data(&pc->gpio_chip, pc);
|
||||
+ if (err) {
|
||||
+ dev_err(dev, "could not add GPIO chip\n");
|
||||
+ return err;
|
||||
+ }
|
||||
+
|
||||
+ pctl->desc.npins = ARRAY_SIZE(bcm6318_pins);
|
||||
+ pctl->desc.pins = bcm6318_pins;
|
||||
+ pc->pctl_desc.name = MODULE_NAME,
|
||||
+ pc->pctl_desc.pins = bcm6318_pins,
|
||||
+ pc->pctl_desc.npins = ARRAY_SIZE(bcm6318_pins),
|
||||
+ pc->pctl_desc.pctlops = &bcm6318_pctl_ops,
|
||||
+ pc->pctl_desc.pmxops = &bcm6318_pmx_ops,
|
||||
+ pc->pctl_desc.owner = THIS_MODULE,
|
||||
+
|
||||
+ platform_set_drvdata(pdev, pctl);
|
||||
+ pc->pctl_dev = devm_pinctrl_register(dev, &pc->pctl_desc, pc);
|
||||
+ if (IS_ERR(pc->pctl_dev)) {
|
||||
+ gpiochip_remove(&pc->gpio_chip);
|
||||
+ return PTR_ERR(pc->pctl_dev);
|
||||
+ }
|
||||
+
|
||||
+ pctl->pctldev = bcm63xx_pinctrl_register(pdev, &pctl->desc, pctl,
|
||||
+ pctl->gpio, BCM6318_NGPIO);
|
||||
+ if (IS_ERR(pctl->pctldev))
|
||||
+ return PTR_ERR(pctl->pctldev);
|
||||
+ pc->gpio_range.name = MODULE_NAME;
|
||||
+ pc->gpio_range.npins = BCM6318_NUM_GPIOS;
|
||||
+ pc->gpio_range.base = pc->gpio_chip.base;
|
||||
+ pc->gpio_range.gc = &pc->gpio_chip;
|
||||
+ pinctrl_add_gpio_range(pc->pctl_dev, &pc->gpio_range);
|
||||
+
|
||||
+ dev_info(dev, "registered\n");
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
@ -601,7 +721,7 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
||||
+static struct platform_driver bcm6318_pinctrl_driver = {
|
||||
+ .probe = bcm6318_pinctrl_probe,
|
||||
+ .driver = {
|
||||
+ .name = "bcm6318-pinctrl",
|
||||
+ .name = MODULE_NAME,
|
||||
+ .of_match_table = bcm6318_pinctrl_match,
|
||||
+ },
|
||||
+};
|
Loading…
Reference in New Issue
Block a user