target-arm: convert check_ap to ap_to_rw_prot
[qemu/ar7.git] / include / hw / i2c / pm_smbus.h
blob926603fdff2930c405af0d0a2e51f3f9593fdf7b
1 #ifndef PM_SMBUS_H
2 #define PM_SMBUS_H
4 typedef struct PMSMBus {
5 I2CBus *smbus;
6 MemoryRegion io;
8 uint8_t smb_stat;
9 uint8_t smb_ctl;
10 uint8_t smb_cmd;
11 uint8_t smb_addr;
12 uint8_t smb_data0;
13 uint8_t smb_data1;
14 uint8_t smb_data[32];
15 uint8_t smb_index;
16 } PMSMBus;
18 void pm_smbus_init(DeviceState *parent, PMSMBus *smb);
20 #endif /* !PM_SMBUS_H */