Home
last modified time | relevance | path

Searched full:density (Results 1 – 25 of 113) sorted by relevance

12345

/linux-6.15/drivers/memory/
Demif.c267 /* Find addressing table entry based on the device's type and density */
271 u32 index, type, density; in get_addressing_table() local
274 density = device_info->density; in get_addressing_table()
278 index = density - 1; in get_addressing_table()
281 switch (density) { in get_addressing_table()
284 index = density + 3; in get_addressing_table()
287 index = density - 1; in get_addressing_table()
778 static int is_dev_data_valid(u32 type, u32 density, u32 io_width, u32 phy_type, in is_dev_data_valid() argument
785 && (density >= DDR_DENSITY_64Mb in is_dev_data_valid()
786 && density <= DDR_DENSITY_8Gb) in is_dev_data_valid()
[all …]
Dof_memory.c345 err = of_property_read_u32(np, "density", &info.density); in of_lpddr2_get_info()
349 info.density = ffs(info.density) - 7; in of_lpddr2_get_info()
Djedec_ddr.h199 unsigned int density : 4; member
211 int density; member
/linux-6.15/include/linux/platform_data/
Demif_plat.h47 * @density: Device density
57 u32 density; member
98 * as type, bus width, density etc
/linux-6.15/Documentation/arch/arm/sa1100/
Dserial_uart.rst13 > Okay. Note that device numbers 204 and 205 are used for "low density
20 > 204 char Low-density serial ports
25 > 205 char Low-density serial ports (alternate device)
/linux-6.15/Documentation/devicetree/bindings/sound/
Dmicrochip,sama7g5-pdmc.yaml7 title: Microchip Pulse Density Microphone Controller
13 The Microchip Pulse Density Microphone Controller (PDMC) interfaces up to 4
14 digital microphones having Pulse Density Modulated (PDM) outputs.
/linux-6.15/Documentation/devicetree/bindings/memory-controllers/ddr/
Djedec,lpddr4.yaml23 - density
32 density = <8192>;
Djedec,lpddr-channel.yaml119 density = <8192>;
134 density = <4096>;
142 density = <2048>;
Djedec,lpddr5.yaml33 - density
42 density = <8192>;
Djedec,lpddr-props.yaml45 density:
48 Density in megabits of SDRAM chip. Decoded from Mode Register 8.
Djedec,lpddr2.yaml138 - density
147 density = <2048>;
Djedec,lpddr3.yaml186 - density
195 density = <16384>;
/linux-6.15/drivers/net/wireless/intel/iwlwifi/fw/api/
Dsta.h33 * @STA_FLG_AGG_MPDU_DENS_MSK: maximal MPDU density for Tx aggregation
47 * @STA_FLG_AGG_MPDU_DENS_MSK: A-MPDU density (mask)
48 * @STA_FLG_AGG_MPDU_DENS_SHIFT: A-MPDU density (bit shift)
49 * @STA_FLG_AGG_MPDU_DENS_2US: A-MPDU density (2 usec gap)
50 * @STA_FLG_AGG_MPDU_DENS_4US: A-MPDU density (4 usec gap)
51 * @STA_FLG_AGG_MPDU_DENS_8US: A-MPDU density (8 usec gap)
52 * @STA_FLG_AGG_MPDU_DENS_16US: A-MPDU density (16 usec gap)
/linux-6.15/drivers/scsi/
Dsr_vendor.c129 int rc, density = 0; in sr_set_blocklength() local
132 density = (blocklength > 2048) ? 0x81 : 0x83; in sr_set_blocklength()
139 sr_printk(KERN_INFO, cd, "MODE SELECT 0x%x/%d\n", density, blocklength); in sr_set_blocklength()
148 modesel->density = density; in sr_set_blocklength()
Dst.h67 short default_density; /* Forced density, -1 = no value */
167 unsigned char density; member
/linux-6.15/arch/sparc/include/asm/
Dauxio_64.h28 * D - Floppy Density Sense (1=high density) R/O
35 #define AUXIO_AUX1_FDENS 0x20 /* Floppy Density Sense */
/linux-6.15/Documentation/driver-api/thermal/
Dcpu-idle-cooling.rst25 because of the OPP density, we can only choose an OPP with a power
41 The Operating Performance Point (OPP) density has a great influence on
43 plethora of OPP density, and some have large power gap between OPPs,
/linux-6.15/fs/erofs/
DKconfig13 smartphones with Android OS, LiveCDs and high-density hosts with
17 improve storage density and maintain relatively high compression
/linux-6.15/Documentation/admin-guide/
Ddevices.txt73 12 = /dev/fd?u360 3.5" 360K Double Density(2)
74 16 = /dev/fd?u720 3.5" 720K Double Density(1)
75 120 = /dev/fd?u800 3.5" 800K Double Density(2)
76 52 = /dev/fd?u820 3.5" 820K Double Density
77 68 = /dev/fd?u830 3.5" 830K Double Density
78 84 = /dev/fd?u1040 3.5" 1040K Double Density(1)
79 88 = /dev/fd?u1120 3.5" 1120K Double Density(1)
80 28 = /dev/fd?u1440 3.5" 1440K High Density(1)
81 124 = /dev/fd?u1600 3.5" 1600K High Density(1)
82 44 = /dev/fd?u1680 3.5" 1680K High Density(3)
[all …]
/linux-6.15/include/scsi/
Dscsi.h44 __u8 density; /* device-specific density code */ member
/linux-6.15/drivers/mtd/nand/onenand/
Donenand_base.c361 * onenand_get_density - [DEFAULT] Get OneNAND density
364 * Get OneNAND density from device ID
368 int density = dev_id >> ONENAND_DEVICE_DENSITY_SHIFT; in onenand_get_density() local
369 return (density & ONENAND_DEVICE_DENSITY_MASK); in onenand_get_density()
3045 int density; in onenand_otp_walk() local
3050 density = onenand_get_density(this->device_id); in onenand_otp_walk()
3051 if (density < ONENAND_DEVICE_DENSITY_512Mb) in onenand_otp_walk()
3255 unsigned int density, process, numbufs; in onenand_check_features() local
3257 /* Lock scheme depends on density and process */ in onenand_check_features()
3258 density = onenand_get_density(this->device_id); in onenand_check_features()
[all …]
/linux-6.15/include/uapi/linux/
Dadfs_fs.h15 __u8 density; member
/linux-6.15/drivers/net/wireless/ath/carl9170/
Dtx.c1043 unsigned int density, factor; in carl9170_tx_prepare() local
1050 density = sta->deflink.ht_cap.ampdu_density; in carl9170_tx_prepare()
1052 if (density) { in carl9170_tx_prepare()
1056 * Otus uses slightly different density values than in carl9170_tx_prepare()
1060 density = max_t(unsigned int, density + 1, 7u); in carl9170_tx_prepare()
1064 txc->s.ampdu_settings, density); in carl9170_tx_prepare()
1109 * There's no sane way to handle different density values with in carl9170_set_ampdu_params()
/linux-6.15/Documentation/scsi/
Dst.rst28 parameters, like block size and density using the MTSETDRVBUFFER ioctl.
446 Sets the drive density code to arg. See drive
460 density codes for compression control. Some drives use another
557 Used to set or clear the density (8 bits), and drive buffer
616 The current block size and the density code are stored in the field
/linux-6.15/sound/soc/fsl/
DKconfig85 tristate "Pulse Density Modulation Microphone Interface (MICFIL) module support"
91 Say Y if you want to add Pulse Density Modulation microphone

12345