Home
last modified time | relevance | path

Searched refs:reset (Results 376 - 400 of 5148) sorted by relevance

1...<<11121314151617181920>>...206

/kernel/linux/linux-6.6/drivers/net/wireless/mediatek/mt76/mt7996/
H A Ddma.c86 static void mt7996_dma_disable(struct mt7996_dev *dev, bool reset) in mt7996_dma_disable() argument
93 if (reset) { in mt7996_dma_disable()
131 void mt7996_dma_start(struct mt7996_dev *dev, bool reset) in mt7996_dma_start() argument
140 if (!reset) { in mt7996_dma_start()
157 if (reset) in mt7996_dma_start()
176 static void mt7996_dma_enable(struct mt7996_dev *dev, bool reset) in mt7996_dma_enable() argument
183 /* reset dma idx */ in mt7996_dma_enable()
250 mt7996_dma_start(dev, reset); in mt7996_dma_enable()
404 /* reset wfsys */ in mt7996_dma_reset()
410 /* reset h in mt7996_dma_reset()
[all...]
/kernel/linux/linux-6.6/drivers/phy/broadcom/
H A Dphy-bcm63xx-usbh.c23 #include <linux/reset.h>
101 struct reset_control *reset; member
259 ret = reset_control_reset(usbh->reset); in bcm63xx_usbh_phy_init()
261 dev_err(&phy->dev, "unable to reset device: %d\n", ret); in bcm63xx_usbh_phy_init()
399 usbh->reset = devm_reset_control_get_exclusive(dev, NULL); in bcm63xx_usbh_phy_probe()
400 if (IS_ERR(usbh->reset)) { in bcm63xx_usbh_phy_probe()
401 if (PTR_ERR(usbh->reset) != -EPROBE_DEFER) in bcm63xx_usbh_phy_probe()
402 dev_err(dev, "failed to get reset\n"); in bcm63xx_usbh_phy_probe()
403 return PTR_ERR(usbh->reset); in bcm63xx_usbh_phy_probe()
/kernel/linux/linux-6.6/drivers/gpu/drm/panel/
H A Dpanel-widechips-ws2401.c72 /** @reset: reset GPIO line */
73 struct gpio_desc *reset; member
142 /* Assert reset >=1 ms */ in ws2401_power_on()
143 gpiod_set_value_cansleep(ws->reset, 1); in ws2401_power_on()
145 /* De-assert reset */ in ws2401_power_on()
146 gpiod_set_value_cansleep(ws->reset, 0); in ws2401_power_on()
226 gpiod_set_value_cansleep(ws->reset, 1); in ws2401_power_off()
367 ws->reset = devm_gpiod_get(dev, "reset", GPIOD_OUT_HIG in ws2401_probe()
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/sun4i/
H A Dsun8i_mixer.c17 #include <linux/reset.h>
434 mixer->reset = devm_reset_control_get(dev, NULL); in sun8i_mixer_bind()
435 if (IS_ERR(mixer->reset)) { in sun8i_mixer_bind()
436 dev_err(dev, "Couldn't get our reset line\n"); in sun8i_mixer_bind()
437 return PTR_ERR(mixer->reset); in sun8i_mixer_bind()
440 ret = reset_control_deassert(mixer->reset); in sun8i_mixer_bind()
442 dev_err(dev, "Couldn't deassert our reset line\n"); in sun8i_mixer_bind()
534 reset_control_assert(mixer->reset); in sun8i_mixer_bind()
547 reset_control_assert(mixer->reset); in sun8i_mixer_unbind()
/kernel/linux/linux-6.6/sound/soc/rockchip/
H A Drockchip_pdm.c15 #include <linux/reset.h>
37 struct reset_control *reset; member
234 reset_control_assert(pdm->reset); in rockchip_pdm_hw_params()
235 reset_control_deassert(pdm->reset); in rockchip_pdm_hw_params()
590 pdm->reset = devm_reset_control_get(&pdev->dev, "pdm-m"); in rockchip_pdm_probe()
591 if (IS_ERR(pdm->reset)) in rockchip_pdm_probe()
592 return PTR_ERR(pdm->reset); in rockchip_pdm_probe()
/foundation/multimedia/media_foundation/test/scenetest/
H A Dtest_single_video_player_fast_2.h109 PTEST((std::string url, int32_t fileSize), Test fdsource prepare, play, reset, pause, release) in FIXTURE()
239 PTEST((std::string url, int32_t fileSize), Test fdsource prepare, play, reset, stop, relese) in FIXTURE()
341 PTEST((std::string url, int32_t fileSize), Test fdsource prepare, reset, release) in FIXTURE()
353 PTEST((std::string url, int32_t fileSize), Test fdsource prepare, play, reset, release) in FIXTURE()
366 PTEST((std::string url, int32_t fileSize), Test fdsource prepare, play, pause, reset, release) in FIXTURE()
381 PTEST((std::string url, int32_t fileSize), Test fdsource prepare, play, stop, reset, release) in FIXTURE()
396 PTEST((std::string url, int32_t fileSize), Test fdsource prepare, play, seek, reset, release) in FIXTURE()
431 PTEST((std::string url, int32_t fileSize), Test setSource prepare, reset, release) in FIXTURE()
442 PTEST((std::string url, int32_t fileSize), Test fdsource prepare, reset, reset, rese in FIXTURE()
[all...]
/kernel/linux/linux-6.6/drivers/net/can/
H A Dsun4i_can.c63 #include <linux/reset.h>
103 #define SUN4I_MSEL_SLEEP_MODE (0x01 << 4) /* write in reset mode */
105 #define SUN4I_MSEL_SINGLE_FILTER (0x01 << 3) /* write in reset mode */
208 * @has_reset: SoC needs reset deasserted.
220 struct reset_control *reset; member
281 netdev_err(dev, "setting controller into reset mode failed!\n"); in set_reset_mode()
337 /* we need to enter the reset mode */ in sun4i_can_start()
340 netdev_err(dev, "could not enter reset mode\n"); in sun4i_can_start()
388 /* we need to enter reset mode */ in sun4i_can_stop()
391 netdev_err(dev, "could not enter reset mod in sun4i_can_stop()
820 struct reset_control *reset = NULL; sun4ican_probe() local
[all...]
/kernel/linux/linux-5.10/drivers/clk/sirf/
H A Dclk-atlas7.c13 #include <linux/reset-controller.h>
1391 struct atlas7_reset_desc *reset = &atlas7_reset_unit[reset_idx]; in atlas7_reset_module() local
1395 * HW suggest unit reset sequence: in atlas7_reset_module()
1396 * assert sw reset (0) in atlas7_reset_module()
1397 * setting sw clk_en to if the clock was disabled before reset in atlas7_reset_module()
1400 * de-assert reset (1) in atlas7_reset_module()
1404 spin_lock_irqsave(reset->lock, flags); in atlas7_reset_module()
1406 if (clkc_readl(reset->clk_ofs + 8) & (1 << reset->clk_bit)) { in atlas7_reset_module()
1407 clkc_writel(1 << reset in atlas7_reset_module()
[all...]
/foundation/CastEngine/castengine_wifi_display/services/network/server/
H A Dtcp_server.cpp77 it->second.reset(); in Stop()
81 socket_.reset(); in Stop()
93 itemItr->second.reset(); in CloseClientSocket()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_navigator.cpp36 instance_.reset(new NG::NavigatorModelNG()); in GetInstance()
39 instance_.reset(new NG::NavigatorModelNG()); in GetInstance()
41 instance_.reset(new Framework::NavigatorModelImpl()); in GetInstance()
H A Djs_stepper.cpp33 instance_.reset(new NG::StepperModelNG()); in GetInstance()
36 instance_.reset(new NG::StepperModelNG()); in GetInstance()
38 instance_.reset(new Framework::StepperModelImpl()); in GetInstance()
/foundation/bundlemanager/bundle_framework/interfaces/kits/js/zip/src/
H A Dzip_reader.cpp153 currentEntryInfo_.reset(); in AdvanceToNextEntry()
183 currentEntryInfo_.reset(entryInfo); in OpenCurrentEntryInZip()
258 currentEntryInfo_.reset(); in Reset()
/foundation/graphic/graphic_3d/lume/metaobject/test/src/interface/
H A DIntfClassRegistryTest.cpp142 lastRegistered.classInfo.reset(); in HWTEST_F()
155 lastRegistered.classInfo.reset(); in HWTEST_F()
162 lastUnregistered.classInfo.reset(); in HWTEST_F()
/foundation/graphic/graphic_2d/rosen/modules/platform/eventhandler_impl/
H A Dinner_event.cpp195 waiter_.reset(); in ClearEvent()
213 hiTraceId_.reset(); in ClearEvent()
217 owner_.reset(); in ClearEvent()
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvkm/subdev/top/
H A Dbase.c36 info->reset = -1; in nvkm_top_device_new()
67 if (info->index == index && info->reset >= 0) in nvkm_top_reset()
68 return BIT(info->reset); in nvkm_top_reset()
/kernel/linux/linux-5.10/drivers/platform/x86/
H A Dtoshiba_haps.c35 pr_err("Unable to reset the HDD protection\n"); in toshiba_haps_reset_protection()
100 int reset; in reset_protection_store() local
103 ret = kstrtoint(buf, 0, &reset); in reset_protection_store()
107 if (reset != 1) in reset_protection_store()
/kernel/linux/linux-5.10/drivers/reset/
H A Dreset-uniphier-glue.c3 // reset-uniphier-glue.c - Glue layer reset driver for UniPhier
11 #include <linux/reset.h>
12 #include <linux/reset/reset-simple.h>
139 .compatible = "socionext,uniphier-pro4-usb3-reset",
143 .compatible = "socionext,uniphier-pro5-usb3-reset",
147 .compatible = "socionext,uniphier-pxs2-usb3-reset",
151 .compatible = "socionext,uniphier-ld20-usb3-reset",
155 .compatible = "socionext,uniphier-pxs3-usb3-reset",
[all...]
/kernel/linux/linux-5.10/drivers/staging/media/hantro/
H A Dimx8m_vpu_hw.c173 .reset = imx8m_vpu_g1_reset,
179 .reset = imx8m_vpu_g1_reset,
185 .reset = imx8m_vpu_g1_reset,
H A Drk3399_vpu_hw.c159 .reset = rk3399_vpu_enc_reset,
165 .reset = rk3399_vpu_dec_reset,
171 .reset = rk3399_vpu_dec_reset,
/kernel/linux/linux-6.6/drivers/reset/
H A Dreset-uniphier-glue.c3 // reset-uniphier-glue.c - Glue layer reset driver for UniPhier
11 #include <linux/reset.h>
12 #include <linux/reset/reset-simple.h>
129 .compatible = "socionext,uniphier-pro4-usb3-reset",
133 .compatible = "socionext,uniphier-pro5-usb3-reset",
137 .compatible = "socionext,uniphier-pxs2-usb3-reset",
141 .compatible = "socionext,uniphier-ld20-usb3-reset",
145 .compatible = "socionext,uniphier-pxs3-usb3-reset",
[all...]
/kernel/linux/linux-6.6/drivers/platform/x86/
H A Dtoshiba_haps.c35 pr_err("Unable to reset the HDD protection\n"); in toshiba_haps_reset_protection()
100 int reset; in reset_protection_store() local
103 ret = kstrtoint(buf, 0, &reset); in reset_protection_store()
107 if (reset != 1) in reset_protection_store()
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/nvkm/engine/gr/
H A Dbase.c153 if (gr->func->reset) in nvkm_gr_reset()
154 return gr->func->reset(gr); in nvkm_gr_reset()
190 .reset = nvkm_gr_reset,
/test/testfwk/xdevice/plugins/ohos/src/ohos/parser/
H A Doh_yara_parser.py56 self.state_machine.get_suites(reset=True)
80 test_result = self.state_machine.test(reset=True)
101 self.state_machine.suite(reset=True)
/foundation/ability/ability_runtime/test/unittest/mission_info_mgr_test/
H A Dmission_info_mgr_test.cpp172 missionInfoMgr->taskDataPersistenceMgr_->handler_.reset(); in HWTEST_F()
218 missionInfoMgr->taskDataPersistenceMgr_->handler_.reset(); in HWTEST_F()
473 missionInfoMgr->taskDataPersistenceMgr_.reset(); in HWTEST_F()
478 missionInfoMgr->taskDataPersistenceMgr_->handler_.reset(); in HWTEST_F()
499 missionInfoMgr->taskDataPersistenceMgr_->currentMissionDataStorage_.reset(); in HWTEST_F()
633 missionInfoMgr->taskDataPersistenceMgr_.reset(); in HWTEST_F()
638 missionInfoMgr->taskDataPersistenceMgr_->currentMissionDataStorage_.reset(); in HWTEST_F()
665 missionInfoMgr->taskDataPersistenceMgr_.reset(); in HWTEST_F()
/foundation/graphic/graphic_3d/lume/metaobject/test/src/base/
H A DPointerTest.cpp83 ptr.reset(); in HWTEST_F()
84 ptr2.reset(); in HWTEST_F()
111 ptr.reset(); in HWTEST_F()
272 b3.reset(); in HWTEST_F()
287 t.reset(); in HWTEST_F()
326 ptr.reset(); in HWTEST_F()
357 ptrA.reset(); in HWTEST_F()
358 ptrB.reset(); in HWTEST_F()

Completed in 17 milliseconds

1...<<11121314151617181920>>...206