1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 3 #ifndef DRIVERS_GENESYSLOGIC_GL9750_H 4 #define DRIVERS_GENESYSLOGIC_GL9750_H 5 6 /* Definitions for Genesys Logic GL9750 */ 7 8 #define CFG 0x800 9 #define CFG_EN 0x1 10 #define CFG1 0x844 11 #define CFG1_WP_INVERT (0x1 << 31) 12 #define CFG2 0x848 13 #define CFG2_L0S_SUPPORT (0x1 << 6) 14 15 #endif /* DRIVERS_GENESYSLOGIC_GL9750_H */ 16