Home
last modified time | relevance | path

Searched refs:reset (Results 1 – 25 of 426) sorted by relevance

12345678910>>...18

/bsp/allwinner/libraries/sunxi-hal/hal/source/prcm/prcm-sun50iw11/
A Dreset.c68 ccu_reg_addr->r_twi.reset = reset; in ccu_set_mclk_reset()
73 ccu_reg_addr->r_uart.reset = reset; in ccu_set_mclk_reset()
78 ccu_reg_addr->r_timer.reset = reset; in ccu_set_mclk_reset()
83 ccu_reg_addr->r_twd.reset = reset; in ccu_set_mclk_reset()
88 ccu_reg_addr->r_pwm.reset = reset; in ccu_set_mclk_reset()
93 ccu_reg_addr->r_owc.reset = reset; in ccu_set_mclk_reset()
98 ccu_reg_addr->r_rsb.reset = reset; in ccu_set_mclk_reset()
103 ccu_reg_addr->r_ir.reset = reset; in ccu_set_mclk_reset()
128 ccu_reg_addr->r_ac_gate.reset = reset; in ccu_set_mclk_reset()
132 ccu_reg_addr->r_ac_gate.reset = reset; in ccu_set_mclk_reset()
[all …]
/bsp/allwinner/libraries/sunxi-hal/hal/source/ccmu/
A Dhal_reset.c73 if (!reset) in hal_reset_control_put()
76 free(reset); in hal_reset_control_put()
85 if (!reset || !reset->rcdev) in hal_reset_control_assert()
90 rcdev = reset->rcdev; in hal_reset_control_assert()
104 if (!reset || !reset->rcdev) in hal_reset_control_deassert()
109 rcdev = reset->rcdev; in hal_reset_control_deassert()
123 if (!reset || !reset->rcdev) in hal_reset_control_reset()
128 rcdev = reset->rcdev; in hal_reset_control_reset()
132 return rcdev->ops->reset(rcdev, reset->id); in hal_reset_control_reset()
144 if (!reset || !reset->rcdev) in hal_reset_control_status()
[all …]
/bsp/allwinner/libraries/sunxi-hal/include/hal/
A Dhal_reset.h33 int (*reset)(struct reset_control_dev *rcdev, hal_reset_id_t id); member
67 int reset_control_unregister(struct reset_control *reset); //for reset system
71 int hal_reset_control_put(struct reset_control *reset);
73 int hal_reset_control_set(struct reset_control *reset); //for other module
75 int hal_reset_control_deassert(struct reset_control *reset); //for other module
77 int hal_reset_control_assert(struct reset_control *reset); //for other_module
79 int hal_reset_control_reset(struct reset_control *reset); //for other_module
81 int hal_reset_control_status(struct reset_control *reset); //for other_module
/bsp/allwinner/libraries/sunxi-hal/hal/source/ccmu/sunxi-ng/
A Dccu_common.c63 struct ccu_reset *reset; in ccu_common_init() local
106 reset = (struct ccu_reset *)malloc(sizeof(*reset)); in ccu_common_init()
107 if (!reset) in ccu_common_init()
113 reset->base = reg; in ccu_common_init()
114 reset->reset_map = desc->resets; in ccu_common_init()
115 reset->rcdev.ops = &ccu_reset_ops; in ccu_common_init()
116 reset->rcdev.type = desc->reset_type; in ccu_common_init()
117 reset->rcdev.nr_resets = desc->num_resets; in ccu_common_init()
119 ret = reset_control_register(&reset->rcdev); in ccu_common_init()
129 free(reset); in ccu_common_init()
/bsp/samd21/sam_d2x_asflib/sam0/boards/samd20_xplained_pro/debug_scripts/iar/
A Dsamd20_xplained_pro_flash.mac9 // Hardware Reset: CPU is automatically halted after the reset
12 // peripheral reset RSTC_CR
24 // Hardware Reset: CPU is automatically halted after the reset
27 // peripheral reset RSTC_CR
39 // perpheral reset RSTC_CR
A Dsamd20_xplained_pro_sram.mac9 // Hardware Reset: CPU is automatically halted after the reset
12 // peripheral reset RSTC_CR
24 // Hardware Reset: CPU is automatically halted after the reset
27 // peripheral reset RSTC_CR
39 // perpheral reset RSTC_CR
/bsp/samd21/sam_d2x_asflib/sam0/boards/samd21_xplained_pro/debug_scripts/gcc/
A Dsamd21_xplained_pro_sram.gdb6 # define 'reset' command
7 define reset definition
13 monitor reset
23 # end of 'reset' command
A Dsamd21_xplained_pro_flash.gdb6 # define 'reset' command
7 define reset definition
13 monitor reset
28 # end of 'reset' command
/bsp/samd21/sam_d2x_asflib/sam0/boards/samd20_xplained_pro/debug_scripts/gcc/
A Dsamd20_xplained_pro_sram.gdb6 # define 'reset' command
7 define reset definition
13 monitor reset
26 # end of 'reset' command
A Dsamd20_xplained_pro_flash.gdb6 # define 'reset' command
7 define reset definition
13 monitor reset
28 # end of 'reset' command
/bsp/allwinner/libraries/sunxi-hal/hal/source/ccmu/sunxi/
A Dclk_periph.c99 reg = readl(gate->reset); in __sunxi_clk_periph_enable_shared()
101 writel(reg, gate->reset); in __sunxi_clk_periph_enable_shared()
138 if (gate->reset && !IS_SHARE_RST_GATE(periph)) in __sunxi_clk_periph_enable()
140 reg = readl(gate->reset); in __sunxi_clk_periph_enable()
142 writel(reg, gate->reset); in __sunxi_clk_periph_enable()
232 if (gate->reset) in sunxi_clk_periph_is_enabled()
234 reg = readl(gate->reset); in sunxi_clk_periph_is_enabled()
292 reg = readl(gate->reset); in __sunxi_clk_periph_disable_shared()
294 writel(reg, gate->reset); in __sunxi_clk_periph_disable_shared()
336 reg = readl(gate->reset); in __sunxi_clk_periph_disable()
[all …]
/bsp/allwinner/libraries/sunxi-hal/hal/test/ccmu/
A Dtest_ng_ccmu.c68 struct reset_control *reset; in cmd_test_ng_ccmu() local
124 reset = hal_reset_control_get(reset_type, reset_id); in cmd_test_ng_ccmu()
127 hal_reset_control_deassert(reset); in cmd_test_ng_ccmu()
129 reset_status = hal_reset_control_status(reset); in cmd_test_ng_ccmu()
133 hal_reset_control_put(reset); in cmd_test_ng_ccmu()
/bsp/nxp/imx/imxrt/imxrt1052-fire-pro/board/JLink_Vxxx/Devices/NXP/iMXRT_UFL/
A DiMXRT6xx_CortexM33.JLinkScript16 // This device requires a special reset as default reset does not work for this device.
19 JLINK_TARGET_Halt(); // Make sure that the CPU is halted when reset is called
34 JTAG_AllowTAPReset = 0; // J-Link is allowed to use a TAP reset for JTAG-chain auto-detection
A DiMXRT5xx_CortexM33.JLinkScript16 // This device requires a special reset as default reset does not work for this device.
22 JLINK_TARGET_Halt(); // Make sure that the CPU is halted when reset is called
37 JTAG_AllowTAPReset = 0; // J-Link is allowed to use a TAP reset for JTAG-chain auto-detection
/bsp/efm32/
A Ddrv_rtc.c134 rt_uint32_t reset; in rt_hw_rtc_init() local
136 reset = RMU_ResetCauseGet(); in rt_hw_rtc_init()
139 if (reset & RMU_RSTCAUSE_PORST || reset & RMU_RSTCAUSE_EXTRST) in rt_hw_rtc_init()
/bsp/hpmicro/libraries/hpm_sdk/components/panel/panels/
A Dtm070rdh13.c9 static void reset(hpm_panel_t *panel) in reset() function
67 .reset = reset,
A Dtm103xdgp01.c66 static void reset(hpm_panel_t *panel) in reset() function
103 .reset = reset,
/bsp/stm32/docs/
A DHow to create a RT-Studio project.md81reset. After downloading the code, it is required to press the reset physical button on the board.…
83 …tem reset, click the configuration icon at menubar. Then, go to download tab. At the reset mode se…
/bsp/hifive1/freedom-e-sdk/bsp/env/freedom-e300-hifive1/
A Dopenocd.cfg24 #reset -- This type of reset is not implemented yet
28 #Wait for the reset stretcher
/bsp/hifive1/
A Dopenocd.cfg24 #reset -- This type of reset is not implemented yet
28 #Wait for the reset stretcher
/bsp/sparkfun-redv/freedom-e-sdk/bsp/env/freedom-e300-hifive1/
A Dopenocd.cfg24 #reset -- This type of reset is not implemented yet
28 #Wait for the reset stretcher
/bsp/sparkfun-redv/
A Dopenocd.cfg24 #reset -- This type of reset is not implemented yet
28 #Wait for the reset stretcher
/bsp/at91/at91sam9260/platform/
A Dreset.c33 FINSH_FUNCTION_EXPORT_ALIAS(rt_hw_cpu_reset, reset, restart the system);
41 MSH_CMD_EXPORT_ALIAS(cmd_reset, reset, restart the system);
/bsp/samd21/sam_d2x_asflib/sam0/boards/samd21_xplained_pro/debug_scripts/iar/
A Dsamd21_xplained_pro_flash.mac9 // Hardware Reset: CPU is automatically halted after the reset
22 // Hardware Reset: CPU is automatically halted after the reset
A Dsamd21_xplained_pro_sram.mac9 // Hardware Reset: CPU is automatically halted after the reset
22 // Hardware Reset: CPU is automatically halted after the reset

Completed in 15 milliseconds

12345678910>>...18