~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/linux/mtd/jedec.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /include/linux/mtd/jedec.h (Version linux-6.11.5) and /include/linux/mtd/jedec.h (Version linux-6.5.13)


  1 /* SPDX-License-Identifier: GPL-2.0 */              1 /* SPDX-License-Identifier: GPL-2.0 */
  2 /*                                                  2 /*
  3  * Copyright © 2000-2010 David Woodhouse <dwm      3  * Copyright © 2000-2010 David Woodhouse <dwmw2@infradead.org>
  4  *                       Steven J. Hill <sjhil      4  *                       Steven J. Hill <sjhill@realitydiluted.com>
  5  *                       Thomas Gleixner <tglx      5  *                       Thomas Gleixner <tglx@linutronix.de>
  6  *                                                  6  *
  7  * Contains all JEDEC related definitions           7  * Contains all JEDEC related definitions
  8  */                                                 8  */
  9                                                     9 
 10 #ifndef __LINUX_MTD_JEDEC_H                        10 #ifndef __LINUX_MTD_JEDEC_H
 11 #define __LINUX_MTD_JEDEC_H                        11 #define __LINUX_MTD_JEDEC_H
 12                                                    12 
 13 struct jedec_ecc_info {                            13 struct jedec_ecc_info {
 14         u8 ecc_bits;                               14         u8 ecc_bits;
 15         u8 codeword_size;                          15         u8 codeword_size;
 16         __le16 bb_per_lun;                         16         __le16 bb_per_lun;
 17         __le16 block_endurance;                    17         __le16 block_endurance;
 18         u8 reserved[2];                            18         u8 reserved[2];
 19 } __packed;                                        19 } __packed;
 20                                                    20 
 21 /* JEDEC features */                               21 /* JEDEC features */
 22 #define JEDEC_FEATURE_16_BIT_BUS        (1 <<      22 #define JEDEC_FEATURE_16_BIT_BUS        (1 << 0)
 23                                                    23 
 24 /* JEDEC Optional Commands */                      24 /* JEDEC Optional Commands */
 25 #define JEDEC_OPT_CMD_READ_CACHE        BIT(1)     25 #define JEDEC_OPT_CMD_READ_CACHE        BIT(1)
 26                                                    26 
 27 struct nand_jedec_params {                         27 struct nand_jedec_params {
 28         /* rev info and features block */          28         /* rev info and features block */
 29         /* 'J' 'E' 'S' 'D'  */                     29         /* 'J' 'E' 'S' 'D'  */
 30         u8 sig[4];                                 30         u8 sig[4];
 31         __le16 revision;                           31         __le16 revision;
 32         __le16 features;                           32         __le16 features;
 33         u8 opt_cmd[3];                             33         u8 opt_cmd[3];
 34         __le16 sec_cmd;                            34         __le16 sec_cmd;
 35         u8 num_of_param_pages;                     35         u8 num_of_param_pages;
 36         u8 reserved0[18];                          36         u8 reserved0[18];
 37                                                    37 
 38         /* manufacturer information block */       38         /* manufacturer information block */
 39         char manufacturer[12];                     39         char manufacturer[12];
 40         char model[20];                            40         char model[20];
 41         u8 jedec_id[6];                            41         u8 jedec_id[6];
 42         u8 reserved1[10];                          42         u8 reserved1[10];
 43                                                    43 
 44         /* memory organization block */            44         /* memory organization block */
 45         __le32 byte_per_page;                      45         __le32 byte_per_page;
 46         __le16 spare_bytes_per_page;               46         __le16 spare_bytes_per_page;
 47         u8 reserved2[6];                           47         u8 reserved2[6];
 48         __le32 pages_per_block;                    48         __le32 pages_per_block;
 49         __le32 blocks_per_lun;                     49         __le32 blocks_per_lun;
 50         u8 lun_count;                              50         u8 lun_count;
 51         u8 addr_cycles;                            51         u8 addr_cycles;
 52         u8 bits_per_cell;                          52         u8 bits_per_cell;
 53         u8 programs_per_page;                      53         u8 programs_per_page;
 54         u8 multi_plane_addr;                       54         u8 multi_plane_addr;
 55         u8 multi_plane_op_attr;                    55         u8 multi_plane_op_attr;
 56         u8 reserved3[38];                          56         u8 reserved3[38];
 57                                                    57 
 58         /* electrical parameter block */           58         /* electrical parameter block */
 59         __le16 async_sdr_speed_grade;              59         __le16 async_sdr_speed_grade;
 60         __le16 toggle_ddr_speed_grade;             60         __le16 toggle_ddr_speed_grade;
 61         __le16 sync_ddr_speed_grade;               61         __le16 sync_ddr_speed_grade;
 62         u8 async_sdr_features;                     62         u8 async_sdr_features;
 63         u8 toggle_ddr_features;                    63         u8 toggle_ddr_features;
 64         u8 sync_ddr_features;                      64         u8 sync_ddr_features;
 65         __le16 t_prog;                             65         __le16 t_prog;
 66         __le16 t_bers;                             66         __le16 t_bers;
 67         __le16 t_r;                                67         __le16 t_r;
 68         __le16 t_r_multi_plane;                    68         __le16 t_r_multi_plane;
 69         __le16 t_ccs;                              69         __le16 t_ccs;
 70         __le16 io_pin_capacitance_typ;             70         __le16 io_pin_capacitance_typ;
 71         __le16 input_pin_capacitance_typ;          71         __le16 input_pin_capacitance_typ;
 72         __le16 clk_pin_capacitance_typ;            72         __le16 clk_pin_capacitance_typ;
 73         u8 driver_strength_support;                73         u8 driver_strength_support;
 74         __le16 t_adl;                              74         __le16 t_adl;
 75         u8 reserved4[36];                          75         u8 reserved4[36];
 76                                                    76 
 77         /* ECC and endurance block */              77         /* ECC and endurance block */
 78         u8 guaranteed_good_blocks;                 78         u8 guaranteed_good_blocks;
 79         __le16 guaranteed_block_endurance;         79         __le16 guaranteed_block_endurance;
 80         struct jedec_ecc_info ecc_info[4];         80         struct jedec_ecc_info ecc_info[4];
 81         u8 reserved5[29];                          81         u8 reserved5[29];
 82                                                    82 
 83         /* reserved */                             83         /* reserved */
 84         u8 reserved6[148];                         84         u8 reserved6[148];
 85                                                    85 
 86         /* vendor */                               86         /* vendor */
 87         __le16 vendor_rev_num;                     87         __le16 vendor_rev_num;
 88         u8 reserved7[88];                          88         u8 reserved7[88];
 89                                                    89 
 90         /* CRC for Parameter Page */               90         /* CRC for Parameter Page */
 91         __le16 crc;                                91         __le16 crc;
 92 } __packed;                                        92 } __packed;
 93                                                    93 
 94 #endif /* __LINUX_MTD_JEDEC_H */                   94 #endif /* __LINUX_MTD_JEDEC_H */
 95                                                    95 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php