diff options
author | barthess <barthess@yandex.ru> | 2015-09-28 17:36:25 +0300 |
---|---|---|
committer | barthess <barthess@yandex.ru> | 2015-09-28 17:36:25 +0300 |
commit | d5e967add437774023b20e51ef49b81f5064f7f6 (patch) | |
tree | b5cdedae20effcca196a97dc2d1babcc0664f30d /os/various/memtest.h | |
parent | 51514b134ee5bfca3647647620920747b41eaf3a (diff) | |
download | ChibiOS-Contrib-d5e967add437774023b20e51ef49b81f5064f7f6.tar.gz ChibiOS-Contrib-d5e967add437774023b20e51ef49b81f5064f7f6.tar.bz2 ChibiOS-Contrib-d5e967add437774023b20e51ef49b81f5064f7f6.zip |
Memtest. Changed way to specify memtest data width
Diffstat (limited to 'os/various/memtest.h')
-rw-r--r-- | os/various/memtest.h | 35 |
1 files changed, 18 insertions, 17 deletions
diff --git a/os/various/memtest.h b/os/various/memtest.h index 721b36b..e67df5f 100644 --- a/os/various/memtest.h +++ b/os/various/memtest.h @@ -17,6 +17,9 @@ #ifndef MEMTEST_H_ #define MEMTEST_H_ +/* + * Memtest types + */ #define MEMTEST_WALKING_ONE (1 << 0) #define MEMTEST_WALKING_ZERO (1 << 1) #define MEMTEST_OWN_ADDRESS (1 << 2) @@ -24,6 +27,9 @@ #define MEMTEST_MOVING_INVERSION_55AA (1 << 4) #define MEMTEST_MOVING_INVERSION_RAND (1 << 5) +/* + * combined types for convenient + */ #define MEMTEST_RUN_ALL (MEMTEST_WALKING_ONE | \ MEMTEST_WALKING_ZERO | \ MEMTEST_OWN_ADDRESS | \ @@ -31,6 +37,13 @@ MEMTEST_MOVING_INVERSION_55AA | \ MEMTEST_MOVING_INVERSION_RAND) +/* + * Memtest data widths + */ +#define MEMTEST_WIDTH_8 (1 << 0) +#define MEMTEST_WIDTH_16 (1 << 1) +#define MEMTEST_WIDTH_32 (1 << 2) + typedef struct memtest_t memtest_t; typedef uint32_t testtype; @@ -43,35 +56,23 @@ typedef void (*memtestecb_t)(memtest_t *testp, testtype type, size_t index, /* * */ -typedef enum { - MEMTEST_WIDTH_8, - MEMTEST_WIDTH_16, - MEMTEST_WIDTH_32, -} memtest_bus_width_t; - -/* - * - */ struct memtest_t { /* * Pointer to the test area start. Must be word aligned. */ - void *start; + void *start; /* * Test area size in bytes. */ - size_t size; + size_t size; /* - * Maximum width of transactions. - * Note: it implies all narrower tests. - * Note: width my be wider then your memory interface because AHB is - * smart enough to split big transactions to smaller ones. + * Allowable data widths mask. */ - memtest_bus_width_t width; + uint32_t width_mask; /* * Error callback pointer. Set to NULL if unused. */ - memtestecb_t errcb; + memtestecb_t errcb; }; /* |