mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-06-05 16:26:29 +08:00
at91_mci: Add timing to read_ivar.
This commit is contained in:
parent
e7f3260886
commit
a506ba970a
@ -1557,6 +1557,11 @@ at91_mci_read_ivar(device_t bus, device_t child, int which, uintptr_t *result)
|
||||
}
|
||||
*(int *)result = sc->host.caps;
|
||||
break;
|
||||
#ifdef __rtems__
|
||||
case MMCBR_IVAR_TIMING:
|
||||
*result = sc->host.ios.timing;
|
||||
break;
|
||||
#endif /* __rtems__ */
|
||||
case MMCBR_IVAR_MAX_DATA:
|
||||
/*
|
||||
* Something is wrong with the 2x parts and multiblock, so
|
||||
@ -1604,6 +1609,11 @@ at91_mci_write_ivar(device_t bus, device_t child, int which, uintptr_t value)
|
||||
case MMCBR_IVAR_VDD:
|
||||
sc->host.ios.vdd = value;
|
||||
break;
|
||||
#ifdef __rtems__
|
||||
case MMCBR_IVAR_TIMING:
|
||||
sc->host.ios.timing = value;
|
||||
break;
|
||||
#endif /* __rtems__ */
|
||||
/* These are read-only */
|
||||
case MMCBR_IVAR_CAPS:
|
||||
case MMCBR_IVAR_HOST_OCR:
|
||||
|
Loading…
x
Reference in New Issue
Block a user