/Linux-v6.1/drivers/gpu/drm/i915/gem/ |
D | i915_gem_ttm_pm.c | 19 * i915_ttm_backup_free - Free any backup attached to this object 20 * @obj: The object whose backup is to be freed. 24 if (obj->ttm.backup) { in i915_ttm_backup_free() 25 i915_gem_object_put(obj->ttm.backup); in i915_ttm_backup_free() 26 obj->ttm.backup = NULL; in i915_ttm_backup_free() 34 * @backup_pinned: On backup, backup also pinned objects. 51 struct drm_i915_gem_object *backup; in i915_ttm_backup() local 55 if (bo->resource->mem_type == I915_PL_SYSTEM || obj->ttm.backup) in i915_ttm_backup() 68 backup = i915_gem_object_create_shmem(i915, obj->base.size); in i915_ttm_backup() 69 if (IS_ERR(backup)) in i915_ttm_backup() [all …]
|
/Linux-v6.1/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 …]
|
/Linux-v6.1/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() 123 if (res->backup) { in vmw_resource_release() [all …]
|
D | vmwgfx_cotable.c | 170 struct ttm_buffer_object *bo = &res->backup->base; in vmw_cotable_unscrub() 212 * The create() callback may have changed @res->backup without in vmw_cotable_bind() 214 * the old backup buffer. Although hackish, and not used currently, in vmw_cotable_bind() 218 val_buf->bo = &res->backup->base; in vmw_cotable_bind() 227 * @readback: Whether initiate a readback of the cotable data to the backup 232 * unbind requires reserved backup buffers and it might not be possible to 300 * @readback: Whether to read back cotable data to the backup buffer. 304 * Unbinds the cotable from the device and fences the backup buffer. 366 vmw_bo_fence_single(&res->backup->base, fence); in vmw_cotable_readback() 378 * Resizes a cotable and binds the new backup buffer. [all …]
|
D | vmwgfx_validation.c | 39 * @coherent_count: If switching backup buffers, number of new coherent 40 * resources that will have this buffer as a backup buffer. 59 * @new_backup: Non ref-counted pointer to new backup buffer to be assigned 61 * @new_backup_offset: Offset into the new backup mob for resources that can 65 * @switching_backup: The validation process is switching backup MOB. 402 * vmw_validation_res_switch_backup - Register a backup MOB switch during 408 * @vbo: The new backup buffer object MOB. This buffer object needs to have 410 * @backup_offset: Offset into the new backup MOB. 454 if (res->backup) { in vmw_validation_res_reserve() 455 struct vmw_buffer_object *vbo = res->backup; in vmw_validation_res_reserve() [all …]
|
D | vmwgfx_surface.c | 191 * Computes the required size for a surface dma command for backup or 460 * vmw_legacy_srf_dma - Copy backup data to or from a legacy surface. 465 * information about the backup buffer. 468 * Transfer backup data to or from a legacy surface as part of the 471 * The backup buffer will be fenced or idle upon successful completion, 472 * and if the surface needs persistent backup storage, the backup buffer 498 * Create a fence object and fence the backup buffer. in vmw_legacy_srf_dma() 519 * information about the backup buffer. 521 * This function will copy backup data to the surface if the 522 * backup buffer is dirty. [all …]
|
/Linux-v6.1/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 …]
|
/Linux-v6.1/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;
|
/Linux-v6.1/tools/testing/selftests/net/mptcp/ |
D | pm_netlink.sh | 77 ip netns exec $ns1 ./pm_nl_ctl add 10.0.1.3 flags signal,backup 83 id 3 flags signal,backup 10.0.1.3" "dump addrs" 89 id 3 flags signal,backup 10.0.1.3" "dump addrs after del" 109 id 3 flags signal,backup 10.0.1.3 169 ip netns exec $ns1 ./pm_nl_ctl set 10.0.1.1 flags backup 171 subflow,backup 10.0.1.1" "set flags (backup)" 181 ip netns exec $ns1 ./pm_nl_ctl set id 1 flags backup,fullmesh 183 subflow,backup,fullmesh 10.0.1.1" " (backup,fullmesh)"
|
/Linux-v6.1/tools/objtool/ |
D | objtool.c | 31 perror("failed backup name malloc"); in objtool_create_backup() 40 perror("failed to create backup file"); in objtool_create_backup() 52 perror("failed backup data malloc"); in objtool_create_backup() 61 perror("failed backup write"); in objtool_create_backup() 70 perror("failed backup read"); in objtool_create_backup() 97 if (opts.backup && !objtool_create_backup(objname)) { in objtool_open_read() 98 WARN("can't create backup file"); in objtool_open_read()
|
/Linux-v6.1/drivers/regulator/ |
D | bd9571mwv-regulator.c | 23 /* DDR Backup Power */ 24 u8 bkup_mode_cnt_keepon; /* from "rohm,ddr-backup-power" */ 149 "failed to read backup mode (%d)\n", ret); in bd9571mwv_bkup_mode_read() 164 "failed to configure backup mode 0x%x (%d)\n", in bd9571mwv_bkup_mode_write() 199 * Configure DDR Backup Mode, to change the role of the accessory power in backup_mode_store() 228 /* Save DDR Backup Mode */ in bd9571mwv_suspend() 238 /* Enable DDR Backup Mode */ in bd9571mwv_suspend() 255 /* Restore DDR Backup Mode */ in bd9571mwv_resume() 310 of_property_read_u32(config.dev->of_node, "rohm,ddr-backup-power", &val); in bd9571mwv_regulator_probe() 313 "rohm,ddr-backup-power", val); in bd9571mwv_regulator_probe() [all …]
|
/Linux-v6.1/drivers/clk/at91/ |
D | pmc.c | 115 /* Address in SECURAM that say if we suspend to backup mode. */ 120 unsigned int backup; in at91_pmc_suspend() local 125 backup = readl_relaxed(at91_pmc_backup_suspend); in at91_pmc_suspend() 126 if (!backup) in at91_pmc_suspend() 134 unsigned int backup; in at91_pmc_resume() local 139 backup = readl_relaxed(at91_pmc_backup_suspend); in at91_pmc_resume() 140 if (!backup) in at91_pmc_resume()
|
/Linux-v6.1/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 …]
|
/Linux-v6.1/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,
|
/Linux-v6.1/drivers/usb/dwc2/ |
D | core.h | 664 * @gotgctl: Backup of GOTGCTL register 665 * @gintmsk: Backup of GINTMSK register 666 * @gahbcfg: Backup of GAHBCFG register 667 * @gusbcfg: Backup of GUSBCFG register 668 * @grxfsiz: Backup of GRXFSIZ register 669 * @gnptxfsiz: Backup of GNPTXFSIZ register 670 * @gi2cctl: Backup of GI2CCTL register 671 * @glpmcfg: Backup of GLPMCFG register 672 * @gdfifocfg: Backup of GDFIFOCFG register 673 * @pcgcctl: Backup of PCGCCTL register [all …]
|
/Linux-v6.1/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()
|
/Linux-v6.1/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 {
|
D | armada-370-netgear-rn104.dts | 109 blue-backup-led { 110 label = "rn104:blue:backup"; 167 backup-button { 168 label = "Backup Button"; 228 backup_button_pin: backup-button-pin { 238 backup_led_pin: backup-led-pin {
|
/Linux-v6.1/Documentation/devicetree/bindings/mfd/ |
D | rohm,bd9571mwv.yaml | 34 rohm,ddr-backup-power: 39 Value to use for DDR-Backup Power (default 0). 41 powered when backup mode is entered, for system suspend: 114 rohm,ddr-backup-power = <0xf>;
|
/Linux-v6.1/include/trace/events/ |
D | mptcp.h | 29 __field(u8, backup) 37 __entry->backup = subflow->backup; 59 TP_printk("active=%d free=%d snd_wnd=%u pace=%u backup=%u ratio=%llu", 62 __entry->backup, __entry->ratio)
|
/Linux-v6.1/fs/ocfs2/ |
D | resize.c | 32 * Check whether there are new backup superblocks exist 59 /* check if already done backup super */ in ocfs2_calc_new_backup_super() 114 * check whether there are some new backup superblocks exist in in ocfs2_update_last_group_and_inode() 175 struct buffer_head *backup = NULL; in update_backups() local 186 ret = ocfs2_read_blocks_sync(osb, blkno, 1, &backup); in update_backups() 192 memcpy(backup->b_data, data, inode->i_sb->s_blocksize); in update_backups() 194 backup_di = (struct ocfs2_dinode *)backup->b_data; in update_backups() 197 ret = ocfs2_write_super_or_backup(osb, backup); in update_backups() 198 brelse(backup); in update_backups() 199 backup = NULL; in update_backups()
|
/Linux-v6.1/drivers/net/wireless/realtek/rtw88/ |
D | rtw8723d.c | 720 struct iqk_backup_regs *backup) in rtw8723d_iqk_backup_regs() argument 725 backup->adda[i] = rtw_read32(rtwdev, iqk_adda_regs[i]); in rtw8723d_iqk_backup_regs() 728 backup->mac8[i] = rtw_read8(rtwdev, iqk_mac8_regs[i]); in rtw8723d_iqk_backup_regs() 730 backup->mac32[i] = rtw_read32(rtwdev, iqk_mac32_regs[i]); in rtw8723d_iqk_backup_regs() 733 backup->bb[i] = rtw_read32(rtwdev, iqk_bb_regs[i]); in rtw8723d_iqk_backup_regs() 735 backup->igia = rtw_read32_mask(rtwdev, REG_OFDM0_XAAGC1, MASKBYTE0); in rtw8723d_iqk_backup_regs() 736 backup->igib = rtw_read32_mask(rtwdev, REG_OFDM0_XBAGC1, MASKBYTE0); in rtw8723d_iqk_backup_regs() 738 backup->bb_sel_btg = rtw_read32(rtwdev, REG_BB_SEL_BTG); in rtw8723d_iqk_backup_regs() 742 const struct iqk_backup_regs *backup) in rtw8723d_iqk_restore_regs() argument 747 rtw_write32(rtwdev, iqk_adda_regs[i], backup->adda[i]); in rtw8723d_iqk_restore_regs() [all …]
|
/Linux-v6.1/include/uapi/linux/ |
D | ip_vs.h | 42 #define IP_VS_STATE_BACKUP 0x0002 /* started as backup */ 80 * Only flags 0..15 are sent to backup server 99 /* Initial bits allowed in backup server */ 108 /* Bits allowed to update in backup server */ 112 /* Flags that are not sent to backup server start from bit 16 */ 281 /* sync daemon state (master/backup) */ 426 IPVS_DAEMON_ATTR_STATE, /* sync daemon state (master/backup) */
|
/Linux-v6.1/arch/arm/mach-ux500/ |
D | platsmp.c | 25 /* Magic triggers in backup RAM */ 72 * write the address of secondary startup into the backup ram register in ux500_boot_secondary() 74 * backup ram register at offset 0x1FF0, which is what boot rom code in ux500_boot_secondary()
|
/Linux-v6.1/Documentation/networking/ |
D | bonding.rst | 173 (active-backup, balance-alb and balance-tlb). Possible values 344 backup or 2 346 Validation is performed only for backup slaves. 365 only for backup slaves. 374 that they were generated by an arp_ip_target. Since backup slaves 376 for backup slaves is on the broadcast ARP request sent out via the 378 configurations may result in situations wherein the backup slaves 380 of backup slaves must be disabled. 382 The validation of ARP requests on backup slaves is mainly helping 385 backup slave will work if it's selected as the next active slave. [all …]
|