xref: /aosp_15_r20/external/coreboot/src/southbridge/amd/pi/hudson/chip.h (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef HUDSON_CHIP_H
4 #define HUDSON_CHIP_H
5 
6 struct southbridge_amd_pi_hudson_config
7 {
8 	u32 ide0_enable : 1;
9 	u32 sata0_enable : 1;
10 	u32 boot_switch_sata_ide : 1;
11 	u32 hda_viddid;
12 	u8  gpp_configuration;
13 	u8  sd_mode;
14 };
15 
16 #endif /* HUDSON_CHIP_H */
17