Home
last modified time | relevance | path

Searched refs:partitions (Results 1 – 25 of 34) sorted by relevance

12

/drivers/mtd/parsers/
DKconfig11 This provides partitions parser for devices based on BCM47xx
55 Same flash, but 2 named partitions, the first one being read-only:
75 This provides partitions parser for BCM4908 family devices
76 that can have multiple "firmware" partitions. It takes care of
84 This provides partitions parser for Linksys devices based on Broadcom
86 two "firmware" partitions. Currently used firmware has to be detected
90 tristate "Parser for BCM963XX Image Tag format partitions"
96 and rootfs partitions.
98 header and creates up to two partitions, kernel and rootfs.
109 register MTD 'partitions' corresponding to each image detected,
[all …]
Dcmdlinepart.c67 static struct cmdline_mtd_partition *partitions; variable
304 this_mtd->next = partitions; in mtdpart_setup_real()
305 partitions = this_mtd; in mtdpart_setup_real()
353 for (part = partitions; part; part = part->next) { in parse_cmdline_partitions()
/drivers/mtd/maps/
Dimpa7.c47 static const struct mtd_partition partitions[] = variable
88 mtd_device_register(impa7_mtd[i], partitions, in init_impa7()
89 ARRAY_SIZE(partitions)); in init_impa7()
Dvmu-flash.c39 u32 partitions; member
567 if (++card->partition < card->partitions) { in vmu_queryblocks()
618 card->partitions = (basic_flash_data >> 24 & 0xFF) + 1; in vmu_connect()
630 card->parts = kmalloc_array(card->partitions, sizeof(struct vmupart), in vmu_connect()
637 card->mtd = kmalloc_array(card->partitions, sizeof(struct mtd_info), in vmu_connect()
699 for (x = 0; x < card->partitions; x++) { in vmu_disconnect()
720 for (x = 0; x < card->partitions; x++) { in vmu_can_unload()
Dplat-ram.c177 pdata->partitions, in platram_probe()
/drivers/soc/qcom/
Dsmem.c269 struct smem_partition_header *partitions[SMEM_HOST_COUNT]; member
466 if (host < SMEM_HOST_COUNT && __smem->partitions[host]) { in qcom_smem_alloc()
467 phdr = __smem->partitions[host]; in qcom_smem_alloc()
596 if (host < SMEM_HOST_COUNT && __smem->partitions[host]) { in qcom_smem_get()
597 phdr = __smem->partitions[host]; in qcom_smem_get()
631 if (host < SMEM_HOST_COUNT && __smem->partitions[host]) { in qcom_smem_get_free_space()
632 phdr = __smem->partitions[host]; in qcom_smem_get_free_space()
850 if (smem->partitions[remote_host]) { in qcom_smem_enumerate_partitions()
859 smem->partitions[remote_host] = header; in qcom_smem_enumerate_partitions()
/drivers/misc/
Dsram.c97 struct sram_partition *part = &sram->partition[sram->partitions]; in sram_add_partition()
141 sram->partitions++; in sram_add_partition()
150 if (!sram->partitions) in sram_free_partitions()
153 part = &sram->partition[sram->partitions - 1]; in sram_free_partitions()
154 for (; sram->partitions; sram->partitions--, part--) { in sram_free_partitions()
Dsram.h33 u32 partitions; member
/drivers/spi/
Dspi-butterfly.c146 static struct mtd_partition partitions[] = { { variable
169 .parts = partitions,
170 .nr_parts = ARRAY_SIZE(partitions),
/drivers/mtd/nand/raw/
Dnandsim.c289 struct mtd_partition partitions[CONFIG_NANDSIM_MAX_PARTS]; member
697 if (parts_num > ARRAY_SIZE(ns->partitions)) { in ns_init()
710 ns->partitions[i].name = ns_get_partition_name(i); in ns_init()
711 if (!ns->partitions[i].name) { in ns_init()
715 ns->partitions[i].offset = next_offset; in ns_init()
716 ns->partitions[i].size = part_sz; in ns_init()
717 next_offset += ns->partitions[i].size; in ns_init()
718 remains -= ns->partitions[i].size; in ns_init()
722 if (parts_num + 1 > ARRAY_SIZE(ns->partitions)) { in ns_init()
727 ns->partitions[i].name = ns_get_partition_name(i); in ns_init()
[all …]
Dams-delta.c239 const struct mtd_partition *partitions = NULL; in gpio_nand_probe() local
248 partitions = pdata->parts; in gpio_nand_probe()
385 err = mtd_device_register(mtd, partitions, num_partitions); in gpio_nand_probe()
Dplat_nand.c111 pdata->chip.partitions, in plat_nand_probe()
Dsharpsl.c203 data->partitions, data->nr_partitions); in sharpsl_nand_probe()
/drivers/mtd/
Dmtdpart.c87 INIT_LIST_HEAD(&child->partitions); in allocate_partition()
269 list_add_tail(&child->part.node, &parent->partitions); in mtd_add_partition()
303 list_for_each_entry_safe(child, next, &mtd->partitions, part.node) { in __mtd_del_partition()
331 list_for_each_entry_safe(child, next, &mtd->partitions, part.node) { in __del_mtd_partitions()
371 list_for_each_entry(child, &mtd->partitions, part.node) { in mtd_del_partition()
411 list_add_tail(&child->part.node, &parent->partitions); in add_mtd_partitions()
Dmtdswap.c167 static char partitions[128] = ""; variable
168 module_param_string(partitions, partitions, sizeof(partitions), 0444);
169 MODULE_PARM_DESC(partitions, "MTD partition numbers to use as swap "
1344 parts = &partitions[0]; in mtdswap_add_mtd()
DKconfig202 several partitions are present, but not both. The concern was that
203 data listed in multiple partitions was dangerous; however, SCSI does
/drivers/media/platform/vsp1/
Dvsp1_video.c204 if (pipe->partitions <= 1) { in vsp1_video_calculate_partition()
233 unsigned int partitions = pipe->partitions - 1; in vsp1_video_calculate_partition() local
236 if (index == partitions - 1) { in vsp1_video_calculate_partition()
239 } else if (index == partitions) { in vsp1_video_calculate_partition()
244 } else if (index == partitions) { in vsp1_video_calculate_partition()
286 pipe->partitions = DIV_ROUND_UP(format->width, div_size); in vsp1_video_pipeline_setup_partitions()
287 pipe->part_table = kcalloc(pipe->partitions, sizeof(*pipe->part_table), in vsp1_video_pipeline_setup_partitions()
292 for (i = 0; i < pipe->partitions; ++i) in vsp1_video_pipeline_setup_partitions()
404 for (partition = 1; partition < pipe->partitions; ++partition) { in vsp1_video_pipeline_run()
Dvsp1_pipe.h148 unsigned int partitions; member
/drivers/virt/
DKconfig24 1) An ioctl interface for querying and managing partitions.
/drivers/staging/unisys/Documentation/
Doverview.txt9 partitions. s-Par provides a set of para-virtualized device drivers to
10 allow guest partitions on the same server to share devices that would
40 because this requires no specific support in the guest partitions, it will
163 * Virtual bus numbers uniquely identify s-Par back-end service partitions.
265 partitions is defined by the s-Par configuration and enforced by the
/drivers/ntb/hw/idt/
DKconfig16 First of all partitions must be activated and properly assigned to all
/drivers/input/rmi4/
Drmi_f34v7.c356 for (i = 0; i < f34->v7.partitions; i++) { in rmi_f34v7_parse_partition_table()
539 f34->v7.partitions = 0; in rmi_f34v7_read_queries()
541 f34->v7.partitions += hweight8(query_1_7.partition_support[i]); in rmi_f34v7_read_queries()
548 f34->v7.partition_table_bytes = f34->v7.partitions * 8 + 2; in rmi_f34v7_read_queries()
Drmi_f34.h277 u8 partitions; member
/drivers/md/
DKconfig20 This driver lets you combine several hard disk partitions into one
25 the partitions is done by the kernel. "Hardware RAID" means that the
56 partitions by simply appending one to the other.
69 partitions into one logical device in such a fashion as to fill them
71 the throughput rate if the partitions reside on distinct disks.
/drivers/tty/hvc/
DKconfig107 from Linux partitions to be accessed through TTY device

12