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

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

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ 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-rc3) and /include/linux/mtd/jedec.h (Version linux-4.14.336)


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