| /kernel/linux/linux-5.10/drivers/net/wireless/broadcom/b43legacy/ |
| D | radio.c | 369 u16 backup[20] = { 0 }; in b43legacy_calc_nrssi_offset() local 374 backup[0] = b43legacy_phy_read(dev, 0x0001); in b43legacy_calc_nrssi_offset() 375 backup[1] = b43legacy_phy_read(dev, 0x0811); in b43legacy_calc_nrssi_offset() 376 backup[2] = b43legacy_phy_read(dev, 0x0812); in b43legacy_calc_nrssi_offset() 377 backup[3] = b43legacy_phy_read(dev, 0x0814); in b43legacy_calc_nrssi_offset() 378 backup[4] = b43legacy_phy_read(dev, 0x0815); in b43legacy_calc_nrssi_offset() 379 backup[5] = b43legacy_phy_read(dev, 0x005A); in b43legacy_calc_nrssi_offset() 380 backup[6] = b43legacy_phy_read(dev, 0x0059); in b43legacy_calc_nrssi_offset() 381 backup[7] = b43legacy_phy_read(dev, 0x0058); in b43legacy_calc_nrssi_offset() 382 backup[8] = b43legacy_phy_read(dev, 0x000A); in b43legacy_calc_nrssi_offset() [all …]
|
| /kernel/linux/linux-4.19/drivers/net/wireless/broadcom/b43legacy/ |
| D | radio.c | 386 u16 backup[20] = { 0 }; in b43legacy_calc_nrssi_offset() local 391 backup[0] = b43legacy_phy_read(dev, 0x0001); in b43legacy_calc_nrssi_offset() 392 backup[1] = b43legacy_phy_read(dev, 0x0811); in b43legacy_calc_nrssi_offset() 393 backup[2] = b43legacy_phy_read(dev, 0x0812); in b43legacy_calc_nrssi_offset() 394 backup[3] = b43legacy_phy_read(dev, 0x0814); in b43legacy_calc_nrssi_offset() 395 backup[4] = b43legacy_phy_read(dev, 0x0815); in b43legacy_calc_nrssi_offset() 396 backup[5] = b43legacy_phy_read(dev, 0x005A); in b43legacy_calc_nrssi_offset() 397 backup[6] = b43legacy_phy_read(dev, 0x0059); in b43legacy_calc_nrssi_offset() 398 backup[7] = b43legacy_phy_read(dev, 0x0058); in b43legacy_calc_nrssi_offset() 399 backup[8] = b43legacy_phy_read(dev, 0x000A); in b43legacy_calc_nrssi_offset() [all …]
|
| /kernel/linux/linux-5.10/drivers/gpu/drm/vmwgfx/ |
| D | vmwgfx_resource.c | 42 struct vmw_buffer_object *backup = res->backup; in vmw_resource_mob_attach() local 43 struct rb_node **new = &backup->res_tree.rb_node, *parent = NULL; in vmw_resource_mob_attach() 45 dma_resv_assert_held(res->backup->base.base.resv); in vmw_resource_mob_attach() 59 rb_insert_color(&res->mob_node, &backup->res_tree); in vmw_resource_mob_attach() 61 vmw_bo_prio_add(backup, res->used_prio); in vmw_resource_mob_attach() 70 struct vmw_buffer_object *backup = res->backup; in vmw_resource_mob_detach() local 72 dma_resv_assert_held(backup->base.base.resv); in vmw_resource_mob_detach() 74 rb_erase(&res->mob_node, &backup->res_tree); in vmw_resource_mob_detach() 76 vmw_bo_prio_del(backup, res->used_prio); in vmw_resource_mob_detach() 122 if (res->backup) { in vmw_resource_release() [all …]
|
| D | vmwgfx_cotable.c | 169 struct ttm_buffer_object *bo = &res->backup->base; in vmw_cotable_unscrub() 211 * The create() callback may have changed @res->backup without in vmw_cotable_bind() 213 * the old backup buffer. Although hackish, and not used currently, in vmw_cotable_bind() 217 val_buf->bo = &res->backup->base; in vmw_cotable_bind() 226 * @readback: Whether initiate a readback of the cotable data to the backup 231 * unbind requires reserved backup buffers and it might not be possible to 299 * @readback: Whether to read back cotable data to the backup buffer. 303 * Unbinds the cotable from the device and fences the backup buffer. 365 vmw_bo_fence_single(&res->backup->base, fence); in vmw_cotable_readback() 377 * Resizes a cotable and binds the new backup buffer. [all …]
|
| D | vmwgfx_validation.c | 36 * @coherent_count: If switching backup buffers, number of new coherent 37 * resources that will have this buffer as a backup buffer. 57 * @new_backup: Non ref-counted pointer to new backup buffer to be assigned 59 * @new_backup_offset: Offset into the new backup mob for resources that can 63 * @switching_backup: The validation process is switching backup MOB. 404 * vmw_validation_res_switch_backup - Register a backup MOB switch during 410 * @vbo: The new backup buffer object MOB. This buffer object needs to have 412 * @backup_offset: Offset into the new backup MOB. 456 if (res->backup) { in vmw_validation_res_reserve() 457 struct vmw_buffer_object *vbo = res->backup; in vmw_validation_res_reserve() [all …]
|
| /kernel/linux/linux-4.19/drivers/gpu/drm/vmwgfx/ |
| D | vmwgfx_resource.c | 80 if (res->backup) { in vmw_resource_release() 81 struct ttm_buffer_object *bo = &res->backup->base; in vmw_resource_release() 95 vmw_bo_unreference(&res->backup); in vmw_resource_release() 180 res->backup = NULL; in vmw_resource_init() 295 * vmw_resource_buf_alloc - Allocate a backup buffer for a resource. 297 * @res: The resource for which to allocate a backup buffer. 306 struct vmw_buffer_object *backup; in vmw_resource_buf_alloc() local 309 if (likely(res->backup)) { in vmw_resource_buf_alloc() 310 BUG_ON(res->backup->base.num_pages * PAGE_SIZE < size); in vmw_resource_buf_alloc() 314 backup = kzalloc(sizeof(*backup), GFP_KERNEL); in vmw_resource_buf_alloc() [all …]
|
| D | vmwgfx_cotable.c | 165 struct ttm_buffer_object *bo = &res->backup->base; in vmw_cotable_unscrub() 210 * The create() callback may have changed @res->backup without in vmw_cotable_bind() 212 * the old backup buffer. Although hackish, and not used currently, in vmw_cotable_bind() 216 val_buf->bo = &res->backup->base; in vmw_cotable_bind() 225 * @readback: Whether initiate a readback of the cotable data to the backup 230 * unbind requires reserved backup buffers and it might not be possible to 301 * @readback: Whether to read back cotable data to the backup buffer. 305 * Unbinds the cotable from the device and fences the backup buffer. 370 vmw_bo_fence_single(&res->backup->base, fence); in vmw_cotable_readback() 382 * Resizes a cotable and binds the new backup buffer. [all …]
|
| D | vmwgfx_surface.c | 167 * Computes the required size for a surface dma command for backup or 443 * vmw_legacy_srf_dma - Copy backup data to or from a legacy surface. 448 * information about the backup buffer. 451 * Transfer backup data to or from a legacy surface as part of the 454 * The backup buffer will be fenced or idle upon successful completion, 455 * and if the surface needs persistent backup storage, the backup buffer 483 * Create a fence object and fence the backup buffer. in vmw_legacy_srf_dma() 504 * information about the backup buffer. 506 * This function will copy backup data to the surface if the 507 * backup buffer is dirty. [all …]
|
| /kernel/linux/linux-4.19/drivers/power/supply/ |
| D | wm831x_backup.c | 2 * Backup battery driver for Wolfson Microelectronics wm831x PMICs 24 struct power_supply *backup; member 43 * Backup supply properties 52 if (!wm831x_pdata || !wm831x_pdata->backup) { in wm831x_config_backup() 54 "No backup battery charger configuration\n"); in wm831x_config_backup() 58 pdata = wm831x_pdata->backup; in wm831x_config_backup() 74 dev_err(wm831x->dev, "Invalid backup voltage limit %dmV\n", in wm831x_config_backup() 91 dev_err(wm831x->dev, "Invalid backup current limit %duA\n", in wm831x_config_backup() 110 "Failed to set backup charger config: %d\n", ret); in wm831x_config_backup() 187 "wm831x-backup.%d", wm831x_pdata->wm831x_num); in wm831x_backup_probe() [all …]
|
| /kernel/linux/linux-5.10/drivers/power/supply/ |
| D | wm831x_backup.c | 3 * Backup battery driver for Wolfson Microelectronics wm831x PMICs 21 struct power_supply *backup; member 40 * Backup supply properties 49 if (!wm831x_pdata || !wm831x_pdata->backup) { in wm831x_config_backup() 51 "No backup battery charger configuration\n"); in wm831x_config_backup() 55 pdata = wm831x_pdata->backup; in wm831x_config_backup() 71 dev_err(wm831x->dev, "Invalid backup voltage limit %dmV\n", in wm831x_config_backup() 88 dev_err(wm831x->dev, "Invalid backup current limit %duA\n", in wm831x_config_backup() 107 "Failed to set backup charger config: %d\n", ret); in wm831x_config_backup() 184 "wm831x-backup.%d", wm831x_pdata->wm831x_num); in wm831x_backup_probe() [all …]
|
| /kernel/linux/linux-4.19/Documentation/devicetree/bindings/rtc/ |
| D | rtc-palmas.txt | 10 - ti,backup-battery-chargeable: The Palmas series device like TPS65913 or 11 TPS80036 supports the backup battery for powering the RTC when main 12 battery is removed or in very low power state. The backup battery 16 - ti,backup-battery-charge-high-current: Enable high current charging in 17 backup battery. Device supports the < 100uA and > 100uA charging. 28 ti,backup-battery-chargeable; 29 ti,backup-battery-charge-high-current;
|
| /kernel/linux/linux-5.10/Documentation/devicetree/bindings/rtc/ |
| D | rtc-palmas.txt | 10 - ti,backup-battery-chargeable: The Palmas series device like TPS65913 or 11 TPS80036 supports the backup battery for powering the RTC when main 12 battery is removed or in very low power state. The backup battery 16 - ti,backup-battery-charge-high-current: Enable high current charging in 17 backup battery. Device supports the < 100uA and > 100uA charging. 28 ti,backup-battery-chargeable; 29 ti,backup-battery-charge-high-current;
|
| /kernel/linux/linux-5.10/drivers/regulator/ |
| D | bd9571mwv-regulator.c | 22 /* DDR Backup Power */ 23 u8 bkup_mode_cnt_keepon; /* from "rohm,ddr-backup-power" */ 146 dev_err(bd->dev, "failed to read backup mode (%d)\n", ret); in bd9571mwv_bkup_mode_read() 159 dev_err(bd->dev, "failed to configure backup mode 0x%x (%d)\n", in bd9571mwv_bkup_mode_write() 194 * Configure DDR Backup Mode, to change the role of the accessory power in backup_mode_store() 223 /* Save DDR Backup Mode */ in bd9571mwv_suspend() 233 /* Enable DDR Backup Mode */ in bd9571mwv_suspend() 250 /* Restore DDR Backup Mode */ in bd9571mwv_resume() 302 of_property_read_u32(bd->dev->of_node, "rohm,ddr-backup-power", &val); in bd9571mwv_regulator_probe() 305 "rohm,ddr-backup-power", val); in bd9571mwv_regulator_probe() [all …]
|
| /kernel/linux/linux-4.19/drivers/regulator/ |
| D | bd9571mwv-regulator.c | 30 /* DDR Backup Power */ 31 u8 bkup_mode_cnt_keepon; /* from "rohm,ddr-backup-power" */ 154 dev_err(bd->dev, "failed to read backup mode (%d)\n", ret); in bd9571mwv_bkup_mode_read() 167 dev_err(bd->dev, "failed to configure backup mode 0x%x (%d)\n", in bd9571mwv_bkup_mode_write() 202 * Configure DDR Backup Mode, to change the role of the accessory power in backup_mode_store() 231 /* Save DDR Backup Mode */ in bd9571mwv_suspend() 241 /* Enable DDR Backup Mode */ in bd9571mwv_suspend() 258 /* Restore DDR Backup Mode */ in bd9571mwv_resume() 310 of_property_read_u32(bd->dev->of_node, "rohm,ddr-backup-power", &val); in bd9571mwv_regulator_probe() 313 "rohm,ddr-backup-power", val); in bd9571mwv_regulator_probe() [all …]
|
| /kernel/linux/linux-5.10/drivers/net/wireless/broadcom/b43/ |
| D | phy_g.c | 412 u16 backup[20] = { 0 }; in b43_calc_nrssi_offset() local 417 backup[0] = b43_phy_read(dev, 0x0001); in b43_calc_nrssi_offset() 418 backup[1] = b43_phy_read(dev, 0x0811); in b43_calc_nrssi_offset() 419 backup[2] = b43_phy_read(dev, 0x0812); in b43_calc_nrssi_offset() 421 backup[3] = b43_phy_read(dev, 0x0814); in b43_calc_nrssi_offset() 422 backup[4] = b43_phy_read(dev, 0x0815); in b43_calc_nrssi_offset() 424 backup[5] = b43_phy_read(dev, 0x005A); in b43_calc_nrssi_offset() 425 backup[6] = b43_phy_read(dev, 0x0059); in b43_calc_nrssi_offset() 426 backup[7] = b43_phy_read(dev, 0x0058); in b43_calc_nrssi_offset() 427 backup[8] = b43_phy_read(dev, 0x000A); in b43_calc_nrssi_offset() [all …]
|
| /kernel/linux/linux-4.19/drivers/net/wireless/broadcom/b43/ |
| D | phy_g.c | 425 u16 backup[20] = { 0 }; in b43_calc_nrssi_offset() local 430 backup[0] = b43_phy_read(dev, 0x0001); in b43_calc_nrssi_offset() 431 backup[1] = b43_phy_read(dev, 0x0811); in b43_calc_nrssi_offset() 432 backup[2] = b43_phy_read(dev, 0x0812); in b43_calc_nrssi_offset() 434 backup[3] = b43_phy_read(dev, 0x0814); in b43_calc_nrssi_offset() 435 backup[4] = b43_phy_read(dev, 0x0815); in b43_calc_nrssi_offset() 437 backup[5] = b43_phy_read(dev, 0x005A); in b43_calc_nrssi_offset() 438 backup[6] = b43_phy_read(dev, 0x0059); in b43_calc_nrssi_offset() 439 backup[7] = b43_phy_read(dev, 0x0058); in b43_calc_nrssi_offset() 440 backup[8] = b43_phy_read(dev, 0x000A); in b43_calc_nrssi_offset() [all …]
|
| /kernel/linux/linux-5.10/Documentation/ABI/testing/ |
| D | sysfs-driver-bd9571mwv-regulator | 5 Description: Read/write the current state of DDR Backup Mode, which controls 11 Backup Mode is enabled by default when available, as the 16 1. Configure PMIC for backup mode, to change the role of 26 DDR Backup Mode must be explicitly enabled by the user,
|
| /kernel/linux/linux-4.19/Documentation/ABI/testing/ |
| D | sysfs-driver-bd9571mwv-regulator | 5 Description: Read/write the current state of DDR Backup Mode, which controls 10 Backup Mode is enabled by default when available, as the 14 1. Configure PMIC for backup mode, to change the role of 23 DDR Backup Mode must be explicitly enabled by the user,
|
| /kernel/linux/linux-4.19/drivers/usb/dwc2/ |
| D | core.h | 649 * @gotgctl: Backup of GOTGCTL register 650 * @gintmsk: Backup of GINTMSK register 651 * @gahbcfg: Backup of GAHBCFG register 652 * @gusbcfg: Backup of GUSBCFG register 653 * @grxfsiz: Backup of GRXFSIZ register 654 * @gnptxfsiz: Backup of GNPTXFSIZ register 655 * @gi2cctl: Backup of GI2CCTL register 656 * @glpmcfg: Backup of GLPMCFG register 657 * @gdfifocfg: Backup of GDFIFOCFG register 658 * @pcgcctl: Backup of PCGCCTL register [all …]
|
| /kernel/linux/linux-5.10/drivers/usb/dwc2/ |
| D | core.h | 683 * @gotgctl: Backup of GOTGCTL register 684 * @gintmsk: Backup of GINTMSK register 685 * @gahbcfg: Backup of GAHBCFG register 686 * @gusbcfg: Backup of GUSBCFG register 687 * @grxfsiz: Backup of GRXFSIZ register 688 * @gnptxfsiz: Backup of GNPTXFSIZ register 689 * @gi2cctl: Backup of GI2CCTL register 690 * @glpmcfg: Backup of GLPMCFG register 691 * @gdfifocfg: Backup of GDFIFOCFG register 692 * @pcgcctl: Backup of PCGCCTL register [all …]
|
| /kernel/linux/linux-5.10/net/mptcp/ |
| D | syncookies.c | 29 u8 backup; member 65 entry->backup = subflow_req->backup; in mptcp_join_store_state() 119 subflow_req->backup = e->backup; in mptcp_token_join_cookie_init_state()
|
| /kernel/linux/linux-4.19/Documentation/devicetree/bindings/mfd/ |
| D | bd9571mwv.txt | 28 - rohm,ddr-backup-power : Value to use for DDR-Backup Power (default 0). 30 rails need to be kept powered when backup mode is 57 rohm,ddr-backup-power = <0xf>;
|
| /kernel/linux/linux-5.10/Documentation/devicetree/bindings/mfd/ |
| D | bd9571mwv.txt | 28 - rohm,ddr-backup-power : Value to use for DDR-Backup Power (default 0). 30 rails need to be kept powered when backup mode is 57 rohm,ddr-backup-power = <0xf>;
|
| /kernel/linux/linux-4.19/arch/arm/boot/dts/ |
| D | armada-370-netgear-rn104.dts | 109 blue-backup-led { 110 label = "rn104:blue:backup"; 153 backup-button { 154 label = "Backup Button"; 214 backup_button_pin: backup-button-pin { 224 backup_led_pin: backup-led-pin {
|
| /kernel/linux/linux-5.10/arch/arm/boot/dts/ |
| D | armada-370-netgear-rn102.dts | 121 blue-backup-led { 122 label = "rn102:blue:backup"; 147 backup-button { 148 label = "Backup Button"; 202 backup_led_pin: backup-led-pin { 207 backup_button_pin: backup-button-pin {
|