created | 2019-01-12T15:58:42Z |
---|---|
begin | 2018-12-29T00:00:00Z |
end | 2018-12-30T00:00:00Z |
path | src/sys |
commits | 5 |
date | 2018-12-29T11:37:30Z | |||
---|---|---|---|---|
author | patrick | |||
files | src/sys/dev/sdmmc/sdmmc.c | log | diff | annotate |
src/sys/dev/sdmmc/sdmmcchip.h | log | diff | annotate | |
src/sys/dev/sdmmc/sdmmcvar.h | log | diff | annotate | |
message |
Allow passing the maximum size of a segment that a SD/MMC host controller can handle for DMA tranfers, since not all support 64k. ok kettenis@ |
date | 2018-12-29T11:37:54Z | |||
---|---|---|---|---|
author | patrick | |||
files | src/sys/dev/fdt/imxesdhc.c | log | diff | annotate |
message |
The i.MX SD/MMC host controller does not support zero-length DMA descriptors, which are used to encode 64k transfers since it's a 16-bit value in the descriptor, which means that we only support a maximum segment size of 64k minus one. This fixes I/O errors on i.MX machines. ok kettenis@ |
date | 2018-12-29T14:09:00Z | |||
---|---|---|---|---|
author | patrick | |||
files | src/sys/dev/fdt/sximmc.c | log | diff | annotate |
message |
Remove the hand-rolled maximum segment size handling in sximmc(4) since we now have the possibility to specify it in the attach args. ok kettenis@ |
date | 2018-12-29T19:02:30Z | |||
---|---|---|---|---|
author | cheloha | |||
files | src/sys/kern/kern_time.c | log | diff | annotate |
message | sys_nanosleep: switch to descriptive, idiomatic variable names; ok tedu@ |
date | 2018-12-29T21:03:58Z | |||
---|---|---|---|---|
author | bru | |||
files | src/sys/dev/wscons/wstpad.c | log | diff | annotate |
message |
Cleanup: Initialize the pointers to position data early, and use them consistently. |