Searched refs:area (Results 1 - 15 of 15) sorted by path

/u-boot/include/linux/mtd/
H A Donenand.h97 int (*read_bufferram) (struct mtd_info *mtd, loff_t addr, int area,
99 int (*write_bufferram) (struct mtd_info *mtd, loff_t addr, int area,
/u-boot/arch/arm/include/asm/arch-tegra/
H A Dbpmp_abi.h384 * values. err is -#BPMP_EINVAL if size is zero or area is NULL or
385 * area is in an illegal range. A positive value for err indicates the
386 * number of bytes written to area.
396 * data from the recipient's local buffer to the output buffer. #area
407 uint32_t area; member in struct:mrq_write_trace_request
/u-boot/arch/arm/mach-uniphier/arm32/
H A Dlowlevel_init.S31 bl setup_init_ram @ RAM area for stack and page table
/u-boot/arch/x86/cpu/intel_common/
H A Dcar2.S254 #error "CQOS CAR may not use whole L2 cache area"
H A Dmrc.c38 /* Find largest area of memory below 4GB */
41 struct memory_area *area = &info->area[i]; local
43 if (area->start >= 1ULL << 32)
45 if (!largest || area->size > largest->size)
46 largest = area;
49 /* If no suitable area was found, return an error. */
66 struct memory_area *area = &info->area[i]; local
68 if (area
[all...]
/u-boot/arch/x86/include/asm/
H A Dglobal_data.h55 struct memory_area area[CONFIG_NR_DRAM_BANKS]; member in struct:memory_info
/u-boot/drivers/mtd/nand/raw/atmel/
H A Dpmecc.c698 const char *area; local
712 area = "data";
715 area = "ECC";
724 "Bit flip in %s area, byte %d: 0x%02x -> 0x%02x\n",
725 area, byte, *ptr, (unsigned int)(*ptr ^ BIT(bit)));
/u-boot/drivers/mtd/onenand/
H A Donenand_base.c514 * @param area BufferRAM area
515 * Return: offset given area
517 * Return BufferRAM offset given area
519 static inline int onenand_bufferram_offset(struct mtd_info *mtd, int area) argument
524 if (area == ONENAND_DATARAM)
526 if (area == ONENAND_SPARERAM)
534 * onenand_read_bufferram - [OneNAND Interface] Read the bufferram area
536 * @param area BufferRAM area
543 onenand_read_bufferram(struct mtd_info *mtd, loff_t addr, int area, unsigned char *buffer, int offset, size_t count) argument
568 onenand_sync_read_bufferram(struct mtd_info *mtd, loff_t addr, int area, unsigned char *buffer, int offset, size_t count) argument
597 onenand_write_bufferram(struct mtd_info *mtd, loff_t addr, int area, const unsigned char *buffer, int offset, size_t count) argument
[all...]
H A Dsamsung.c375 static unsigned char *s3c_get_bufferram(struct mtd_info *mtd, int area) argument
381 if (area == ONENAND_DATARAM) {
394 static int onenand_read_bufferram(struct mtd_info *mtd, loff_t addr, int area, argument
400 p = s3c_get_bufferram(mtd, area);
405 static int onenand_write_bufferram(struct mtd_info *mtd, loff_t addr, int area, argument
411 p = s3c_get_bufferram(mtd, area);
/u-boot/drivers/mtd/ubi/
H A Dbuild.c60 #error Malloc area too small for UBI, increase CONFIG_SYS_MALLOC_LEN to >= 512k
/u-boot/drivers/smem/
H A Dmsm_smem.c56 * while items in the cached region are allocated from the end. The free area
471 struct smem_region *area; local
484 area = &smem->regions[i];
486 if (area->aux_base == aux_base || !aux_base) {
489 return area->virt_base + le32_to_cpu(entry->offset);
/u-boot/drivers/video/
H A Dstb_truetype.h3142 float y_crossing, y_final, step, sign, area; local
3145 // flip scanline vertically; signed area is the same
3181 // goal is to measure the area covered by '.' in each pixel
3190 // area of the rectangle covered from sy0..y_crossing
3191 area = sign * (y_crossing-sy0);
3193 // area of the triangle (x_top,sy0), (x1+1,sy0), (x1+1,y_crossing)
3194 scanline[x1] += stbtt__sized_triangle_area(area, x1+1 - x_top);
3202 // in second pixel, area covered by line segment found in first pixel
3204 // is exactly what the variable 'area' stores. it also gets a contribution
3213 // which multiplied by 1-pixel-width is how much pixel area change
[all...]
/u-boot/include/
H A Dfdtdec.h1223 * @param area Name of node to check (NULL means "/memory")
1231 int fdtdec_decode_ram_size(const void *blob, const char *area, int board_id,
/u-boot/lib/
H A Dfdtdec.c1766 int fdtdec_decode_ram_size(const void *blob, const char *area, int board_id, argument
1779 if (!area)
1780 area = "/memory";
1781 node = fdt_path_offset(blob, area);
1783 debug("No %s node found\n", area);
/u-boot/tools/binman/
H A Dfmap_util.py52 # appears once at the start) and an area (which is repeated until the end of
94 for area in range(header.nareas):
119 for area in areas:
120 blob += _FormatBlob(FMAP_AREA_FORMAT, FMAP_AREA_NAMES, area)

Completed in 172 milliseconds