ext qmsi: Update to QMSI 1.4 RC2

Update the builtin QMSI code to 1.4 (RC2).
The below shim drivers were updated for API or interface changes:
- aio
- counter
- i2c_ss
- rtc
- wdt.

Also, arch soc specific power management code were updated.

Jira: ZEP-1572

Change-Id: Ibc8fae032a39ffb2c2c997f697835bc0208fd308
Signed-off-by: Jesus Sanchez-Palencia <jesus.sanchez-palencia@intel.com>
Signed-off-by: Kuo-Lang Tseng <kuo-lang.tseng@intel.com>
This commit is contained in:
Kuo-Lang Tseng 2017-02-01 17:12:34 -08:00 committed by Anas Nashif
commit 23b0074012
86 changed files with 4522 additions and 1516 deletions

View file

@ -144,12 +144,12 @@ static int rtc_qmsi_set_alarm(struct device *dev, const uint32_t alarm_val)
static uint32_t rtc_qmsi_read(struct device *dev)
{
return QM_RTC[QM_RTC_0].rtc_ccvr;
return QM_RTC[QM_RTC_0]->rtc_ccvr;
}
static uint32_t rtc_qmsi_get_pending_int(struct device *dev)
{
return QM_RTC[QM_RTC_0].rtc_stat;
return QM_RTC[QM_RTC_0]->rtc_stat;
}
static const struct rtc_driver_api api = {