HomeSort by: relevance | last modified time | path
    Searched defs:rst (Results 1 - 25 of 93) sorted by relevancy

1 2 3 4

  /src/sys/dev/fdt/
dwcwdt_fdt.c 64 struct fdtbus_reset *rst; local in function:dwcwdt_fdt_attach
79 rst = fdtbus_reset_get_index(phandle, 0);
80 if (rst && fdtbus_reset_assert(rst) != 0) {
84 if (rst && fdtbus_reset_deassert(rst) != 0) {
ahcisata_fdt.c 64 struct fdtbus_reset *rst; local in function:ahcisata_fdt_attach
97 for (i = 0; (rst = fdtbus_reset_get_index(phandle, i)) != NULL; i++)
98 if (fdtbus_reset_deassert(rst) != 0) {
ehci_fdt.c 74 struct fdtbus_reset *rst; local in function:ehci_fdt_attach
96 for (n = 0; (rst = fdtbus_reset_get_index(phandle, n)) != NULL; n++)
97 if (fdtbus_reset_deassert(rst) != 0) {
ohci_fdt.c 74 struct fdtbus_reset *rst; local in function:ohci_fdt_attach
96 for (n = 0; (rst = fdtbus_reset_get_index(phandle, n)) != NULL; n++)
97 if (fdtbus_reset_deassert(rst) != 0) {
dwiic_fdt.c 107 struct fdtbus_reset *rst = fdtbus_reset_get_index(phandle, 0); local in function:dwiic_fdt_attach
108 if (rst != NULL) {
109 if (fdtbus_reset_deassert(rst) != 0) {
fdt_reset.c 84 struct fdtbus_reset *rst = NULL; local in function:fdtbus_reset_get_index
114 rst = kmem_alloc(sizeof(*rst), KM_SLEEP);
115 rst->rst_rc = rc;
116 rst->rst_priv = rst_priv;
128 return rst;
145 fdtbus_reset_put(struct fdtbus_reset *rst)
147 struct fdtbus_reset_controller *rc = rst->rst_rc;
149 rc->rc_funcs->release(rc->rc_dev, rst->rst_priv);
150 kmem_free(rst, sizeof(*rst))
    [all...]
  /src/sys/arch/arm/sunxi/
sun9i_a80_mmcclk.c 83 struct fdtbus_reset *rst; local in function:sun9i_a80_mmcclk_attach
101 rst = fdtbus_reset_get(phandle, "ahb");
102 if (rst == NULL || fdtbus_reset_deassert(rst) != 0) {
sunxi_de2_ccu.c 129 struct fdtbus_reset *rst; local in function:sunxi_de2_ccu_attach
152 rst = fdtbus_reset_get_index(phandle, 0);
153 if (rst == NULL || fdtbus_reset_deassert(rst) != 0) {
sunxi_dwhdmi.c 235 struct fdtbus_reset *rst; local in function:sunxi_dwhdmi_attach
298 rst = fdtbus_reset_get(phandle, "ctrl");
299 if (rst == NULL || fdtbus_reset_deassert(rst) != 0) {
sunxi_musb.c 307 struct fdtbus_reset *rst; local in function:sunxi_musb_attach
336 for (n = 0; (rst = fdtbus_reset_get_index(phandle, n)) != NULL; n++)
337 if (fdtbus_reset_deassert(rst) != 0) {
sunxi_twi.c 131 struct fdtbus_reset *rst; local in function:sunxi_twi_attach
158 if ((rst = fdtbus_reset_get_index(phandle, 0)) != NULL)
159 if (fdtbus_reset_deassert(rst) != 0) {
  /src/sys/arch/arm/ti/
ti_ehci.c 76 struct fdtbus_reset *rst; local in function:ti_ehci_attach
98 for (n = 0; (rst = fdtbus_reset_get_index(phandle, n)) != NULL; n++)
99 if (fdtbus_reset_deassert(rst) != 0) {
  /src/sys/arch/evbmips/rasoc/
autoconf.c 107 const uint32_t rst = bus_space_read_4(bst, ra_sysctl_bsh, local in function:ra_device_fixup
109 if ((rst & map->map_rst) != 0) {
111 rst & ~map->map_rst);
  /src/sys/external/gpl2/dts/dist/arch/mips/boot/dts/qca/
ar9132.dtsi 123 rst: reset-controller@1806001c { label
137 resets = <&rst 5>;
165 resets = <&rst 4>, <&rst 3>;
ar9331.dtsi 111 rst: reset-controller@1806001c { label
124 resets = <&rst 9>, <&rst 22>;
139 resets = <&rst 13>, <&rst 23>;
164 resets = <&rst 8>;
269 resets = <&rst 5>;
295 resets = <&rst 4>, <&rst 3>;
  /src/sys/arch/atari/stand/libsa/
diskio.c 40 typedef struct { rdsec_f rds; u_int rst; u_int rend; } bdevd_t; member in struct:__anonc0d4e0bf0108
73 bootdev.rst = pd->p_offset;
96 daddr_t stb = dd->rst + dblk;
  /src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/bitmain/
bm1880.dtsi 113 rst: reset-controller@c00 { label in label:sctrl
183 resets = <&rst BM1880_RST_UART0_1_CLK>;
196 resets = <&rst BM1880_RST_UART0_1_ACLK>;
209 resets = <&rst BM1880_RST_UART2_3_CLK>;
222 resets = <&rst BM1880_RST_UART2_3_ACLK>;
  /src/sys/arch/arm/rockchip/
rk3288_usb.c 155 struct fdtbus_reset *rst; local in function:rk3288_usbphy_attach
169 rst = fdtbus_reset_get(phandle, "phy-reset");
170 if (rst == NULL || fdtbus_reset_deassert(rst) != 0) {
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_si_smc.c 160 u32 rst = RREG32_SMC(SMC_SYSCON_RESET_CNTL); local in function:amdgpu_si_is_smc_running
163 if (!(rst & RST_REG) && !(clk & CK_DISABLE))
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/core/
tegra.h 15 struct reset_control *rst; member in struct:nvkm_device_tegra
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_si_smc.c 168 u32 rst = RREG32_SMC(SMC_SYSCON_RESET_CNTL); local in function:si_is_smc_running
171 if (!(rst & RST_REG) && !(clk & CK_DISABLE))
  /src/sys/arch/riscv/starfive/
jh71x0_eth.c 141 struct fdtbus_reset *rst; local in function:jh71x0_eth_attach
142 for (n = 0; (rst = fdtbus_reset_get_index(phandle, n)) != NULL; n++) {
143 if (fdtbus_reset_deassert(rst) != 0) {
jh71x0_temp.c 157 struct fdtbus_reset * rst = fdtbus_reset_get(phandle, cr); local in function:jh71x0_temp_attach
158 if (rst == NULL) {
162 error = fdtbus_reset_deassert(rst);
  /src/sys/arch/arm/amlogic/
mesongxl_usb3phy.c 161 struct fdtbus_reset *rst; local in function:mesongxl_usb3phy_attach
192 for (n = 0; (rst = fdtbus_reset_get_index(phandle, n)) != NULL; n++) {
193 if (fdtbus_reset_deassert(rst) != 0) {
  /src/sys/arch/mips/ralink/
ralink_com.c 176 /* address/irq/rst/gpiomode mappings */
180 uint32_t rst; member in struct:__anond5bf53900108
209 return ralink_uart_maps[i].rst;

Completed in 20 milliseconds

1 2 3 4