Home
last modified time | relevance | path

Searched refs:databuf (Results 1 – 16 of 16) sorted by relevance

/u-boot/drivers/usb/host/
A Dohci-hcd.c1375 databuf[1] = 0x29; in ohci_submit_rh_msg()
1378 databuf[2] = (databuf[2] == 2) ? 1 : 0; in ohci_submit_rh_msg()
1380 databuf[3] = 0; in ohci_submit_rh_msg()
1382 databuf[3] |= 0x1; in ohci_submit_rh_msg()
1386 databuf[3] |= 0x8; in ohci_submit_rh_msg()
1388 databuf[4] = 0; in ohci_submit_rh_msg()
1390 databuf[6] = 0; in ohci_submit_rh_msg()
1394 databuf[8] = 0xff; in ohci_submit_rh_msg()
1396 databuf[0] += 2; in ohci_submit_rh_msg()
1398 databuf[10] = databuf[9] = 0xff; in ohci_submit_rh_msg()
[all …]
/u-boot/drivers/mtd/nand/spi/
A Dcore.c258 adjreq.databuf.in = spinand->databuf; in spinand_read_from_cache_op()
259 buf = spinand->databuf; in spinand_read_from_cache_op()
299 memcpy(req->databuf.in, spinand->databuf + req->dataoffs, in spinand_read_from_cache_op()
328 memset(spinand->databuf, 0xff, in spinand_write_to_cache_op()
333 memcpy(spinand->databuf + req->dataoffs, req->databuf.out, in spinand_write_to_cache_op()
337 adjreq.databuf.out = spinand->databuf; in spinand_write_to_cache_op()
339 buf = spinand->databuf; in spinand_write_to_cache_op()
1051 spinand->databuf = kzalloc(nanddev_page_size(nand) + in spinand_init()
1054 if (!spinand->databuf) { in spinand_init()
1127 kfree(spinand->databuf); in spinand_init()
[all …]
/u-boot/include/linux/mtd/
A Dnand.h103 } databuf; member
624 iter->req.databuf.in = req->datbuf; in nanddev_io_iter_init()
646 iter->req.databuf.in += iter->req.datalen; in nanddev_io_iter_next_page()
A Dmtd.h382 int mtd_ooblayout_get_databytes(struct mtd_info *mtd, u8 *databuf,
384 int mtd_ooblayout_set_databytes(struct mtd_info *mtd, const u8 *databuf,
A Dspinand.h363 u8 *databuf; member
A Drawnand.h648 uint8_t databuf[ALIGN(NAND_MAX_PAGESIZE + NAND_MAX_OOBSIZE, member
/u-boot/drivers/mmc/
A Dfsl_esdhc.c162 uint databuf; in esdhc_pio_read_write() local
183 databuf = in_le32(&regs->datport); in esdhc_pio_read_write()
184 *((uint *)buffer) = databuf; in esdhc_pio_read_write()
205 databuf = *((uint *)buffer); in esdhc_pio_read_write()
209 out_le32(&regs->datport, databuf); in esdhc_pio_read_write()
A Dfsl_esdhc_imx.c224 uint databuf; in esdhc_pio_read_write() local
245 databuf = in_le32(&regs->datport); in esdhc_pio_read_write()
246 *((uint *)buffer) = databuf; in esdhc_pio_read_write()
267 databuf = *((uint *)buffer); in esdhc_pio_read_write()
271 out_le32(&regs->datport, databuf); in esdhc_pio_read_write()
/u-boot/drivers/mtd/nand/raw/
A Dtegra_nand.c393 static int check_ecc_error(struct nand_ctlr *reg, u8 *databuf, in check_ecc_error() argument
407 if ((reg_val & DEC_STATUS_A_ECC_FAIL) && databuf) { in check_ecc_error()
415 !blank_check(databuf, a_len)) in check_ecc_error()
A Dmxs_nand_spl.c226 nand_chip.oob_poi = nand_chip.buffers->databuf + mtd->writesize; in nand_init()
A Dnand_base.c2372 bufpoi = use_bufpoi ? chip->buffers->databuf : buf; in nand_do_read_ops()
2421 memcpy(buf, chip->buffers->databuf + col, bytes); in nand_do_read_ops()
2461 memcpy(buf, chip->buffers->databuf + col, bytes); in nand_do_read_ops()
3287 memset(chip->buffers->databuf, 0xff, mtd->writesize); in nand_do_write_ops()
3288 memcpy(&chip->buffers->databuf[column], buf, bytes); in nand_do_write_ops()
3289 wbuf = chip->buffers->databuf; in nand_do_write_ops()
4968 chip->oob_poi = chip->buffers->databuf + mtd->writesize; in nand_scan_tail()
A Dnand_bbt.c825 return create_bbt(mtd, this->buffers->databuf, bd, -1); in nand_memory_bbt()
A Dpxa3xx_nand.c1324 return chip->ecc.read_page_raw(mtd, chip, chip->buffers->databuf, true, in pxa3xx_nand_read_oob_raw()
/u-boot/drivers/mtd/
A Dmtdcore.c1459 int mtd_ooblayout_get_databytes(struct mtd_info *mtd, u8 *databuf, in mtd_ooblayout_get_databytes() argument
1462 return mtd_ooblayout_get_bytes(mtd, databuf, oobbuf, start, nbytes, in mtd_ooblayout_get_databytes()
1479 int mtd_ooblayout_set_databytes(struct mtd_info *mtd, const u8 *databuf, in mtd_ooblayout_set_databytes() argument
1482 return mtd_ooblayout_set_bytes(mtd, databuf, oobbuf, start, nbytes, in mtd_ooblayout_set_databytes()
/u-boot/drivers/mtd/nand/raw/atmel/
A Dnand-controller.c732 void *databuf, *eccbuf; in atmel_nand_pmecc_correct_data() local
748 databuf = buf; in atmel_nand_pmecc_correct_data()
751 ret = atmel_pmecc_correct_sector(nand->pmecc, i, databuf, in atmel_nand_pmecc_correct_data()
754 ret = nand_check_erased_ecc_chunk(databuf, in atmel_nand_pmecc_correct_data()
766 databuf += chip->ecc.size; in atmel_nand_pmecc_correct_data()
/u-boot/drivers/mtd/nand/raw/brcmnand/
A Dbrcmnand.c1856 buf = chip->buffers->databuf; in brcmstb_nand_verify_erased_page()

Completed in 74 milliseconds