/linux-4.4.14/drivers/mtd/ |
D | cmdlinepart.c | 76 struct mtd_partition *parts; member 102 struct mtd_partition *parts; in newpart() local 175 parts = newpart(s + 1, &s, num_parts, this_part + 1, in newpart() 177 if (IS_ERR(parts)) in newpart() 178 return parts; in newpart() 187 parts = kzalloc(alloc_size, GFP_KERNEL); in newpart() 188 if (!parts) in newpart() 190 extra_mem = (unsigned char *)(parts + *num_parts); in newpart() 194 parts[this_part].size = size; in newpart() 195 parts[this_part].offset = offset; in newpart() [all …]
|
D | bcm63xxpart.c | 77 struct mtd_partition *parts; in bcm63xx_parse_cfe_partitions() local 157 parts = kzalloc(sizeof(*parts) * nrparts + 10 * nrparts, GFP_KERNEL); in bcm63xx_parse_cfe_partitions() 158 if (!parts) { in bcm63xx_parse_cfe_partitions() 164 parts[curpart].name = "CFE"; in bcm63xx_parse_cfe_partitions() 165 parts[curpart].offset = 0; in bcm63xx_parse_cfe_partitions() 166 parts[curpart].size = cfelen; in bcm63xx_parse_cfe_partitions() 174 parts[kernelpart].name = "kernel"; in bcm63xx_parse_cfe_partitions() 175 parts[kernelpart].offset = kerneladdr; in bcm63xx_parse_cfe_partitions() 176 parts[kernelpart].size = kernellen; in bcm63xx_parse_cfe_partitions() 185 parts[rootfspart].name = "rootfs"; in bcm63xx_parse_cfe_partitions() [all …]
|
D | bcm47xxpart.c | 88 struct mtd_partition *parts; in bcm47xxpart_parse() local 107 parts = kzalloc(sizeof(struct mtd_partition) * BCM47XXPART_MAX_PARTS, in bcm47xxpart_parse() 109 if (!parts) in bcm47xxpart_parse() 114 kfree(parts); in bcm47xxpart_parse() 141 bcm47xxpart_add_part(&parts[curr_part++], "boot", in bcm47xxpart_parse() 151 bcm47xxpart_add_part(&parts[curr_part++], "board_data", in bcm47xxpart_parse() 158 bcm47xxpart_add_part(&parts[curr_part++], "factory", in bcm47xxpart_parse() 166 bcm47xxpart_add_part(&parts[curr_part++], "POT", offset, in bcm47xxpart_parse() 174 bcm47xxpart_add_part(&parts[curr_part++], "ML", offset, in bcm47xxpart_parse() 189 bcm47xxpart_add_part(&parts[curr_part++], "firmware", in bcm47xxpart_parse() [all …]
|
D | redboot.c | 65 struct mtd_partition *parts; in parse_redboot_partitions() local 228 parts = kzalloc(sizeof(*parts)*nrparts + nulllen + namelen, GFP_KERNEL); in parse_redboot_partitions() 230 if (!parts) { in parse_redboot_partitions() 235 nullname = (char *)&parts[nrparts]; in parse_redboot_partitions() 247 parts[0].name = nullname; in parse_redboot_partitions() 248 parts[0].size = fl->img->flash_base; in parse_redboot_partitions() 249 parts[0].offset = 0; in parse_redboot_partitions() 254 parts[i].size = fl->img->size; in parse_redboot_partitions() 255 parts[i].offset = fl->img->flash_base; in parse_redboot_partitions() 256 parts[i].name = names; in parse_redboot_partitions() [all …]
|
D | afs.c | 168 struct mtd_partition *parts; in parse_afs_partitions() local 208 parts = kzalloc(sz, GFP_KERNEL); in parse_afs_partitions() 209 if (!parts) in parse_afs_partitions() 212 str = (char *)(parts + idx); in parse_afs_partitions() 237 parts[idx].name = str; in parse_afs_partitions() 238 parts[idx].size = (iis.length + mtd->erasesize - 1) & ~(mtd->erasesize - 1); in parse_afs_partitions() 239 parts[idx].offset = img_ptr; in parse_afs_partitions() 240 parts[idx].mask_flags = 0; in parse_afs_partitions() 243 idx, img_ptr, parts[idx].size / 1024, in parse_afs_partitions() 251 kfree(parts); in parse_afs_partitions() [all …]
|
D | mtdcore.c | 590 const struct mtd_partition *parts, in mtd_device_parse_register() argument 599 if (ret <= 0 && nr_parts && parts) { in mtd_device_parse_register() 600 real_parts = kmemdup(parts, sizeof(*parts) * nr_parts, in mtd_device_parse_register()
|
/linux-4.4.14/block/ |
D | cmdline-parser.c | 78 static void free_subpart(struct cmdline_parts *parts) in free_subpart() argument 82 while (parts->subpart) { in free_subpart() 83 subpart = parts->subpart; in free_subpart() 84 parts->subpart = subpart->next_subpart; in free_subpart() 89 static int parse_parts(struct cmdline_parts **parts, const char *bdevdef) in parse_parts() argument 98 *parts = NULL; in parse_parts() 141 *parts = newparts; in parse_parts() 150 void cmdline_parts_free(struct cmdline_parts **parts) in cmdline_parts_free() argument 154 while (*parts) { in cmdline_parts_free() 155 next_parts = (*parts)->next_parts; in cmdline_parts_free() [all …]
|
D | partition-generic.c | 478 if (state->parts[p].size) in rescan_partitions() 488 size = state->parts[p].size; in rescan_partitions() 492 from = state->parts[p].from; in rescan_partitions() 521 if (state->parts[p].has_info) in rescan_partitions() 522 info = &state->parts[p].info; in rescan_partitions() 524 state->parts[p].flags, in rescan_partitions() 525 &state->parts[p].info); in rescan_partitions() 532 if (state->parts[p].flags & ADDPART_FLAG_RAID) in rescan_partitions()
|
/linux-4.4.14/arch/mips/alchemy/devboards/ |
D | platform.c | 172 struct mtd_partition *parts; in db1x_register_norflash() local 180 parts = kzalloc(sizeof(struct mtd_partition) * 5, GFP_KERNEL); in db1x_register_norflash() 181 if (!parts) in db1x_register_norflash() 207 parts[i].offset = 0; in db1x_register_norflash() 208 parts[i].name = "User FS"; in db1x_register_norflash() 209 parts[i].size = size / 2; in db1x_register_norflash() 213 parts[i].offset = MTDPART_OFS_APPEND; in db1x_register_norflash() 214 parts[i].name = "User FS 2"; in db1x_register_norflash() 215 parts[i].size = (size / 2) - (0x20000000 - 0x1fc00000); in db1x_register_norflash() 218 parts[i].offset = MTDPART_OFS_APPEND; in db1x_register_norflash() [all …]
|
D | db1550.c | 95 .parts = db1550_spiflash_parts, 202 .parts = db1550_nand_parts,
|
/linux-4.4.14/drivers/regulator/ |
D | qcom_rpm-regulator.c | 53 (((reg)->parts->fm.mask >> (reg)->parts->fm.shift) == 3) 61 const struct rpm_reg_parts *parts; member 211 vreg->parts->request_len); in rpm_reg_write() 218 const struct rpm_reg_parts *parts = vreg->parts; in rpm_reg_set_mV_sel() local 219 const struct request_member *req = &parts->mV; in rpm_reg_set_mV_sel() 245 const struct rpm_reg_parts *parts = vreg->parts; in rpm_reg_set_uV_sel() local 246 const struct request_member *req = &parts->uV; in rpm_reg_set_uV_sel() 278 const struct rpm_reg_parts *parts = vreg->parts; in rpm_reg_mV_enable() local 279 const struct request_member *req = &parts->mV; in rpm_reg_mV_enable() 297 const struct rpm_reg_parts *parts = vreg->parts; in rpm_reg_uV_enable() local [all …]
|
/linux-4.4.14/block/partitions/ |
D | cmdline.c | 38 info = &state->parts[slot].info; in add_part() 48 state->parts[slot].has_info = true; in add_part() 71 struct cmdline_parts *parts; in cmdline_partition() local 88 parts = cmdline_parts_find(bdev_parts, bdev); in cmdline_partition() 89 if (!parts) in cmdline_partition() 94 cmdline_parts_set(parts, disk_size, 1, add_part, (void *)state); in cmdline_partition()
|
D | check.c | 124 state->parts = vzalloc(nr * sizeof(state->parts[0])); in allocate_partitions() 125 if (!state->parts) { in allocate_partitions() 137 vfree(state->parts); in free_partitions() 165 memset(state->parts, 0, state->limit * sizeof(state->parts[0])); in check_partition()
|
D | check.h | 18 } *parts; member 46 p->parts[n].from = from; in put_partition() 47 p->parts[n].size = size; in put_partition()
|
D | sun.c | 109 state->parts[slot].flags = 0; in sun_partition() 112 state->parts[slot].flags |= ADDPART_FLAG_RAID; in sun_partition() 114 state->parts[slot].flags |= ADDPART_FLAG_WHOLEDISK; in sun_partition()
|
D | msdos.c | 101 struct partition_meta_info *info = &state->parts[slot].info; in set_info() 106 state->parts[slot].has_info = true; in set_info() 185 state->parts[state->next].flags = ADDPART_FLAG_RAID; in parse_extended() 554 state->parts[slot].flags = ADDPART_FLAG_RAID; in msdos_partition()
|
D | sgi.c | 75 state->parts[slot].flags = ADDPART_FLAG_RAID; in sgi_partition()
|
D | efi.c | 715 state->parts[i + 1].flags = ADDPART_FLAG_RAID; in efi_partition() 717 info = &state->parts[i + 1].info; in efi_partition() 731 state->parts[i + 1].has_info = true; in efi_partition()
|
D | mac.c | 89 state->parts[slot].flags = ADDPART_FLAG_RAID; in mac_partition()
|
/linux-4.4.14/lib/ |
D | flex_array.c | 113 memset(&ret->parts[0], FLEX_ARRAY_FREE, in flex_array_alloc() 144 kfree(fa->parts[part_nr]); in flex_array_free_parts() 168 struct flex_array_part *part = fa->parts[part_nr]; in __fa_get_part() 176 fa->parts[part_nr] = part; in __fa_get_part() 210 part = (struct flex_array_part *)&fa->parts[0]; in flex_array_put() 241 part = (struct flex_array_part *)&fa->parts[0]; in flex_array_clear() 244 part = fa->parts[part_nr]; in flex_array_clear() 325 part = (struct flex_array_part *)&fa->parts[0]; in flex_array_get() 328 part = fa->parts[part_nr]; in flex_array_get() 387 part = fa->parts[part_nr]; in flex_array_shrink() [all …]
|
/linux-4.4.14/include/linux/ |
D | cmdline-parser.h | 33 void cmdline_parts_free(struct cmdline_parts **parts); 35 int cmdline_parts_parse(struct cmdline_parts **parts, const char *cmdline); 37 struct cmdline_parts *cmdline_parts_find(struct cmdline_parts *parts, 40 int cmdline_parts_set(struct cmdline_parts *parts, sector_t disk_size,
|
D | flex_array.h | 27 struct flex_array_part *parts[]; member 39 (FLEX_ARRAY_BASE_SIZE - offsetof(struct flex_array, parts))
|
/linux-4.4.14/arch/mips/txx9/rbtx4939/ |
D | setup.c | 383 static struct mtd_partition parts[4]; in rbtx4939_mtd_init() local 392 parts[i].name = names[i]; in rbtx4939_mtd_init() 393 parts[i].size = 0x400000; in rbtx4939_mtd_init() 394 parts[i].offset = MTDPART_OFS_NXTBLK; in rbtx4939_mtd_init() 402 parts[i].name = names[i]; in rbtx4939_mtd_init() 403 parts[i].size = 0x400000; in rbtx4939_mtd_init() 404 parts[i].offset = MTDPART_OFS_NXTBLK; in rbtx4939_mtd_init() 409 parts[0].name = "boot"; in rbtx4939_mtd_init() 410 parts[0].offset = 0xc00000; in rbtx4939_mtd_init() 411 parts[0].size = 0x400000; in rbtx4939_mtd_init() [all …]
|
/linux-4.4.14/drivers/net/ethernet/sfc/ |
D | mtd.c | 66 int efx_mtd_add(struct efx_nic *efx, struct efx_mtd_partition *parts, in efx_mtd_add() argument 73 part = (struct efx_mtd_partition *)((char *)parts + in efx_mtd_add() 99 part = (struct efx_mtd_partition *)((char *)parts + in efx_mtd_add() 109 struct efx_mtd_partition *parts, *part, *next; in efx_mtd_remove() local 116 parts = list_first_entry(&efx->mtd_list, struct efx_mtd_partition, in efx_mtd_remove() 122 kfree(parts); in efx_mtd_remove()
|
D | siena.c | 848 struct efx_mcdi_mtd_partition *parts, in siena_mtd_get_fw_subtypes() argument 861 parts[i].fw_subtype = fw_subtype_list[parts[i].nvram_type]; in siena_mtd_get_fw_subtypes() 868 struct efx_mcdi_mtd_partition *parts; in siena_mtd_probe() local 880 parts = kcalloc(hweight32(nvram_types), sizeof(*parts), GFP_KERNEL); in siena_mtd_probe() 881 if (!parts) in siena_mtd_probe() 889 rc = siena_mtd_probe_partition(efx, &parts[n_parts], in siena_mtd_probe() 900 rc = siena_mtd_get_fw_subtypes(efx, parts, n_parts); in siena_mtd_probe() 904 rc = efx_mtd_add(efx, &parts[0].common, n_parts, sizeof(*parts)); in siena_mtd_probe() 907 kfree(parts); in siena_mtd_probe()
|
D | falcon.c | 922 struct falcon_mtd_partition *parts; in falcon_mtd_probe() local 930 parts = kcalloc(2, sizeof(*parts), GFP_KERNEL); in falcon_mtd_probe() 931 if (!parts) in falcon_mtd_probe() 937 parts[n_parts].spi = spi; in falcon_mtd_probe() 938 parts[n_parts].offset = FALCON_FLASH_BOOTCODE_START; in falcon_mtd_probe() 939 parts[n_parts].common.dev_type_name = "flash"; in falcon_mtd_probe() 940 parts[n_parts].common.type_name = "sfc_flash_bootrom"; in falcon_mtd_probe() 941 parts[n_parts].common.mtd.type = MTD_NORFLASH; in falcon_mtd_probe() 942 parts[n_parts].common.mtd.flags = MTD_CAP_NORFLASH; in falcon_mtd_probe() 943 parts[n_parts].common.mtd.size = spi->size - FALCON_FLASH_BOOTCODE_START; in falcon_mtd_probe() [all …]
|
/linux-4.4.14/arch/arm/mach-omap2/ |
D | board-flash.c | 61 board_nor_data.parts = nor_parts; in board_nor_init() 95 board_onenand_data.parts = onenand_parts; in board_onenand_init() 140 board_nand_data.parts = nand_parts; in board_nand_init() 229 board_nor_init(partition_info[0].parts, in board_flash_init() 235 board_onenand_init(partition_info[1].parts, in board_flash_init() 241 board_nand_init(partition_info[2].parts, in board_flash_init()
|
D | board-flash.h | 22 struct mtd_partition *parts; member
|
/linux-4.4.14/drivers/mtd/nand/ |
D | diskonchip.c | 1051 static inline int __init nftl_partscan(struct mtd_info *mtd, struct mtd_partition *parts) in nftl_partscan() argument 1126 parts[0].name = " DiskOnChip Firmware / Media Header partition"; in nftl_partscan() 1127 parts[0].offset = 0; in nftl_partscan() 1128 parts[0].size = offs; in nftl_partscan() 1132 parts[numparts].name = " DiskOnChip BDTL partition"; in nftl_partscan() 1133 parts[numparts].offset = offs; in nftl_partscan() 1134 parts[numparts].size = (mh->NumEraseUnits - numheaders) << this->bbt_erase_shift; in nftl_partscan() 1136 offs += parts[numparts].size; in nftl_partscan() 1140 parts[numparts].name = " DiskOnChip Remainder partition"; in nftl_partscan() 1141 parts[numparts].offset = offs; in nftl_partscan() [all …]
|
D | orion_nand.c | 166 board->parts, board->nr_parts); in orion_nand_probe()
|
/linux-4.4.14/drivers/mtd/maps/ |
D | vmu-flash.c | 49 struct vmupart *parts; member 71 if (src_ofs >= card->parts[partition].numblocks * card->blocklen) in ofs_to_block() 75 if (num > card->parts[partition].numblocks) in ofs_to_block() 126 pcache = card->parts[partition].pcache; in maple_vmu_read_block() 368 numblocks = card->parts[partition].numblocks; in vmu_flash_read() 374 pcache = card->parts[partition].pcache; in vmu_flash_read() 434 numblocks = card->parts[partition].numblocks; in vmu_flash_write() 471 pcache = card->parts[partition].pcache; in vmu_flash_write() 523 part_cur = &card->parts[card->partition]; in vmu_queryblocks() 582 kfree(((card->parts)[error]).pcache); in vmu_queryblocks() [all …]
|
D | rbtx4939-flash.c | 100 err = mtd_device_parse_register(info->mtd, NULL, NULL, pdata->parts, in rbtx4939_flash_probe()
|
D | pxa2xx-flash.c | 98 mtd_device_parse_register(info->mtd, probes, NULL, flash->parts, in pxa2xx_flash_probe()
|
D | ixp4xx.c | 235 plat->parts, plat->nr_parts); in ixp4xx_flash_probe()
|
D | bfin-async-flash.c | 168 pdata->parts, pdata->nr_parts); in bfin_flash_probe()
|
/linux-4.4.14/arch/arm/mach-gemini/ |
D | devices.c | 65 int platform_register_pflash(unsigned int size, struct mtd_partition *parts, in platform_register_pflash() argument 88 pflash_platform_data.parts = parts; in platform_register_pflash()
|
D | common.h | 28 struct mtd_partition *parts,
|
/linux-4.4.14/arch/mips/txx9/generic/ |
D | setup.c | 627 static struct mtd_partition parts[2]; in txx9_physmap_flash_init() local 631 if (pdata->nr_parts == 0 && !pdata->parts && in txx9_physmap_flash_init() 633 !parts[0].name) { in txx9_physmap_flash_init() 634 parts[0].name = "boot"; in txx9_physmap_flash_init() 635 parts[0].offset = 0x1fc00000 - addr; in txx9_physmap_flash_init() 636 parts[0].size = addr + size - 0x1fc00000; in txx9_physmap_flash_init() 637 parts[1].name = "user"; in txx9_physmap_flash_init() 638 parts[1].offset = 0; in txx9_physmap_flash_init() 639 parts[1].size = 0x1fc00000 - addr; in txx9_physmap_flash_init() 641 pdata_part.nr_parts = ARRAY_SIZE(parts); in txx9_physmap_flash_init() [all …]
|
/linux-4.4.14/arch/arm/mach-sti/ |
D | Kconfig | 33 Electronics family StiH415 parts, primarily targeted at set-top-box 43 Electronics family StiH416 parts, primarily targeted at set-top-box 53 Electronics family StiH407 parts, targetted at set-top-box
|
/linux-4.4.14/arch/frv/mb93090-mb00/ |
D | flash.c | 40 .parts = mb93090_partitions, 63 .parts = mb93090_partitions,
|
/linux-4.4.14/arch/mn10300/unit-asb2303/ |
D | flash.c | 50 .parts = asb2303_partitions, 73 .parts = asb2303_partitions,
|
/linux-4.4.14/arch/avr32/boards/merisc/ |
D | flash.c | 75 .parts = flash_0_parts, 80 .parts = flash_1_parts,
|
/linux-4.4.14/arch/avr32/boards/mimc200/ |
D | flash.c | 70 .parts = flash_parts_system, 102 .parts = flash_parts_data,
|
/linux-4.4.14/arch/arm/mach-clps711x/ |
D | board-autcpu12.c | 114 pdata->parts[0].size = SZ_16M; in autcpu12_adjust_parts() 129 .parts = autcpu12_nand_parts, 179 .parts = autcpu12_flash_partitions,
|
D | board-cdb89712.c | 63 .parts = cdb89712_flash_partitions, 92 .parts = cdb89712_bootrom_partitions,
|
D | board-edb7211.c | 76 .parts = edb7211_flash_partitions,
|
/linux-4.4.14/arch/arm/mach-pxa/ |
D | h5000.c | 74 .parts = h5000_flash0_partitions, 80 .parts = h5000_flash1_partitions,
|
D | cm-x255.c | 149 .parts = cmx255_nor_partitions, 206 .parts = cmx255_nand_parts,
|
D | colibri-pxa3xx.c | 144 .parts[0] = colibri_nand_partitions,
|
D | xcep.c | 77 .parts = xcep_partitions,
|
D | lpd270.c | 245 .parts = lpd270_flash0_partitions, 250 .parts = NULL,
|
D | gumstix.c | 71 .parts = gumstix_partitions,
|
D | lubbock.c | 282 .parts = lubbock_partitions, 286 .parts = NULL,
|
D | vpac270.c | 165 .parts = vpac270_nor_partitions, 206 .parts = vpac270_onenand_partitions,
|
D | mxm8x10.c | 395 .parts[0] = mxm_8x10_nand_partitions,
|
D | colibri-pxa270.c | 177 .parts = colibri_partitions,
|
D | csb726.c | 158 .parts = csb726_flash_partitions,
|
D | mainstone.c | 221 .parts = mainstoneflash0_partitions, 225 .parts = NULL,
|
D | palmld.c | 143 .parts = palmld_partitions,
|
D | palmtx.c | 146 .parts = palmtx_partitions,
|
D | viper.c | 673 .parts = NULL, 678 .parts = &viper_boot_flash_partition,
|
/linux-4.4.14/fs/f2fs/ |
D | extent_cache.c | 438 int parts = 0; /* # of parts current extent split into */ in f2fs_update_extent_tree_range() local 449 parts = 1; in f2fs_update_extent_tree_range() 453 if (parts) { in f2fs_update_extent_tree_range() 466 parts++; in f2fs_update_extent_tree_range() 477 if (parts) in f2fs_update_extent_tree_range() 487 if (parts != 1) { in f2fs_update_extent_tree_range() 494 if (!parts && !list_empty(&en->list)) in f2fs_update_extent_tree_range() 501 if (!parts) in f2fs_update_extent_tree_range()
|
/linux-4.4.14/arch/mips/include/asm/mach-au1x00/ |
D | au1550nd.h | 11 struct mtd_partition *parts; member
|
/linux-4.4.14/include/linux/spi/ |
D | flash.h | 23 struct mtd_partition *parts; member
|
/linux-4.4.14/include/linux/platform_data/ |
D | mtd-mxc_nand.h | 29 struct mtd_partition *parts; /* partition table */ member
|
D | mtd-orion_nand.h | 14 struct mtd_partition *parts; member
|
D | mtd-nand-pxa3xx.h | 40 const struct mtd_partition *parts[NUM_CHIP_SELECT]; member
|
D | mtd-onenand-omap2.h | 23 struct mtd_partition *parts; member
|
D | mtd-davinci.h | 63 struct mtd_partition *parts; member
|
D | atmel.h | 37 struct mtd_partition *parts; member
|
D | mtd-nand-omap2.h | 71 struct mtd_partition *parts; member
|
/linux-4.4.14/Documentation/power/powercap/ |
D | powercap.txt | 17 Power zones represent different parts of the system, which can be controlled and 20 well as controls represented in the form of power constraints. If the parts of 22 bigger part consists of multiple smaller parts that each have their own power 151 "core" and the "uncore" parts of the given CPU package, respectively. All of 155 CPU packages and the subzone constraints only apply to the respective parts of
|
/linux-4.4.14/include/linux/mtd/ |
D | nand-gpio.h | 13 struct mtd_partition *parts; member
|
D | physmap.h | 32 struct mtd_partition *parts; member
|
D | latch-addr-flash.h | 26 struct mtd_partition *parts; member
|
D | sh_flctl.h | 176 struct mtd_partition *parts; member
|
D | mtd.h | 377 #define mtd_device_register(master, parts, nr_parts) \ argument 378 mtd_device_parse_register(master, NULL, NULL, parts, nr_parts)
|
D | onenand.h | 238 struct mtd_partition *parts; member
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/ltc/ |
D | gm107.c | 106 const u32 parts = nvkm_rd32(device, 0x022438); in gm107_ltc_oneinit() local 111 for (i = 0; i < parts; i++) { in gm107_ltc_oneinit()
|
D | gf100.c | 212 const u32 parts = nvkm_rd32(device, 0x022438); in gf100_ltc_oneinit() local 217 for (i = 0; i < parts; i++) { in gf100_ltc_oneinit()
|
/linux-4.4.14/arch/arm/include/asm/mach/ |
D | flash.h | 35 struct mtd_partition *parts; member
|
/linux-4.4.14/arch/mips/cobalt/ |
D | mtd.c | 36 .parts = cobalt_mtd_partitions,
|
/linux-4.4.14/arch/arm/mach-ixp4xx/ |
D | omixp-setup.c | 77 .parts = omixp_partitions, 81 .parts = NULL,
|
/linux-4.4.14/Documentation/mmc/ |
D | 00-INDEX | 5 mmc-dev-parts.txt
|
/linux-4.4.14/arch/blackfin/mach-bf533/boards/ |
D | ezkit.c | 90 .parts = ezkit_partitions_a, 120 .parts = ezkit_partitions_b, 205 .parts = bfin_spi_flash_partitions,
|
D | cm_bf533.c | 54 .parts = bfin_spi_flash_partitions, 444 .parts = para_partitions,
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/fb/ |
D | ramnv49.c | 47 (*pram)->parts = (nvkm_rd32(device, 0x100200) & 0x00000003) + 1; in nv49_ram_new()
|
D | ramnv20.c | 47 (*pram)->parts = (nvkm_rd32(device, 0x100200) & 0x00000003) + 1; in nv20_ram_new()
|
D | ramnv41.c | 47 (*pram)->parts = (nvkm_rd32(device, 0x100200) & 0x00000003) + 1; in nv41_ram_new()
|
D | nv25.c | 34 u32 tags = round_up(tiles / fb->ram->parts, 0x40); in nv25_fb_tile_comp()
|
D | nv35.c | 34 u32 tags = round_up(tiles / fb->ram->parts, 0x40); in nv35_fb_tile_comp()
|
D | nv36.c | 34 u32 tags = round_up(tiles / fb->ram->parts, 0x40); in nv36_fb_tile_comp()
|
D | nv40.c | 34 u32 tags = round_up(tiles / fb->ram->parts, 0x100); in nv40_fb_tile_comp()
|
D | ramgf100.c | 567 u32 parts = nvkm_rd32(device, 0x022438); in gf100_ram_ctor() local 576 nvkm_debug(subdev, "parts %08x mask %08x\n", parts, pmask); in gf100_ram_ctor() 579 for (i = 0; i < parts; i++) { in gf100_ram_ctor() 610 ((bsize * parts) - rsvd_head) >> in gf100_ram_ctor() 618 (size - (bsize * parts) - rsvd_tail) >> in gf100_ram_ctor()
|
D | nv20.c | 47 u32 tags = round_up(tiles / fb->ram->parts, 0x40); in nv20_fb_tile_comp()
|
D | nv30.c | 53 u32 tags = round_up(tiles / fb->ram->parts, 0x40); in nv30_fb_tile_comp()
|
D | ramnv40.c | 228 (*pram)->parts = (nvkm_rd32(device, 0x100200) & 0x00000003) + 1; in nv40_ram_new()
|
/linux-4.4.14/arch/m68k/coldfire/ |
D | firebee.c | 57 .parts = firebee_flash_parts,
|
/linux-4.4.14/arch/sh/boards/mach-rsk/ |
D | setup.c | 48 .parts = rsk_partitions,
|
/linux-4.4.14/drivers/gpu/drm/amd/amdgpu/ |
D | Kconfig | 2 bool "Enable amdgpu support for CIK parts"
|
/linux-4.4.14/arch/blackfin/mach-bf537/boards/ |
D | dnp5370.c | 104 .parts = asmb_flash_partitions, 157 .parts = bfin_spi_dataflash_partitions,
|
D | tcm_bf537.c | 59 .parts = bfin_spi_flash_partitions, 272 .parts = cm_partitions,
|
D | cm_bf537u.c | 59 .parts = bfin_spi_flash_partitions, 272 .parts = cm_partitions,
|
/linux-4.4.14/Documentation/hwmon/ |
D | ad7314 | 18 Driver supports the above parts. The ad7314 has a 10 bit
|
/linux-4.4.14/arch/avr32/boards/atstk1000/ |
D | flash.c | 63 .parts = flash_parts,
|
D | atstk1002.c | 99 .parts = nand_partitions,
|
/linux-4.4.14/arch/avr32/boards/atngw100/ |
D | flash.c | 63 .parts = flash_parts,
|
D | setup.c | 101 .parts = nand_partitions,
|
/linux-4.4.14/arch/avr32/boards/favr-32/ |
D | flash.c | 63 .parts = flash_parts,
|
/linux-4.4.14/Documentation/devicetree/bindings/timer/ |
D | nxp,lpc3220-timer.txt | 4 includes LPC32xx, LPC178x, LPC18xx and LPC43xx parts.
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-class-rtc-rtc0-device-rtc_calibration | 10 30.5 micro-seconds (half-parts-per-million of the 32KHz clock)
|
/linux-4.4.14/Documentation/devicetree/bindings/clock/ |
D | fixed-clock.txt | 13 - clock-accuracy : accuracy of clock in ppb (parts per billion).
|
/linux-4.4.14/arch/sh/boards/ |
D | board-espt.c | 41 .parts = espt_nor_flash_partitions,
|
D | board-edosk7760.c | 68 .parts = edosk7760_nor_flash_partitions,
|
D | board-urquell.c | 124 .parts = nor_flash_partitions,
|
D | board-apsh4a3a.c | 50 .parts = nor_flash_partitions,
|
D | board-magicpanelr2.c | 325 .parts = mpr2_partitions,
|
/linux-4.4.14/drivers/staging/slicoss/ |
D | slic.h | 105 } parts; member 125 #define handle_index handle.parts.index 126 #define handle_bottom handle.parts.bottombits
|
/linux-4.4.14/arch/arm/mach-sa1100/ |
D | shannon.c | 48 .parts = shannon_partitions,
|
D | nanoengine.c | 57 .parts = nanoengine_partitions,
|
D | pleb.c | 96 .parts = pleb_partitions,
|
D | cerf.c | 124 .parts = cerf_partitions,
|
D | hackkit.c | 183 .parts = hackkit_partitions,
|
D | jornada720.c | 331 .parts = jornada720_partitions,
|
D | h3xxx.c | 78 .parts = h3xxx_partitions,
|
D | badge4.c | 157 .parts = badge4_partitions,
|
/linux-4.4.14/arch/arm/mach-orion5x/ |
D | rd88f6183ap-ge-setup.c | 67 .parts = rd88f6183ap_ge_partitions,
|
D | wnr854t-setup.c | 74 .parts = wnr854t_nor_flash_partitions,
|
D | mv2120-setup.c | 58 .parts = mv2120_partitions,
|
D | wrt350n-v2-setup.c | 159 .parts = wrt350n_v2_nor_flash_partitions,
|
D | ts409-setup.c | 101 .parts = qnap_ts409_partitions,
|
D | ts209-setup.c | 81 .parts = qnap_ts209_partitions,
|
D | db88f5281-setup.c | 150 .parts = db88f5281_nand_parts,
|
D | net2big-setup.c | 62 .parts = net2big_partitions,
|
/linux-4.4.14/Documentation/devicetree/bindings/mips/cavium/ |
D | ciu2.txt | 20 /* Interrupts are specified by two parts:
|
D | ciu.txt | 20 /* Interrupts are specified by two parts:
|
D | cib.txt | 35 /* Interrupts are specified by two parts:
|
/linux-4.4.14/arch/mips/bcm63xx/ |
D | dev-flash.c | 37 .parts = mtd_partitions,
|
/linux-4.4.14/arch/arm/mach-ks8695/ |
D | board-sg.c | 56 .parts = sg_mtd_partitions,
|
D | board-acs5k.c | 136 .parts = acs5k_nor_partitions,
|
/linux-4.4.14/arch/mips/mti-malta/ |
D | malta-platform.c | 111 .parts = malta_mtd_partitions
|
/linux-4.4.14/arch/arm/mach-s3c24xx/ |
D | mach-tct_hammer.c | 78 .parts = tct_hammer_mtd_partitions,
|
D | mach-amlm5900.c | 101 .parts = amlm5900_mtd_partitions,
|
/linux-4.4.14/arch/arm/mach-davinci/ |
D | board-sffsdr.c | 69 .parts = davinci_sffsdr_nandflash_partition,
|
D | board-mityomapl138.c | 354 .parts = spi_flash_partitions, 397 .parts = mityomapl138_nandflash_partition,
|
D | board-neuros-osd2.c | 89 .parts = davinci_ntosd2_nandflash_partition,
|
D | board-da830-evm.c | 364 .parts = da830_evm_nand_partitions, 563 .parts = da830evm_spiflash_part,
|
D | board-dm355-leopard.c | 76 .parts = davinci_nand_partitions,
|
D | board-dm644x-evm.c | 82 .parts = davinci_evm_norflash_partitions, 153 .parts = davinci_evm_nandflash_partition,
|
/linux-4.4.14/arch/arm64/ |
D | Kconfig | 221 erratum 826319 on Cortex-A53 parts up to r0p2 with an AMBA 4 ACE or 242 erratum 827319 on Cortex-A53 parts up to r0p2 with an AMBA 5 CHI 263 erratum 824069 on Cortex-A53 parts up to r0p2 when it is connected 285 erratum 819472 on Cortex-A53 parts up to r0p1 with an L2 cache 306 erratum 832075 on Cortex-A57 parts up to r1p2. 308 Affected Cortex-A57 parts might deadlock when exclusive load/store 325 erratum 834220 on Cortex-A57 parts up to r1p2. 327 Affected Cortex-A57 parts might report a Stage 2 translation 346 erratum 845719 on Cortex-A53 parts up to r0p4. 369 parts up to r0p4.
|
/linux-4.4.14/drivers/net/ethernet/cadence/ |
D | Kconfig | 27 AT91 parts. This driver also supports the Cadence GEM (Gigabit
|
/linux-4.4.14/net/wimax/ |
D | Kconfig | 34 be selectively enabled for different parts of the code using
|
/linux-4.4.14/drivers/net/wimax/i2400m/ |
D | Kconfig | 31 selectively enabled at runtime for different parts of the
|
/linux-4.4.14/drivers/scsi/qla2xxx/ |
D | Kconfig | 10 By default, firmware for the ISP parts will be loaded
|
/linux-4.4.14/drivers/sh/intc/ |
D | Kconfig | 28 SMP parts. All of the balancing and CPU wakeup decisions are
|
/linux-4.4.14/drivers/powercap/ |
D | Kconfig | 11 power zones representing parts of the system that can be subject to power
|
/linux-4.4.14/drivers/mtd/onenand/ |
D | generic.c | 72 pdata ? pdata->parts : NULL, in generic_onenand_probe()
|
/linux-4.4.14/Documentation/ |
D | bad_memory.txt | 13 if you have spare-parts
|
D | unshare.txt | 83 disassociate parts of the context during the servicing of the 119 unshare - disassociate parts of the process execution context 127 unshare allows a process to disassociate parts of its execution 130 when a new process is created using fork(2), while other parts, 165 ENOMEM Cannot allocate sufficient memory to copy parts of caller's
|
/linux-4.4.14/arch/arm/mach-w90x900/ |
D | dev.c | 73 .parts = nuc900_flash_partitions, 253 .parts = nuc900_spi_flash_partitions,
|
/linux-4.4.14/arch/blackfin/mach-bf561/boards/ |
D | cm_bf561.c | 56 .parts = bfin_spi_flash_partitions, 407 .parts = para_partitions,
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | kirkwood-sheevaplug-common.dtsi | 2 * kirkwood-sheevaplug-common.dtsi - Common parts for Sheevaplugs
|
/linux-4.4.14/arch/sh/boards/mach-se/7343/ |
D | setup.c | 48 .parts = nor_flash_partitions,
|
/linux-4.4.14/Documentation/devicetree/bindings/gpio/ |
D | cavium-octeon-gpio.txt | 35 /* Interrupts are specified by two parts:
|
/linux-4.4.14/drivers/staging/media/bcm2048/ |
D | TODO | 20 Finally this driver should probably be split up into two parts: one
|
/linux-4.4.14/drivers/net/wireless/realtek/rtl8xxxu/ |
D | Kconfig | 9 parts written to utilize the Linux mac80211 stack.
|
/linux-4.4.14/arch/mips/netlogic/xlr/ |
D | platform-flash.c | 62 .parts = xlr_nor_parts,
|
/linux-4.4.14/Documentation/networking/ |
D | proc_net_tcp.txt | 10 up into 3 parts because of the length of the line):
|
D | gianfar.txt | 9 The eTSEC controller (first included in parts from late 2005 like
|
/linux-4.4.14/arch/mips/emma/markeins/ |
D | platform.c | 180 .parts = markeins_parts
|
/linux-4.4.14/arch/c6x/lib/ |
D | mpyll.S | 23 ;; First compute partial results using 32-bit parts of x and y:
|
/linux-4.4.14/drivers/mtd/devices/ |
D | spear_smi.c | 201 struct mtd_partition *parts; member 817 struct mtd_partition *parts = NULL; in spear_smi_setup_banks() local 880 parts = flash_info->partitions; in spear_smi_setup_banks() 886 ret = mtd_device_parse_register(&flash->mtd, NULL, &ppdata, parts, in spear_smi_setup_banks()
|
/linux-4.4.14/arch/arm/mach-omap1/ |
D | board-palmte.c | 131 .parts = palmte_rom_partitions,
|
D | board-palmtt.c | 111 .parts = palmtt_partitions,
|
D | board-palmz71.c | 129 .parts = palmz71_rom_partitions,
|
D | board-perseus2.c | 125 .parts = nor_partitions,
|
/linux-4.4.14/arch/arm/mach-cns3xxx/ |
D | cns3420vb.c | 69 .parts = cns3420_nor_partitions,
|
/linux-4.4.14/arch/mips/alchemy/ |
D | board-gpr.c | 171 .parts = gpr_mtd_partitions,
|
D | board-mtx1.c | 198 .parts = mtx1_mtd_partitions,
|
/linux-4.4.14/arch/sh/boards/mach-sh7763rdp/ |
D | setup.c | 45 .parts = sh7763rdp_nor_flash_partitions,
|
/linux-4.4.14/arch/alpha/lib/ |
D | ev6-memset.S | 86 mskql $4,$16,$4 # U : clear relevant parts of the quad 263 mskql $4,$16,$4 # U : clear relevant parts of the quad 450 mskql $4,$16,$4 # U : clear relevant parts of the quad
|
/linux-4.4.14/drivers/net/ethernet/via/ |
D | Kconfig | 39 processing time in parts of the driver.
|
/linux-4.4.14/drivers/gpu/drm/nouveau/include/nvkm/subdev/ |
D | fb.h | 126 int parts; member
|
/linux-4.4.14/arch/mips/mti-sead3/ |
D | sead3-platform.c | 87 .parts = sead3_mtd_partitions
|
/linux-4.4.14/Documentation/RCU/ |
D | rcu.txt | 5 operations into two parts, one that prevents anyone from seeing the data 7 A "grace period" must elapse between the two parts, and this grace period
|
/linux-4.4.14/arch/blackfin/mach-bf518/boards/ |
D | tcm-bf518.c | 55 .parts = tcm_partitions, 132 .parts = bfin_spi_flash_partitions,
|
D | ezbrd.c | 58 .parts = ezbrd_partitions, 184 .parts = bfin_spi_flash_partitions,
|
/linux-4.4.14/Documentation/mn10300/ |
D | compartmentalisation.txt | 5 The sources for various parts are compartmentalised at two different levels:
|
/linux-4.4.14/Documentation/parisc/ |
D | debugging | 1 okay, here are some hints for debugging the lower-level parts of
|
/linux-4.4.14/arch/sh/boards/mach-r2d/ |
D | setup.c | 212 .parts = r2d_partitions,
|
/linux-4.4.14/Documentation/sound/oss/ |
D | PSS | 32 synthesizer parts are not configured.
|
/linux-4.4.14/drivers/acpi/apei/ |
D | Kconfig | 54 mainly used for debugging and testing the other parts of
|
/linux-4.4.14/Documentation/devicetree/bindings/memory-controllers/ti/ |
D | emif.txt | 6 of the EMIF IP and memory parts attached to it.
|
/linux-4.4.14/arch/mips/include/asm/txx9/ |
D | rbtx4939.h | 138 struct mtd_partition *parts; member
|
/linux-4.4.14/arch/arm/mach-mmp/ |
D | aspenite.c | 177 .parts[0] = aspenite_nand_partitions,
|
D | ttc_dkb.c | 113 .parts = ttc_dkb_onenand_partitions,
|
/linux-4.4.14/drivers/lguest/ |
D | README | 15 Our Quest is in seven parts: (best read with C highlighting turned on)
|
/linux-4.4.14/arch/sh/boards/mach-ap325rxa/ |
D | setup.c | 108 .parts = ap325rxa_nor_flash_partitions, 147 .parts = nand_partition_info,
|
/linux-4.4.14/drivers/isdn/gigaset/ |
D | Kconfig | 12 one of the connection specific parts that follow.
|
/linux-4.4.14/arch/avr32/boards/hammerhead/ |
D | flash.c | 81 .parts = flash_parts,
|