Lines Matching +full:0 +full:xa
20 #define LAN8650_DEVID 0x8650
21 #define LAN8651_DEVID 0x8651
22 #define LAN865X_REV_MASK GENMASK(3, 0)
25 /* Memory Map Sector (MMS) 1 (0x1) */
26 #define LAN865x_MAC_NCR MMS_REG(0x1, 0x000)
29 #define LAN865x_MAC_NCFGR MMS_REG(0x1, 0x001)
32 #define LAN865x_MAC_HRB MMS_REG(0x1, 0x020)
33 #define LAN865x_MAC_HRT MMS_REG(0x1, 0x021)
34 #define LAN865x_MAC_SAB1 MMS_REG(0x1, 0x022)
35 #define LAN865x_MAC_SAB2 MMS_REG(0x1, 0x024)
36 #define LAN865x_MAC_SAT2 MMS_REG(0x1, 0x025)
39 #define LAN865x_MAC_TXRX_OFF 0
41 /* Memory Map Sector (MMS) 10 (0xA) */
42 #define LAN865x_DEVID MMS_REG(0xA, 0x094)
45 bool enable : 1; /* 1 - PLCA enable, 0 - CSMA/CD enable */
46 uint8_t node_id /* PLCA node id range: 0 to 254 */;
48 uint8_t burst_count; /* PLCA burst count range: 0x0 to 0xFF */
63 bool tx_cut_through_mode; /* 1 - tx cut through, 0 - Store and forward */
64 bool rx_cut_through_mode; /* 1 - rx cut through, 0 - Store and forward */
87 for (uint8_t i = 0; i < size; i++) { in lan865x_update_dev_cfg_array()