Lines Matching full:otp
191 * struct spi_nor_otp_organization - Structure to describe the SPI NOR OTP regions
192 * @len: size of one OTP region in bytes.
193 * @base: start address of the OTP area.
194 * @offset: offset between consecutive OTP regions if there are more
196 * @n_regions: number of individual OTP regions.
206 * struct spi_nor_otp_ops - SPI NOR OTP methods
207 * @read: read from the SPI NOR OTP area.
208 * @write: write to the SPI NOR OTP area.
209 * @lock: lock an OTP region.
210 * @erase: erase an OTP region.
211 * @is_locked: check if an OTP region of the SPI NOR is locked.
223 * struct spi_nor_otp - SPI NOR OTP grouping structure
224 * @org: OTP region organization
225 * @ops: OTP access ops
253 * @otp_info: describes the OTP regions.
265 * @otp: SPI NOR OTP methods.
279 struct spi_nor_otp otp; member