/Linux-v5.10/drivers/hwmon/ |
D | bt1-pvt.c | 33 #include "bt1-pvt.h" 50 * to PVT data and vice-versa are following: 152 * Baikal-T1 PVT mode can be updated only when the controller is disabled. 158 static inline void pvt_set_mode(struct pvt_hwmon *pvt, u32 mode) in pvt_set_mode() argument 164 old = pvt_update(pvt->regs + PVT_CTRL, PVT_CTRL_EN, 0); in pvt_set_mode() 165 pvt_update(pvt->regs + PVT_CTRL, PVT_CTRL_MODE_MASK | PVT_CTRL_EN, in pvt_set_mode() 176 static inline void pvt_set_trim(struct pvt_hwmon *pvt, u32 trim) in pvt_set_trim() argument 182 old = pvt_update(pvt->regs + PVT_CTRL, PVT_CTRL_EN, 0); in pvt_set_trim() 183 pvt_update(pvt->regs + PVT_CTRL, PVT_CTRL_TRIM_MASK | PVT_CTRL_EN, in pvt_set_trim() 187 static inline void pvt_set_tout(struct pvt_hwmon *pvt, u32 tout) in pvt_set_tout() argument [all …]
|
D | mr75203.c | 5 * This driver is a hardware monitoring driver for PVT controller 21 /* PVT Common register */ 142 struct pvt_device *pvt = dev_get_drvdata(dev); in pvt_read_temp() local 143 struct regmap *t_map = pvt->t_map; in pvt_read_temp() 169 *val = tmp - PVT_G_CONST - pvt->ip_freq; in pvt_read_temp() 179 struct pvt_device *pvt = dev_get_drvdata(dev); in pvt_read_in() local 180 struct regmap *v_map = pvt->v_map; in pvt_read_in() 185 if (channel >= pvt->v_num) in pvt_read_in() 188 vm_idx = pvt->vm_idx[channel]; in pvt_read_in() 253 static int pvt_init(struct pvt_device *pvt) in pvt_init() argument [all …]
|
D | bt1-pvt.h | 17 /* Baikal-T1 PVT registers and their bitfields */ 61 * PVT sensors-related limits and default values 68 * @PVT_DATA_MIN: Minimal PVT raw data value. 69 * @PVT_DATA_MAX: Maximal PVT raw data value. 78 * activated the PVT IRQ is enabled to be raised after each 105 * enum pvt_sensor_type - Baikal-T1 PVT sensor types (correspond to each PVT 108 * @PVT_TEMP: PVT Temperature sensor. 109 * @PVT_VOLT: PVT Voltage sensor. 110 * @PVT_LVT: PVT Low-Voltage threshold sensor. 111 * @PVT_HVT: PVT High-Voltage threshold sensor. [all …]
|
/Linux-v5.10/drivers/edac/ |
D | amd64_edac.c | 86 static void f15h_select_dct(struct amd64_pvt *pvt, u8 dct) in f15h_select_dct() argument 90 amd64_read_pci_cfg(pvt->F1, DCT_CFG_SEL, ®); in f15h_select_dct() 91 reg &= (pvt->model == 0x30) ? ~3 : ~1; in f15h_select_dct() 93 amd64_write_pci_cfg(pvt->F1, DCT_CFG_SEL, reg); in f15h_select_dct() 110 static inline int amd64_read_dct_pci_cfg(struct amd64_pvt *pvt, u8 dct, in amd64_read_dct_pci_cfg() argument 113 switch (pvt->fam) { in amd64_read_dct_pci_cfg() 126 if (dct_ganging_enabled(pvt)) in amd64_read_dct_pci_cfg() 138 dct = (dct && pvt->model == 0x30) ? 3 : dct; in amd64_read_dct_pci_cfg() 139 f15h_select_dct(pvt, dct); in amd64_read_dct_pci_cfg() 150 return amd64_read_pci_cfg(pvt->F2, offset, val); in amd64_read_dct_pci_cfg() [all …]
|
D | dmc520_edac.c | 178 static u32 dmc520_read_reg(struct dmc520_edac *pvt, u32 offset) in dmc520_read_reg() argument 180 return readl(pvt->reg_base + offset); in dmc520_read_reg() 183 static void dmc520_write_reg(struct dmc520_edac *pvt, u32 val, u32 offset) in dmc520_write_reg() argument 185 writel(val, pvt->reg_base + offset); in dmc520_write_reg() 200 static u32 dmc520_get_dram_ecc_error_count(struct dmc520_edac *pvt, in dmc520_get_dram_ecc_error_count() argument 212 err_low = dmc520_read_reg(pvt, reg_offset_low); in dmc520_get_dram_ecc_error_count() 213 err_high = dmc520_read_reg(pvt, reg_offset_high); in dmc520_get_dram_ecc_error_count() 215 dmc520_write_reg(pvt, 0, reg_offset_low); in dmc520_get_dram_ecc_error_count() 216 dmc520_write_reg(pvt, 0, reg_offset_high); in dmc520_get_dram_ecc_error_count() 224 static void dmc520_get_dram_ecc_error_info(struct dmc520_edac *pvt, in dmc520_get_dram_ecc_error_info() argument [all …]
|
D | sb_edac.c | 318 u64 (*get_tolm)(struct sbridge_pvt *pvt); 319 u64 (*get_tohm)(struct sbridge_pvt *pvt); 328 u8 (*get_node_id)(struct sbridge_pvt *pvt); 330 enum mem_type (*get_memory_type)(struct sbridge_pvt *pvt); 331 enum dev_type (*get_width)(struct sbridge_pvt *pvt, u32 mtr); 794 static u64 sbridge_get_tolm(struct sbridge_pvt *pvt) in sbridge_get_tolm() argument 799 pci_read_config_dword(pvt->pci_sad1, TOLM, ®); in sbridge_get_tolm() 803 static u64 sbridge_get_tohm(struct sbridge_pvt *pvt) in sbridge_get_tohm() argument 807 pci_read_config_dword(pvt->pci_sad1, TOHM, ®); in sbridge_get_tohm() 811 static u64 ibridge_get_tolm(struct sbridge_pvt *pvt) in ibridge_get_tolm() argument [all …]
|
D | i7core_edac.c | 396 #define CH_ACTIVE(pvt, ch) ((pvt)->info.mc_control & (1 << (8 + ch))) argument 397 #define ECCx8(pvt) ((pvt)->info.mc_control & (1 << 1)) argument 400 #define ECC_ENABLED(pvt) ((pvt)->info.mc_status & (1 << 4)) argument 401 #define CH_DISABLED(pvt, ch) ((pvt)->info.mc_status & (1 << ch)) argument 489 struct i7core_pvt *pvt = mci->pvt_info; in get_dimm_config() local 497 pdev = pvt->pci_mcr[0]; in get_dimm_config() 502 pci_read_config_dword(pdev, MC_CONTROL, &pvt->info.mc_control); in get_dimm_config() 503 pci_read_config_dword(pdev, MC_STATUS, &pvt->info.mc_status); in get_dimm_config() 504 pci_read_config_dword(pdev, MC_MAX_DOD, &pvt->info.max_dod); in get_dimm_config() 505 pci_read_config_dword(pdev, MC_CHANNEL_MAPPER, &pvt->info.ch_map); in get_dimm_config() [all …]
|
D | amd64_edac.h | 147 #define dram_rw(pvt, i) ((u8)(pvt->ranges[i].base.lo & 0x3)) argument 148 #define dram_intlv_sel(pvt, i) ((u8)((pvt->ranges[i].lim.lo >> 8) & 0x7)) argument 149 #define dram_dst_node(pvt, i) ((u8)(pvt->ranges[i].lim.lo & 0x7)) argument 152 #define dhar_mem_hoist_valid(pvt) ((pvt)->dhar & BIT(1)) argument 153 #define dhar_base(pvt) ((pvt)->dhar & 0xff000000) argument 154 #define k8_dhar_offset(pvt) (((pvt)->dhar & 0x0000ff00) << 16) argument 157 #define f10_dhar_offset(pvt) (((pvt)->dhar & 0x0000ff80) << 16) argument 178 #define csrow_enabled(i, dct, pvt) ((pvt)->csels[(dct)].csbases[(i)] & DCSB_CS_ENABLE) argument 179 #define csrow_sec_enabled(i, dct, pvt) ((pvt)->csels[(dct)].csbases_sec[(i)] & DCSB_CS_ENABLE) argument 201 #define dct_high_range_enabled(pvt) ((pvt)->dct_sel_lo & BIT(0)) argument [all …]
|
D | i7300_edac.c | 353 struct i7300_pvt *pvt; in i7300_process_error_global() local 359 pvt = mci->pvt_info; in i7300_process_error_global() 362 pci_read_config_dword(pvt->pci_dev_16_2_fsb_err_regs, in i7300_process_error_global() 372 pci_write_config_dword(pvt->pci_dev_16_2_fsb_err_regs, in i7300_process_error_global() 378 pci_read_config_dword(pvt->pci_dev_16_2_fsb_err_regs, in i7300_process_error_global() 388 pci_write_config_dword(pvt->pci_dev_16_2_fsb_err_regs, in i7300_process_error_global() 408 struct i7300_pvt *pvt; in i7300_process_fbd_error() local 418 pvt = mci->pvt_info; in i7300_process_fbd_error() 421 pci_read_config_dword(pvt->pci_dev_16_1_fsb_addr_map, in i7300_process_fbd_error() 430 pci_read_config_word(pvt->pci_dev_16_1_fsb_addr_map, in i7300_process_fbd_error() [all …]
|
D | i5000_edac.c | 388 struct i5000_pvt *pvt; in i5000_get_error_info() local 391 pvt = mci->pvt_info; in i5000_get_error_info() 394 pci_read_config_dword(pvt->branchmap_werrors, FERR_FAT_FBD, &value); in i5000_get_error_info() 406 pci_read_config_dword(pvt->branchmap_werrors, in i5000_get_error_info() 408 pci_read_config_word(pvt->branchmap_werrors, in i5000_get_error_info() 410 pci_read_config_dword(pvt->branchmap_werrors, in i5000_get_error_info() 414 pci_write_config_dword(pvt->branchmap_werrors, in i5000_get_error_info() 424 pci_read_config_dword(pvt->branchmap_werrors, FERR_NF_FBD, &value); in i5000_get_error_info() 432 pci_read_config_dword(pvt->branchmap_werrors, in i5000_get_error_info() 434 pci_read_config_word(pvt->branchmap_werrors, in i5000_get_error_info() [all …]
|
D | i5400_edac.c | 438 struct i5400_pvt *pvt; in i5400_get_error_info() local 441 pvt = mci->pvt_info; in i5400_get_error_info() 444 pci_read_config_dword(pvt->branchmap_werrors, FERR_FAT_FBD, &value); in i5400_get_error_info() 457 pci_read_config_dword(pvt->branchmap_werrors, in i5400_get_error_info() 459 pci_read_config_word(pvt->branchmap_werrors, in i5400_get_error_info() 461 pci_read_config_dword(pvt->branchmap_werrors, in i5400_get_error_info() 465 pci_write_config_dword(pvt->branchmap_werrors, in i5400_get_error_info() 475 pci_read_config_dword(pvt->branchmap_werrors, FERR_NF_FBD, &value); in i5400_get_error_info() 483 pci_read_config_dword(pvt->branchmap_werrors, in i5400_get_error_info() 485 pci_read_config_word(pvt->branchmap_werrors, in i5400_get_error_info() [all …]
|
D | amd64_edac_inj.c | 9 struct amd64_pvt *pvt = mci->pvt_info; in amd64_inject_section_show() local 10 return sprintf(buf, "0x%x\n", pvt->injection.section); in amd64_inject_section_show() 24 struct amd64_pvt *pvt = mci->pvt_info; in amd64_inject_section_store() local 37 pvt->injection.section = (u32) value; in amd64_inject_section_store() 46 struct amd64_pvt *pvt = mci->pvt_info; in amd64_inject_word_show() local 47 return sprintf(buf, "0x%x\n", pvt->injection.word); in amd64_inject_word_show() 61 struct amd64_pvt *pvt = mci->pvt_info; in amd64_inject_word_store() local 74 pvt->injection.word = (u32) value; in amd64_inject_word_store() 83 struct amd64_pvt *pvt = mci->pvt_info; in amd64_inject_ecc_vector_show() local 84 return sprintf(buf, "0x%x\n", pvt->injection.bit_map); in amd64_inject_ecc_vector_show() [all …]
|
D | e752x_edac.c | 308 struct e752x_pvt *pvt = (struct e752x_pvt *)mci->pvt_info; in ctl_page_to_phys() local 312 if (page < pvt->tolm) in ctl_page_to_phys() 315 if ((page >= 0x100000) && (page < pvt->remapbase)) in ctl_page_to_phys() 318 remap = (page - pvt->tolm) + pvt->remapbase; in ctl_page_to_phys() 320 if (remap < pvt->remaplimit) in ctl_page_to_phys() 324 return pvt->tolm - 1; in ctl_page_to_phys() 334 struct e752x_pvt *pvt = (struct e752x_pvt *)mci->pvt_info; in do_process_ce() local 342 if (pvt->mc_symmetric) { in do_process_ce() 347 pvt->map[0], pvt->map[1], pvt->map[2], pvt->map[3], in do_process_ce() 348 pvt->map[4], pvt->map[5], pvt->map[6], in do_process_ce() [all …]
|
D | e7xxx_edac.c | 186 struct e7xxx_pvt *pvt = (struct e7xxx_pvt *)mci->pvt_info; in ctl_page_to_phys() local 190 if ((page < pvt->tolm) || in ctl_page_to_phys() 191 ((page >= 0x100000) && (page < pvt->remapbase))) in ctl_page_to_phys() 194 remap = (page - pvt->tolm) + pvt->remapbase; in ctl_page_to_phys() 196 if (remap < pvt->remaplimit) in ctl_page_to_phys() 200 return pvt->tolm - 1; in ctl_page_to_phys() 259 struct e7xxx_pvt *pvt; in e7xxx_get_error_info() local 261 pvt = (struct e7xxx_pvt *)mci->pvt_info; in e7xxx_get_error_info() 262 pci_read_config_byte(pvt->bridge_ck, E7XXX_DRAM_FERR, &info->dram_ferr); in e7xxx_get_error_info() 263 pci_read_config_byte(pvt->bridge_ck, E7XXX_DRAM_NERR, &info->dram_nerr); in e7xxx_get_error_info() [all …]
|
D | octeon_edac-lmc.c | 73 struct octeon_lmc_pvt *pvt = mci->pvt_info; in octeon_lmc_edac_poll_o2() local 78 if (!pvt->inject) in octeon_lmc_edac_poll_o2() 82 if (pvt->error_type == 1) in octeon_lmc_edac_poll_o2() 84 if (pvt->error_type == 2) in octeon_lmc_edac_poll_o2() 90 if (likely(!pvt->inject)) in octeon_lmc_edac_poll_o2() 93 fadr.cn61xx.fdimm = pvt->dimm; in octeon_lmc_edac_poll_o2() 94 fadr.cn61xx.fbunk = pvt->rank; in octeon_lmc_edac_poll_o2() 95 fadr.cn61xx.fbank = pvt->bank; in octeon_lmc_edac_poll_o2() 96 fadr.cn61xx.frow = pvt->row; in octeon_lmc_edac_poll_o2() 97 fadr.cn61xx.fcol = pvt->col; in octeon_lmc_edac_poll_o2() [all …]
|
D | ghes_edac.c | 242 struct ghes_pvt *pvt; in ghes_edac_report_mem_error() local 256 pvt = ghes_pvt; in ghes_edac_report_mem_error() 257 if (!pvt) in ghes_edac_report_mem_error() 260 mci = pvt->mci; in ghes_edac_report_mem_error() 267 e->msg = pvt->msg; in ghes_edac_report_mem_error() 268 e->other_detail = pvt->other_detail; in ghes_edac_report_mem_error() 272 *pvt->other_detail = '\0'; in ghes_edac_report_mem_error() 273 *pvt->msg = '\0'; in ghes_edac_report_mem_error() 295 p = pvt->msg; in ghes_edac_report_mem_error() 350 strcpy(pvt->msg, "unknown error"); in ghes_edac_report_mem_error() [all …]
|
D | i82875p_edac.c | 393 struct i82875p_pvt *pvt; in i82875p_probe1() local 413 mci = edac_mc_alloc(0, ARRAY_SIZE(layers), layers, sizeof(*pvt)); in i82875p_probe1() 429 edac_dbg(3, "init pvt\n"); in i82875p_probe1() 430 pvt = (struct i82875p_pvt *)mci->pvt_info; in i82875p_probe1() 431 pvt->ovrfl_pdev = ovrfl_pdev; in i82875p_probe1() 432 pvt->ovrfl_window = ovrfl_window; in i82875p_probe1() 494 struct i82875p_pvt *pvt = NULL; in i82875p_remove_one() local 504 pvt = (struct i82875p_pvt *)mci->pvt_info; in i82875p_remove_one() 506 if (pvt->ovrfl_window) in i82875p_remove_one() 507 iounmap(pvt->ovrfl_window); in i82875p_remove_one() [all …]
|
D | edac_pci.c | 35 void *p = NULL, *pvt; in edac_pci_alloc_ctl_info() local 41 pvt = edac_align_ptr(&p, 1, sz_pvt); in edac_pci_alloc_ctl_info() 42 size = ((unsigned long)pvt) + sz_pvt; in edac_pci_alloc_ctl_info() 50 pvt = sz_pvt ? ((char *)pci) + ((unsigned long)pvt) : NULL; in edac_pci_alloc_ctl_info() 52 pci->pvt_info = pvt; in edac_pci_alloc_ctl_info()
|
/Linux-v5.10/Documentation/devicetree/bindings/hwmon/ |
D | moortec,mr75203.yaml | 7 title: Moortec Semiconductor MR75203 PVT Controller bindings 18 - description: PVT common registers 19 - description: PVT temprature sensor registers 20 - description: PVT process detector registers 21 - description: PVT voltage monitor registers 32 PVT controller has 5 VM (voltage monitor) sensors. 60 pvt: pvt@e0680000 {
|
D | baikal,bt1-pvt.yaml | 5 $id: http://devicetree.org/schemas/hwmon/baikal,bt1-pvt.yaml# 8 title: Baikal-T1 PVT Sensor 18 is based on the Analog Bits PVT sensor, but is equipped with a dedicated 25 Analog Bits core Bakal-T1 PVT control block 43 This bindings describes the external Baikal-T1 PVT control interfaces 50 const: baikal,bt1-pvt 60 - description: PVT reference clock 72 baikal,pvt-temp-offset-millicelsius: 95 pvt@1f200000 { 96 compatible = "baikal,bt1-pvt"; [all …]
|
/Linux-v5.10/drivers/s390/crypto/ |
D | zcrypt_cca_key.h | 182 struct cca_pvt_ext_CRT_sec pvt; in zcrypt_type6_crt_key() member 214 key->pvt.section_identifier = CCA_PVT_EXT_CRT_SEC_ID_PVT; in zcrypt_type6_crt_key() 215 key->pvt.section_length = sizeof(key->pvt) + key_len; in zcrypt_type6_crt_key() 216 key->pvt.key_format = CCA_PVT_EXT_CRT_SEC_FMT_CL; in zcrypt_type6_crt_key() 217 key->pvt.key_use_flags[0] = CCA_PVT_USAGE_ALL; in zcrypt_type6_crt_key() 218 key->pvt.p_len = key->pvt.dp_len = key->pvt.u_len = long_len; in zcrypt_type6_crt_key() 219 key->pvt.q_len = key->pvt.dq_len = short_len; in zcrypt_type6_crt_key() 220 key->pvt.mod_len = crt->inputdatalength; in zcrypt_type6_crt_key() 221 key->pvt.pad_len = pad_len; in zcrypt_type6_crt_key()
|
/Linux-v5.10/sound/pci/asihpi/ |
D | hpidspcd.c | 72 dsp_code->pvt = kmalloc(sizeof(*dsp_code->pvt), GFP_KERNEL); in hpi_dsp_code_open() 73 if (!dsp_code->pvt) { in hpi_dsp_code_open() 78 dsp_code->pvt->dev = dev; in hpi_dsp_code_open() 79 dsp_code->pvt->firmware = firmware; in hpi_dsp_code_open() 96 release_firmware(dsp_code->pvt->firmware); in hpi_dsp_code_close() 97 kfree(dsp_code->pvt); in hpi_dsp_code_close() 113 *pword = ((u32 *)(dsp_code->pvt->firmware->data))[dsp_code-> in hpi_dsp_code_read_word() 127 ((u32 *)(dsp_code->pvt->firmware->data)) + in hpi_dsp_code_read_block()
|
/Linux-v5.10/arch/powerpc/kvm/ |
D | book3s_hv_uvmem.c | 512 struct kvmppc_uvmem_page_pvt *pvt; in __kvmppc_svm_page_out() local 547 pvt = spage->zone_device_data; in __kvmppc_svm_page_out() 557 if (!pvt->skip_page_out) in __kvmppc_svm_page_out() 602 struct kvmppc_uvmem_page_pvt *pvt; in kvmppc_uvmem_drop_pages() local 628 pvt = uvmem_page->zone_device_data; in kvmppc_uvmem_drop_pages() 629 pvt->skip_page_out = skip_page_out; in kvmppc_uvmem_drop_pages() 630 pvt->remove_gfn = true; in kvmppc_uvmem_drop_pages() 633 PAGE_SHIFT, kvm, pvt->gpa)) in kvmppc_uvmem_drop_pages() 635 pvt->gpa, addr); in kvmppc_uvmem_drop_pages() 687 struct kvmppc_uvmem_page_pvt *pvt; in kvmppc_uvmem_get_page() local [all …]
|
/Linux-v5.10/Documentation/hwmon/ |
D | bt1-pvt.rst | 3 Kernel driver bt1-pvt 8 * Baikal-T1 PVT sensor (in SoC) 10 Prefix: 'bt1-pvt' 24 embedded into Baikal-T1 process, voltage and temperature sensors. PVT IP-core 28 for each sensor the PVT controller supports. The alarms functionality is made 38 design it's recommended to have them disabled to prevent the PVT IRQs being
|
/Linux-v5.10/arch/s390/kernel/ |
D | cache.c | 156 unsigned int level, idx, pvt; in populate_cache_leaves() local 167 pvt = (ct.ci[level].scope == CACHE_SCOPE_PRIVATE) ? 1 : 0; in populate_cache_leaves() 170 ci_leaf_init(this_leaf++, pvt, CACHE_TYPE_DATA, level, cpu); in populate_cache_leaves() 171 ci_leaf_init(this_leaf++, pvt, CACHE_TYPE_INST, level, cpu); in populate_cache_leaves() 173 ci_leaf_init(this_leaf++, pvt, ctype, level, cpu); in populate_cache_leaves()
|