/freebsd/sys/dev/hwreset/ |
H A D | hwreset.c | 52 hwreset_assert(hwreset_t rst) in hwreset_assert() argument 55 return (HWRESET_ASSERT(rst->provider_dev, rst->rst_id, true)); in hwreset_assert() 59 hwreset_deassert(hwreset_t rst) in hwreset_deassert() argument 62 return (HWRESET_ASSERT(rst->provider_dev, rst->rst_id, false)); in hwreset_deassert() 66 hwreset_is_asserted(hwreset_t rst, bool *value) in hwreset_is_asserted() argument 69 return (HWRESET_IS_ASSERTED(rst->provider_dev, rst->rst_id, value)); in hwreset_is_asserted() 73 hwreset_release(hwreset_t rst) in hwreset_release() argument 75 free(rst, M_HWRESET); in hwreset_release() 82 hwreset_t rst; in hwreset_get_by_id() local 85 rst = malloc(sizeof(struct hwreset), M_HWRESET, in hwreset_get_by_id() [all …]
|
H A D | hwreset.h | 50 hwreset_t *rst); 51 void hwreset_release(hwreset_t rst); 53 int hwreset_assert(hwreset_t rst); 54 int hwreset_deassert(hwreset_t rst); 55 int hwreset_is_asserted(hwreset_t rst, bool *value); 59 hwreset_t *rst); 61 hwreset_t *rst);
|
/freebsd/sys/dev/usb/controller/ |
H A D | generic_ehci_fdt.c | 71 hwreset_t rst; member 113 hwreset_t rst; in generic_ehci_fdt_attach() local 136 for (off = 0; hwreset_get_by_ofw_idx(dev, 0, off, &rst) == 0; off++) { in generic_ehci_fdt_attach() 137 err = hwreset_deassert(rst); in generic_ehci_fdt_attach() 143 rstp->rst = rst; in generic_ehci_fdt_attach() 181 struct hwrst_list *rst, *rst_tmp; in generic_ehci_fdt_detach() local 206 TAILQ_FOREACH_SAFE(rst, &sc->rst_list, next, rst_tmp) { in generic_ehci_fdt_detach() 207 hwreset_assert(rst->rst); in generic_ehci_fdt_detach() 208 hwreset_release(rst->rst); in generic_ehci_fdt_detach() 209 TAILQ_REMOVE(&sc->rst_list, rst, next); in generic_ehci_fdt_detach() [all …]
|
H A D | generic_ohci.c | 73 hwreset_t rst; member 112 hwreset_t rst; in generic_ohci_attach() local 178 for (off = 0; hwreset_get_by_ofw_idx(dev, 0, off, &rst) == 0; off++) { in generic_ohci_attach() 179 err = hwreset_deassert(rst); in generic_ohci_attach() 185 rstp->rst = rst; in generic_ohci_attach() 231 struct hwrst_list *rst, *rst_tmp; in generic_ohci_detach() local 281 TAILQ_FOREACH_SAFE(rst, &sc->rst_list, next, rst_tmp) { in generic_ohci_detach() 282 hwreset_assert(rst->rst); in generic_ohci_detach() [all...] |
/freebsd/sys/contrib/device-tree/src/arm64/altera/ |
H A D | socfpga_stratix10.dtsi | 7 #include <dt-bindings/reset/altr,rst-mgr-s10.h> 167 resets = <&rst EMAC0_RESET>, <&rst EMAC0_OCP_RESET>; 185 resets = <&rst EMAC1_RESET>, <&rst EMAC1_OCP_RESET>; 203 resets = <&rst EMAC2_RESET>, <&rst EMAC2_OCP_RESET>; 220 resets = <&rst GPIO0_RESET>; 240 resets = <&rst GPIO1_RESET>; 261 resets = <&rst I2C0_RESE 371 rst: rstmgr@ffd11000 { global() label [all...] |
/freebsd/sys/contrib/device-tree/src/arm64/intel/ |
H A D | socfpga_agilex.dtsi | 7 #include <dt-bindings/reset/altr,rst-mgr-s10.h> 172 resets = <&rst EMAC0_RESET>, <&rst EMAC0_OCP_RESET>; 190 resets = <&rst EMAC1_RESET>, <&rst EMAC1_OCP_RESET>; 208 resets = <&rst EMAC2_RESET>, <&rst EMAC2_OCP_RESET>; 225 resets = <&rst GPIO0_RESET>; 245 resets = <&rst GPIO1_RESET>; 266 resets = <&rst I2C0_RESE 375 rst: rstmgr@ffd11000 { global() label [all...] |
/freebsd/contrib/tcsh/ |
H A D | ed.init.c | 141 ed_Setup(int rst) in ed_Setup() argument 158 if (vdisable != (unsigned char) _POSIX_VDISABLE && rst != 0) in ed_Setup() 159 for (rst = 0; rst < C_NCC; rst++) { in ed_Setup() 160 if (ttychars[ED_IO][rst] == (unsigned char) _POSIX_VDISABLE) in ed_Setup() 161 ttychars[ED_IO][rst] = vdisable; in ed_Setup() 162 if (ttychars[EX_IO][rst] == (unsigned char) _POSIX_VDISABLE) in ed_Setup() 163 ttychars[EX_IO][rst] = vdisable; in ed_Setup() 233 if (rst) { in ed_Setup() 239 for (rst = 0; rst < C_NCC - 2; rst++) in ed_Setup() 240 if (ttychars[TS_IO][rst] != vdisable && in ed_Setup() [all …]
|
/freebsd/sys/arm/altera/socfpga/ |
H A D | socfpga_mp.c | 116 bus_space_handle_t scu, rst, ram; in _socfpga_mp_start_ap() local 139 RSTMGR_SIZE, 0, &rst) != 0) in _socfpga_mp_start_ap() 162 bus_space_write_4(fdtbus_bs_tag, rst, in _socfpga_mp_start_ap() 168 bus_space_write_4(fdtbus_bs_tag, rst, in _socfpga_mp_start_ap() 192 bus_space_write_4(fdtbus_bs_tag, rst, in _socfpga_mp_start_ap() 198 bus_space_write_4(fdtbus_bs_tag, rst, in _socfpga_mp_start_ap() 210 bus_space_unmap(fdtbus_bs_tag, rst, RSTMGR_SIZE); in _socfpga_mp_start_ap()
|
/freebsd/sys/contrib/device-tree/src/arm/intel/socfpga/ |
H A D | socfpga_arria10.dtsi | 7 #include <dt-bindings/reset/altr,rst-mgr-a10.h> 78 resets = <&rst DMA_RESET>, <&rst DMA_OCP_RESET>; 442 resets = <&rst EMAC0_RESET>, <&rst EMAC0_OCP_RESET>; 462 resets = <&rst EMAC1_RESET>, <&rst EMAC1_OCP_RESET>; 482 resets = <&rst EMAC2_RESET>, <&rst EMAC2_OCP_RESET>; 493 resets = <&rst GPIO0_RESE 782 rst: rstmgr@ffd05000 { global() label [all...] |
H A D | socfpga.dtsi | 6 #include <dt-bindings/reset/altr,rst-mgr.h> 85 resets = <&rst DMA_RESET>; 103 resets = <&rst CAN0_RESET>; 112 resets = <&rst CAN1_RESET>; 529 resets = <&rst LWHPS2FPGA_RESET>; 537 resets = <&rst HPS2FPGA_RESET>; 545 resets = <&rst FPGA2HPS_RESET>; 578 resets = <&rst EMAC0_RESET>; 597 resets = <&rst EMAC1_RESET>; 613 resets = <&rst GPIO0_RESE 805 rst: rstmgr@ffd05000 { global() label [all...] |
/freebsd/contrib/file/magic/Magdir/ |
H A D | rst | 3 # $File: rst,v 1.4 2023/07/27 18:26:32 christos Exp $ 4 # rst: ReStructuredText http://docutils.sourceforge.net/rst.html 13 !:ext rst
|
/freebsd/sys/contrib/device-tree/src/mips/qca/ |
H A D | ar9331.dtsi | 111 rst: reset-controller@1806001c { label 124 resets = <&rst 9>, <&rst 22>; 139 resets = <&rst 13>, <&rst 23>; 164 resets = <&rst 8>; 268 resets = <&rst 5>; 294 resets = <&rst 4>, <&rst 3>;
|
H A D | ar9132.dtsi | 123 rst: reset-controller@1806001c { label 137 resets = <&rst 5>; 165 resets = <&rst 4>, <&rst 3>;
|
/freebsd/sys/contrib/device-tree/Bindings/reset/ |
H A D | socfpga-reset.txt | 4 - compatible : "altr,rst-mgr" for (Cyclone5/Arria5/Arria10) 5 "altr,stratix10-rst-mgr","altr,rst-mgr" for Stratix10 ARM64 SoC 13 compatible = "altr,rst-mgr";
|
H A D | reset.txt | 41 rst: reset-controller { 62 resets = <&rst 20>; 69 resets = <&rst 10> <&rst 11> <&rst 12> <&rst 11>;
|
/freebsd/contrib/libxo/doc/ |
H A D | Makefile.am | 11 doc docs: xolint-errors.rst html 20 xolint-errors.rst: ${top_srcdir}/xolint/xolint.pl 21 perl ${top_srcdir}/xolint/xolint.pl -D > ${top_srcdir}/doc/xolint-errors.rst
|
/freebsd/sys/contrib/device-tree/Bindings/ata/ |
H A D | ahci-st.txt | 17 - reset-names : Associated names must be; "pwr-dwn", "sw-rst" and "pwr-rst" 32 reset-names = "pwr-dwn", "sw-rst", "pwr-rst";
|
/freebsd/sys/contrib/device-tree/Bindings/net/dsa/ |
H A D | ar9331.txt | 29 resets = <&rst 9>, <&rst 22>; 42 resets = <&rst 13>, <&rst 23>; 64 resets = <&rst 8>;
|
/freebsd/sys/contrib/device-tree/Bindings/fpga/ |
H A D | altera-hps2fpga-bridge.txt | 18 resets = <&rst LWHPS2FPGA_RESET>; 26 resets = <&rst HPS2FPGA_RESET>; 34 resets = <&rst FPGA2HPS_RESET>;
|
/freebsd/sbin/pfctl/tests/files/ |
H A D | pf0010.in | 6 block return-rst in inet proto tcp all 7 block return-rst in inet6 proto tcp all 8 block return-rst(ttl 10) in inet proto tcp all 9 block return-rst(ttl 10) in inet6 proto tcp all
|
/freebsd/sys/contrib/device-tree/src/arm/nxp/imx/ |
H A D | imx6ul-tqma6ul2.dtsi | 33 /* rst */ 50 /* rst */ 67 /* rst */
|
H A D | imx6ul-tqma6ul2l.dtsi | 33 /* rst */ 50 /* rst */ 67 /* rst */
|
H A D | imx6ull-tqma6ull2.dtsi | 38 /* rst */ 55 /* rst */ 72 /* rst */
|
H A D | imx6ull-tqma6ull2l.dtsi | 38 /* rst */ 55 /* rst */ 72 /* rst */
|
/freebsd/sys/dev/iicbus/controller/twsi/ |
H A D | a10_twsi.c | 87 hwreset_t rst; in a10_twsi_attach() local 93 if (hwreset_get_by_ofw_idx(dev, 0, 0, &rst) == 0) { in a10_twsi_attach() 94 error = hwreset_deassert(rst); in a10_twsi_attach()
|