/freebsd/sys/contrib/device-tree/src/arm64/ti/ |
H A D | k3-pinctrl.h | 44 #define AM62AX_IOPAD(pa, val, muxmode) (((pa) & 0x1fff)) ((val) | (muxmode)) argument 45 #define AM62AX_MCU_IOPAD(pa, val, muxmode) (((pa) & 0x1fff)) ((val) | (muxmode)) argument 47 #define AM62PX_IOPAD(pa, val, muxmode) (((pa) & 0x1fff)) ((val) | (muxmode)) argument 48 #define AM62PX_MCU_IOPAD(pa, val, muxmode) (((pa) & 0x1fff)) ((val) | (muxmode)) argument 50 #define AM62X_IOPAD(pa, val, muxmode) (((pa) & 0x1fff)) ((val) | (muxmode)) argument 51 #define AM62X_MCU_IOPAD(pa, val, muxmode) (((pa) & 0x1fff)) ((val) | (muxmode)) argument 53 #define AM64X_IOPAD(pa, val, muxmode) (((pa) & 0x1fff)) ((val) | (muxmode)) argument 54 #define AM64X_MCU_IOPAD(pa, val, muxmode) (((pa) & 0x1fff)) ((val) | (muxmode)) argument 56 #define AM65X_IOPAD(pa, val, muxmode) (((pa) & 0x1fff)) ((val) | (muxmode)) argument 57 #define AM65X_WKUP_IOPAD(pa, val, muxmode) (((pa) & 0x1fff)) ((val) | (muxmode)) argument [all …]
|
/freebsd/sys/contrib/device-tree/include/dt-bindings/pinctrl/ |
H A D | k3.h | 39 #define AM62AX_IOPAD(pa, val, muxmode) (((pa) & 0x1fff)) ((val) | (muxmode)) argument 40 #define AM62AX_MCU_IOPAD(pa, val, muxmode) (((pa) & 0x1fff)) ((val) | (muxmode)) argument 42 #define AM62X_IOPAD(pa, val, muxmode) (((pa) & 0x1fff)) ((val) | (muxmode)) argument 43 #define AM62X_MCU_IOPAD(pa, val, muxmode) (((pa) & 0x1fff)) ((val) | (muxmode)) argument 45 #define AM64X_IOPAD(pa, val, muxmode) (((pa) & 0x1fff)) ((val) | (muxmode)) argument 46 #define AM64X_MCU_IOPAD(pa, val, muxmode) (((pa) & 0x1fff)) ((val) | (muxmode)) argument 48 #define AM65X_IOPAD(pa, val, muxmode) (((pa) & 0x1fff)) ((val) | (muxmode)) argument 49 #define AM65X_WKUP_IOPAD(pa, val, muxmode) (((pa) & 0x1fff)) ((val) | (muxmode)) argument 51 #define J721E_IOPAD(pa, val, muxmode) (((pa) & 0x1fff)) ((val) | (muxmode)) argument 52 #define J721E_WKUP_IOPAD(pa, val, muxmode) (((pa) & 0x1fff)) ((val) | (muxmode)) argument [all …]
|
/freebsd/sys/arm/ti/ |
H A D | ti_pinmux.c | 114 * ti_pinmux_padconf_set_internal - sets the muxmode and state for a pad/pin 116 * @muxmode: the name of the mode to use for the pin, i.e. "uart1_rx" 130 const char *muxmode, unsigned int state) in ti_pinmux_padconf_set_internal() argument 141 (strcmp(padconf->muxmodes[mode], muxmode) == 0)) { in ti_pinmux_padconf_set_internal() 148 printf("Invalid mode \"%s\"\n", muxmode); in ti_pinmux_padconf_set_internal() 157 reg_val, muxmode); in ti_pinmux_padconf_set_internal() 165 * ti_pinmux_padconf_set - sets the muxmode and state for a pad/pin 167 * @muxmode: the name of the mode to use for the pin, i.e. "uart1_rx" 179 ti_pinmux_padconf_set(const char *padname, const char *muxmode, unsigned int state) in ti_pinmux_padconf_set() argument 191 return (ti_pinmux_padconf_set_internal(ti_pinmux_sc, padconf, muxmode, state)); in ti_pinmux_padconf_set() [all …]
|
H A D | ti_pinmux.h | 70 int ti_pinmux_padconf_set(const char *padname, const char *muxmode, 72 int ti_pinmux_padconf_get(const char *padname, const char **muxmode,
|
/freebsd/sys/contrib/device-tree/Bindings/ata/ |
H A D | cortina,gemini-sata-bridge.yaml | 46 cortina,gemini-ata-muxmode: 72 The muxmode setting decides whether ATA0 or ATA1 is brought out, 78 The Muxmode decides what PATA blocks will be muxed out and how. 83 - cortina,gemini-ata-muxmode 104 cortina,gemini-ata-muxmode = <3>;
|
H A D | cortina,gemini-sata-bridge.txt | 16 - cortina,gemini-ata-muxmode: tell the desired multiplexing mode for 35 The muxmode setting decides whether ATA0 or ATA1 is brought out, 38 inside the Gemnini SoC. The Muxmode decides what PATA blocks will 52 cortina,gemini-ata-muxmode = <3>;
|
/freebsd/sys/arm/ti/am335x/ |
H A D | am335x_dmtpps.c | 173 char muxmode[12]; in dmtpps_find_tmr_num_by_tunable() local 183 snprintf(muxmode, sizeof(muxmode), "timer%d", pi->tmr_num); in dmtpps_find_tmr_num_by_tunable() 184 err = ti_pinmux_padconf_set(pi->ballname, muxmode, in dmtpps_find_tmr_num_by_tunable() 188 "for %s to input mode\n", muxmode); in dmtpps_find_tmr_num_by_tunable() 192 "for %s\n", iname, muxmode); in dmtpps_find_tmr_num_by_tunable() 213 char muxmode[12]; in dmtpps_find_tmr_num_by_padconf() local 217 snprintf(muxmode, sizeof(muxmode), "timer%d", pi->tmr_num); in dmtpps_find_tmr_num_by_padconf() 219 strcmp(muxmode, padmux) == 0) in dmtpps_find_tmr_num_by_padconf()
|
/freebsd/sys/contrib/device-tree/src/arm/gemini/ |
H A D | gemini-dlink-dns-313.dts | 283 /* The ROM uses this muxmode */ 284 cortina,gemini-ata-muxmode = <0>;
|
H A D | gemini-ns2502.dts | 84 cortina,gemini-ata-muxmode = <3>;
|
H A D | gemini-ssi1328.dts | 94 cortina,gemini-ata-muxmode = <0>;
|
H A D | gemini-nas4220b.dts | 151 cortina,gemini-ata-muxmode = <0>;
|
H A D | gemini-sq201.dts | 238 cortina,gemini-ata-muxmode = <0>;
|
H A D | gemini-sl93512r.dts | 242 cortina,gemini-ata-muxmode = <0>;
|
H A D | gemini-dlink-dir-685.dts | 425 cortina,gemini-ata-muxmode = <0>;
|
/freebsd/sys/arm/ti/omap4/pandaboard/ |
H A D | pandaboard.c | 142 * muxmode=fref_clk3_out, pullup/down=disabled, input buffer=disabled, in pandaboard_usb_hub_init()
|