Lines Matching defs:column
438 aprint_normal_dev(self, "column cycles: %" PRIu8 ", row cycles: %"
588 /* the upper 4 bits contain the column address cycles */
611 nand_address_column(device_t self, size_t row, size_t column)
617 DPRINTF(("addressing row: 0x%jx column: %" PRIu32 "\n",
618 (uintmax_t )row, column));
623 /* Write the column (subpage) address */
625 column >>= 1;
626 for (i = 0; i < chip->nc_addr_cycles_column; i++, column >>= 8)
627 nand_address(self, column & 0xff);
671 nand_prepare_read(device_t self, flash_off_t row, flash_off_t column)
674 nand_address_column(self, row, column);