/* ChibiOS/RT - Copyright (C) 2013-2014 Uladzimir Pylinsky aka barthess Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #include "ch.h" #include "hal.h" #include "hal_fsmc_sram.h" #include "membench.h" #include "memtest.h" /* ****************************************************************************** * DEFINES ****************************************************************************** */ #define SRAM_SIZE (512 * 1024) #define SRAM_START ((void *)FSMC_Bank1_4_MAP) /* ****************************************************************************** * EXTERNS ****************************************************************************** */ /* ****************************************************************************** * PROTOTYPES ****************************************************************************** */ static void mem_error_cb(memtest_t *memp, testtype type, size_t index, size_t width, uint32_t got, uint32_t expect); /* ****************************************************************************** * GLOBAL VARIABLES ****************************************************************************** */ static size_t errors = 0; /* * */ static uint8_t int_buf[64*1024]; /* * SRAM driver configuration structure. */ static const SRAMConfig sram_cfg = { .bcr = (FSMC_BCR_MWID_16 | FSMC_BCR_MTYP_SRAM | FSMC_BCR_WREN), .btr = (0 << 16) | (2 << 8) | (1 << 0), .bwtr = (0 << 16) | (2 << 8) | (1 << 0) }; /* * */ static memtest_t memtest_struct = { SRAM_START, SRAM_SIZE, MEMTEST_WIDTH_32, mem_error_cb }; /* * */ static membench_t membench_ext = { SRAM_START, SRAM_SIZE, }; /* * */ static membench_t membench_int = { int_buf, sizeof(int_buf), }; /* * */ static membench_result_t membench_result_ext2int; static membench_result_t membench_result_int2ext; /* ****************************************************************************** ****************************************************************************** * LOCAL FUNCTIONS ****************************************************************************** ****************************************************************************** */ static inline void red_led_on(void) {palSetPad(GPIOI, GPIOI_LED_R);} static inline void red_led_off(void) {palClearPad(GPIOI, GPIOI_LED_R);} static inline void green_led_on(void) {palSetPad(GPIOI, GPIOI_LED_G);} static inline void green_led_off(void) {palClearPad(GPIOI, GPIOI_LED_G);} static inline void green_led_toggle(void) {palTogglePad(GPIOI, GPIOI_LED_G);} static void mem_error_cb(memtest_t *memp, testtype type, size_t index, size_t width, uint32_t got, uint32_t expect) { (void)memp; (void)type; (void)index; (void)width; (void)got; (void)expect; green_led_off(); red_led_on(); osalThreadSleepMilliseconds(10); errors++; osalSysHalt("Memory broken"); } /* * */ static void memtest(void) { red_led_off(); while (true) { memtest_run(&memtest_struct, MEMTEST_RUN_ALL); green_led_toggle(); } green_led_on(); green_led_off(); } /* * */ static void membench(void) { membench_run(&membench_ext, &membench_int, &membench_result_int2ext); membench_run(&membench_int, &membench_ext, &membench_result_ext2int); } /* ****************************************************************************** * EXPORTED FUNCTIONS ****************************************************************************** */ /* * Application entry point. */ int main(void) { /* * System initializations. * - HAL initialization, this also initializes the configured device drivers * and performs the board-specific initializations. * - Kernel initialization, the main() function becomes a thread and the * RTOS is active. */ halInit(); chSysInit(); fsmcSramInit(); fsmcSramStart(&SRAMD4, &sram_cfg); membench(); memtest(); /* * Normal main() thread activity, in this demo it does nothing. */ while (TRUE) { chThdSleepMilliseconds(500); } } 9 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188