/Linux-v6.1/drivers/power/supply/ |
D | samsung-sdi-battery.c | 451 { .ocv = 4330000, .capacity = 100}, 452 { .ocv = 4320000, .capacity = 99}, 453 { .ocv = 4283000, .capacity = 95}, 454 { .ocv = 4246000, .capacity = 92}, 455 { .ocv = 4211000, .capacity = 89}, 456 { .ocv = 4167000, .capacity = 85}, 457 { .ocv = 4146000, .capacity = 83}, 458 { .ocv = 4124000, .capacity = 81}, 459 { .ocv = 4062000, .capacity = 75}, 460 { .ocv = 4013000, .capacity = 70}, [all …]
|
D | ab8500_bmdata.c | 20 { .ocv = 4186000, .capacity = 100}, 21 { .ocv = 4163000, .capacity = 99}, 22 { .ocv = 4114000, .capacity = 95}, 23 { .ocv = 4068000, .capacity = 90}, 24 { .ocv = 3990000, .capacity = 80}, 25 { .ocv = 3926000, .capacity = 70}, 26 { .ocv = 3898000, .capacity = 65}, 27 { .ocv = 3866000, .capacity = 60}, 28 { .ocv = 3833000, .capacity = 55}, 29 { .ocv = 3812000, .capacity = 50}, [all …]
|
D | acer_a500_battery.c | 60 unsigned int capacity; member 65 unsigned int capacity; in a500_battery_update_capacity() local 68 err = regmap_read(bat->regmap, ec_data[REG_CAPACITY].reg, &capacity); in a500_battery_update_capacity() 73 capacity = min(capacity, 100u); in a500_battery_update_capacity() 75 if (bat->capacity != capacity) { in a500_battery_update_capacity() 76 bat->capacity = capacity; in a500_battery_update_capacity() 85 if (bat->capacity < 100) { in a500_battery_get_status() 164 val->intval = bat->capacity; in a500_battery_get_property()
|
D | ds2782_battery.c | 49 int (*get_battery_capacity)(struct ds278x_info *info, int *capacity); 62 int capacity; member 161 static int ds2782_get_capacity(struct ds278x_info *info, int *capacity) in ds2782_get_capacity() argument 169 *capacity = raw; in ds2782_get_capacity() 201 static int ds2786_get_capacity(struct ds278x_info *info, int *capacity) in ds2786_get_capacity() argument 210 *capacity = raw/2 ; in ds2786_get_capacity() 218 int capacity; in ds278x_get_status() local 224 err = info->ops->get_battery_capacity(info, &capacity); in ds278x_get_status() 228 info->capacity = capacity; in ds278x_get_status() 230 if (capacity == 100) in ds278x_get_status() [all …]
|
D | rx51_battery.c | 134 int capacity = rx51_battery_read_adc(di->channel_bsi); in rx51_battery_read_capacity() local 136 if (capacity < 0) { in rx51_battery_read_capacity() 137 dev_err(di->dev, "Could not read ADC: %d\n", capacity); in rx51_battery_read_capacity() 138 return capacity; in rx51_battery_read_capacity() 141 return 1280 * (1200 * capacity)/(1024 - capacity); in rx51_battery_read_capacity()
|
/Linux-v6.1/drivers/gpu/drm/amd/display/dc/basics/ |
D | vector.c | 32 uint32_t capacity, in dal_vector_construct() argument 37 if (!struct_size || !capacity) { in dal_vector_construct() 43 vector->container = kcalloc(capacity, struct_size, GFP_KERNEL); in dal_vector_construct() 46 vector->capacity = capacity; in dal_vector_construct() 86 vector->capacity = count; in dal_vector_presized_costruct() 114 uint32_t capacity, in dal_vector_create() argument 122 if (dal_vector_construct(vector, ctx, capacity, struct_size)) in dal_vector_create() 135 vector->capacity = 0; in dal_vector_destruct() 210 if (vector->count == vector->capacity) { in dal_vector_insert_at() 213 calc_increased_capacity(vector->capacity))) in dal_vector_insert_at() [all …]
|
/Linux-v6.1/Documentation/translations/zh_CN/scheduler/ |
D | sched-capacity.rst | 4 :Original: Documentation/scheduler/sched-capacity.rst 27 我们引入CPU算力(capacity)的概念来测量每个CPU能达到的性能,它的值相对系统中性能最强的CPU 42 capacity(cpu) = work_per_hz(cpu) * max_freq(cpu) 48 CPU的 ``capacity`` 是 ``capacity_orig`` 扣除了一些性能损失(比如处理中断的耗时)的值。 50 注意CPU的 ``capacity`` 仅仅被设计用于CFS调度类,而 ``capacity_orig`` 是不感知调度类的。为 51 简洁起见,本文档的剩余部分将不加区分的使用术语 ``capacity`` 和 ``capacity_orig`` 。 67 - capacity(CPU0) = C 68 - capacity(CPU1) = C/2 98 - capacity(CPU0) = C 99 - capacity(CPU1) = C/3 [all …]
|
/Linux-v6.1/drivers/misc/vmw_vmci/ |
D | vmci_handle_array.c | 11 static size_t handle_arr_calc_size(u32 capacity) in handle_arr_calc_size() argument 14 capacity * sizeof(struct vmci_handle); in handle_arr_calc_size() 17 struct vmci_handle_arr *vmci_handle_arr_create(u32 capacity, u32 max_capacity) in vmci_handle_arr_create() argument 21 if (max_capacity == 0 || capacity > max_capacity) in vmci_handle_arr_create() 24 if (capacity == 0) in vmci_handle_arr_create() 25 capacity = min((u32)VMCI_HANDLE_ARRAY_DEFAULT_CAPACITY, in vmci_handle_arr_create() 28 array = kmalloc(handle_arr_calc_size(capacity), GFP_ATOMIC); in vmci_handle_arr_create() 32 array->capacity = capacity; in vmci_handle_arr_create() 49 if (unlikely(array->size >= array->capacity)) { in vmci_handle_arr_append_entry() 52 u32 capacity_bump = min(array->max_capacity - array->capacity, in vmci_handle_arr_append_entry() [all …]
|
/Linux-v6.1/drivers/scsi/ |
D | scsicam.c | 60 bool scsi_partsize(struct block_device *bdev, sector_t capacity, int geom[3]) in scsi_partsize() argument 124 geom[2] = (unsigned long)capacity / in scsi_partsize() 175 static int setsize(unsigned long capacity, unsigned int *cyls, unsigned int *hds, in setsize() argument 185 heads = capacity / temp; /* Compute value for number of heads */ in setsize() 186 if (capacity % temp) { /* If no remainder, done! */ in setsize() 189 sectors = capacity / temp; /* Compute value for sectors per in setsize() 191 if (capacity % temp) { /* If no remainder, done! */ in setsize() 194 cylinders = capacity / temp; /* Compute number of cylinders */ in setsize() 218 int scsicam_bios_param(struct block_device *bdev, sector_t capacity, int *ip) in scsicam_bios_param() argument 220 u64 capacity64 = capacity; /* Suppress gcc warning */ in scsicam_bios_param() [all …]
|
/Linux-v6.1/Documentation/scheduler/ |
D | sched-capacity.rst | 16 CPU capacity is a measure of the performance a CPU can reach, normalized against 18 asymmetric CPU capacity systems, as they contain CPUs of different capacities. 20 Disparity in maximum attainable performance (IOW in maximum CPU capacity) stems 36 capacity(cpu) = work_per_hz(cpu) * max_freq(cpu) 41 Two different capacity values are used within the scheduler. A CPU's 42 ``capacity_orig`` is its maximum attainable capacity, i.e. its maximum 43 attainable performance level. A CPU's ``capacity`` is its ``capacity_orig`` to 47 Note that a CPU's ``capacity`` is solely intended to be used by the CFS class, 49 the term ``capacity`` interchangeably with ``capacity_orig`` for the sake of 58 Consider an hypothetical dual-core asymmetric CPU capacity system where [all …]
|
/Linux-v6.1/Documentation/devicetree/bindings/arm/ |
D | cpu-capacity.txt | 2 ARM CPUs capacity bindings 15 2 - CPU capacity definition 18 CPU capacity is a number that provides the scheduler information about CPUs 27 final capacity should, however, be: 43 3 - capacity-dmips-mhz 46 capacity-dmips-mhz is an optional cpu node [1] property: u32 value 47 representing CPU capacity expressed in normalized DMIPS/MHz. At boot time, the 48 maximum frequency available to the cpu is then used to calculate the capacity 51 capacity-dmips-mhz property is all-or-nothing: if it is specified for a cpu 53 fall back to the default capacity value for every CPU. If cpufreq is not [all …]
|
/Linux-v6.1/rust/alloc/ |
D | raw_vec.rs | 94 pub fn with_capacity(capacity: usize) -> Self { in with_capacity() 95 Self::with_capacity_in(capacity, Global) in with_capacity() 102 pub fn with_capacity_zeroed(capacity: usize) -> Self { in with_capacity_zeroed() 103 Self::with_capacity_zeroed_in(capacity, Global) in with_capacity_zeroed() 132 pub fn with_capacity_in(capacity: usize, alloc: A) -> Self { in with_capacity_in() 133 Self::allocate_in(capacity, AllocInit::Uninitialized, alloc) in with_capacity_in() 140 pub fn with_capacity_zeroed_in(capacity: usize, alloc: A) -> Self { in with_capacity_zeroed_in() 141 Self::allocate_in(capacity, AllocInit::Zeroed, alloc) in with_capacity_zeroed_in() 159 len <= self.capacity(), in into_box() 171 fn allocate_in(capacity: usize, init: AllocInit, alloc: A) -> Self { in allocate_in() [all …]
|
/Linux-v6.1/arch/arm/kernel/ |
D | topology.c | 91 unsigned long capacity = 0; in parse_dt_topology() local 128 capacity = ((be32_to_cpup(rate)) >> 20) * cpu_eff->efficiency; in parse_dt_topology() 131 if (capacity < min_capacity) in parse_dt_topology() 132 min_capacity = capacity; in parse_dt_topology() 135 if (capacity > max_capacity) in parse_dt_topology() 136 max_capacity = capacity; in parse_dt_topology() 138 cpu_capacity(cpu) = capacity; in parse_dt_topology()
|
/Linux-v6.1/drivers/cpufreq/ |
D | amd-pstate-trace.h | 29 unsigned long capacity, 41 capacity, 54 __field(unsigned long, capacity) 67 __entry->capacity = capacity; 80 (unsigned long)__entry->capacity,
|
/Linux-v6.1/drivers/gpu/drm/amd/display/amdgpu_dm/ |
D | amdgpu_dm_plane.c | 344 uint64_t **mods, uint64_t *size, uint64_t *capacity) in add_gfx10_1_modifiers() argument 348 add_modifier(mods, size, capacity, AMD_FMT_MOD | in add_gfx10_1_modifiers() 357 add_modifier(mods, size, capacity, AMD_FMT_MOD | in add_gfx10_1_modifiers() 367 add_modifier(mods, size, capacity, AMD_FMT_MOD | in add_gfx10_1_modifiers() 372 add_modifier(mods, size, capacity, AMD_FMT_MOD | in add_gfx10_1_modifiers() 379 add_modifier(mods, size, capacity, AMD_FMT_MOD | in add_gfx10_1_modifiers() 383 add_modifier(mods, size, capacity, AMD_FMT_MOD | in add_gfx10_1_modifiers() 389 uint64_t **mods, uint64_t *size, uint64_t *capacity) in add_gfx9_modifiers() argument 410 add_modifier(mods, size, capacity, AMD_FMT_MOD | in add_gfx9_modifiers() 421 add_modifier(mods, size, capacity, AMD_FMT_MOD | in add_gfx9_modifiers() [all …]
|
/Linux-v6.1/arch/arm/boot/dts/ |
D | exynos5420-cpus.dtsi | 66 capacity-dmips-mhz = <1024>; 78 capacity-dmips-mhz = <1024>; 90 capacity-dmips-mhz = <1024>; 102 capacity-dmips-mhz = <1024>; 114 capacity-dmips-mhz = <539>; 126 capacity-dmips-mhz = <539>; 138 capacity-dmips-mhz = <539>; 150 capacity-dmips-mhz = <539>;
|
D | exynos5422-cpus.dtsi | 65 capacity-dmips-mhz = <539>; 78 capacity-dmips-mhz = <539>; 91 capacity-dmips-mhz = <539>; 104 capacity-dmips-mhz = <539>; 117 capacity-dmips-mhz = <1024>; 130 capacity-dmips-mhz = <1024>; 143 capacity-dmips-mhz = <1024>; 156 capacity-dmips-mhz = <1024>;
|
/Linux-v6.1/arch/arm64/boot/dts/amlogic/ |
D | meson-g12b.dtsi | 51 capacity-dmips-mhz = <592>; 61 capacity-dmips-mhz = <592>; 71 capacity-dmips-mhz = <1024>; 81 capacity-dmips-mhz = <1024>; 91 capacity-dmips-mhz = <1024>; 101 capacity-dmips-mhz = <1024>;
|
D | meson-gxm.dtsi | 46 capacity-dmips-mhz = <1024>; 50 capacity-dmips-mhz = <1024>; 54 capacity-dmips-mhz = <1024>; 58 capacity-dmips-mhz = <1024>; 66 capacity-dmips-mhz = <1024>; 77 capacity-dmips-mhz = <1024>; 88 capacity-dmips-mhz = <1024>; 99 capacity-dmips-mhz = <1024>;
|
/Linux-v6.1/arch/arm64/boot/dts/qcom/ |
D | sdm660.dtsi | 90 capacity-dmips-mhz = <1024>; 96 capacity-dmips-mhz = <1024>; 102 capacity-dmips-mhz = <1024>; 108 capacity-dmips-mhz = <1024>; 114 capacity-dmips-mhz = <640>; 120 capacity-dmips-mhz = <640>; 126 capacity-dmips-mhz = <640>; 132 capacity-dmips-mhz = <640>;
|
D | sdm632.dtsi | 65 capacity-dmips-mhz = <1980>; 70 capacity-dmips-mhz = <1980>; 75 capacity-dmips-mhz = <1980>; 80 capacity-dmips-mhz = <1980>;
|
/Linux-v6.1/drivers/gpu/drm/amd/display/include/ |
D | vector.h | 33 uint32_t capacity; member 40 uint32_t capacity, 45 uint32_t capacity, 104 bool dal_vector_reserve(struct vector *vector, uint32_t capacity);
|
/Linux-v6.1/drivers/base/ |
D | arch_topology.c | 156 void topology_set_cpu_scale(unsigned int cpu, unsigned long capacity) in topology_set_cpu_scale() argument 158 per_cpu(cpu_scale, cpu) = capacity; in topology_set_cpu_scale() 180 unsigned long max_capacity, capacity, th_pressure; in topology_update_thermal_pressure() local 196 capacity = max_capacity; in topology_update_thermal_pressure() 198 capacity = mult_frac(max_capacity, capped_freq, max_freq); in topology_update_thermal_pressure() 200 th_pressure = max_capacity - capacity; in topology_update_thermal_pressure() 273 u64 capacity; in topology_normalize_cpu_scale() local 282 capacity = raw_capacity[cpu] * per_cpu(freq_factor, cpu); in topology_normalize_cpu_scale() 283 capacity_scale = max(capacity, capacity_scale); in topology_normalize_cpu_scale() 288 capacity = raw_capacity[cpu] * per_cpu(freq_factor, cpu); in topology_normalize_cpu_scale() [all …]
|
/Linux-v6.1/block/ |
D | blk-zoned.c | 148 sector_t capacity = get_capacity(disk); in blkdev_report_zones() local 153 if (!nr_zones || sector >= capacity) in blkdev_report_zones() 190 sector_t capacity = bdev_nr_sectors(bdev); in blkdev_zone_reset_all_emulated() local 207 while (sector < capacity) { in blkdev_zone_reset_all_emulated() 261 sector_t capacity = bdev_nr_sectors(bdev); in blkdev_zone_mgmt() local 275 if (end_sector <= sector || end_sector > capacity) in blkdev_zone_mgmt() 283 if ((nr_sectors & (zone_sectors - 1)) && end_sector != capacity) in blkdev_zone_mgmt() 292 if (op == REQ_OP_ZONE_RESET && sector == 0 && nr_sectors == capacity) { in blkdev_zone_mgmt() 474 sector_t capacity = get_capacity(disk); in blk_revalidate_zone_cb() local 488 args->nr_zones = (capacity + zone->len - 1) >> ilog2(zone->len); in blk_revalidate_zone_cb() [all …]
|
/Linux-v6.1/drivers/usb/storage/ |
D | sddr55.c | 87 unsigned long capacity; /* Size of card in bytes */ member 650 if (!info->capacity) in sddr55_read_map() 653 numblocks = info->capacity >> (info->blockshift + info->pageshift); in sddr55_read_map() 788 unsigned long capacity; in sddr55_transport() local 862 capacity = sddr55_get_capacity(us); in sddr55_transport() 864 if (!capacity) { in sddr55_transport() 869 info->capacity = capacity; in sddr55_transport() 875 info->max_log_blks = ((info->capacity >> (info->pageshift + info->blockshift)) / 256) * 250; in sddr55_transport() 881 capacity = (capacity / 256) * 250; in sddr55_transport() 883 capacity /= PAGESIZE; in sddr55_transport() [all …]
|