aboutsummaryrefslogtreecommitdiff
path: root/Src/main.c
blob: 705a04f209395deee7ffbf0455514cec5245fd52 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
//------------------------------------------------------------------------------
// main.c
//------------------------------------------------------------------------------


//------------------------------------------------------------------------------
// Headers
//------------------------------------------------------------------------------
#include "stm32f4xx_hal.h"
#include "stm-fmc.h"


//------------------------------------------------------------------------------
// Defines
//------------------------------------------------------------------------------
#define GPIO_PORT_LEDS        GPIOJ

#define GPIO_PIN_LED_RED      GPIO_PIN_1
#define GPIO_PIN_LED_YELLOW		GPIO_PIN_2
#define GPIO_PIN_LED_GREEN    GPIO_PIN_3
#define GPIO_PIN_LED_BLUE     GPIO_PIN_4


//------------------------------------------------------------------------------
// Macros
//------------------------------------------------------------------------------
#define led_on(pin)			HAL_GPIO_WritePin(GPIO_PORT_LEDS,pin,GPIO_PIN_SET)
#define led_off(pin)		HAL_GPIO_WritePin(GPIO_PORT_LEDS,pin,GPIO_PIN_RESET)
#define led_toggle(pin)	HAL_GPIO_TogglePin(GPIO_PORT_LEDS,pin)


//------------------------------------------------------------------------------
// Variables
//------------------------------------------------------------------------------
RNG_HandleTypeDef rng_inst;



//------------------------------------------------------------------------------
// Prototypes
//------------------------------------------------------------------------------
void SystemClock_Config(void);

static void MX_RNG_Init(void);
static void MX_GPIO_Init(void);

int test_fpga_data_bus(void);
int test_fpga_address_bus(void);


//------------------------------------------------------------------------------
// Defines
//------------------------------------------------------------------------------
#define TEST_NUM_ROUNDS		100000


//------------------------------------------------------------------------------
int main(void)
//------------------------------------------------------------------------------
{
		// initialize hal
  HAL_Init();

		// configure system clock
  SystemClock_Config();

		// initialize gpio
	MX_GPIO_Init();
	
		// initialize rng
	MX_RNG_Init();
	
		// prepare fmc interface
	fmc_init();

		// turn on green led, turn off other leds
	led_on(GPIO_PIN_LED_GREEN);
	led_off(GPIO_PIN_LED_YELLOW);
	led_off(GPIO_PIN_LED_RED);
	led_off(GPIO_PIN_LED_BLUE);
	
		// vars
	int test_ok;

		// main loop (test, until an error is detected)
  while (1)
  {
			// test data bus
		test_ok = test_fpga_data_bus();
		
			// check for errors (abort testing in case of error)
		if (test_ok < TEST_NUM_ROUNDS) /*break*/;
			
		
			// test address bus
		test_ok = test_fpga_address_bus();
		
			// check for errors (abort testing in case of error)
		if (test_ok < TEST_NUM_ROUNDS) /*break*/;
		
			// toggle yellow led to indicate, that we are alive
		led_toggle(GPIO_PIN_LED_YELLOW);
  }

		// error handler
	while (1)
	{
			// turn on red led, turn off other leds
		led_on(GPIO_PIN_LED_RED);
		led_off(GPIO_PIN_LED_GREEN);
		led_off(GPIO_PIN_LED_YELLOW);
		led_off(GPIO_PIN_LED_BLUE);		
	}

		// should never reach this line
}


//------------------------------------------------------------------------------
int test_fpga_data_bus(void)
//------------------------------------------------------------------------------
{
	int c, ok;
	uint32_t rnd, buf;
	HAL_StatusTypeDef hal_result;
	
		// run some rounds of data bus test
	for (c=0; c<TEST_NUM_ROUNDS; c++)
	{
			// try to generate "random" number
		hal_result = HAL_RNG_GenerateRandomNumber(&rng_inst, &rnd);
		if (hal_result != HAL_OK) break;
		
			// write value to fpga at address 0
		ok = fmc_write_32(0, &rnd);
		if (ok != 0) break;
		
			// read value from fpga
		ok = fmc_read_32(0, &buf);
		if (ok != 0) break;
		
			// compare (abort testing in case of error)
		if (buf != rnd)
		{
			uint32_t diff = buf;
			diff ^= rnd;
			diff = 0;	// place breakpoint here if needed
			break;
		}
	}

		// return number of successful tests
	return c;
}


//------------------------------------------------------------------------------
int test_fpga_address_bus(void)
//------------------------------------------------------------------------------
{
	int c, ok;
  uint32_t rnd, buf;
  HAL_StatusTypeDef hal_result;

		// run some rounds of address bus test
  for (c=0; c<TEST_NUM_ROUNDS; c++)
  {
			// try to generate "random" number
    hal_result = HAL_RNG_GenerateRandomNumber(&rng_inst, &rnd);
    if (hal_result != HAL_OK) break;
    
			// we only have 2^22 32-bit words
		rnd &= 0x00FFFFFC;
    
			// don't test zero addresses (fpga will store data, not address)
    if (rnd == 0) continue;
    
			// write dummy value to fpga at some non-zero address
    ok = fmc_write_32(rnd, &buf);
    if (ok != 0) break;
		
			// read value from fpga
    ok = fmc_read_32(0, &buf);
    if (ok != 0) break;
    
			// fpga receives address of 32-bit word, while we need
			// byte address here to compare
    buf <<= 2;
    
			// compare (abort testing in case of error)
    if (buf != rnd)
		{
			uint32_t diff = buf;
			diff ^= rnd;
			diff = 0;	// place breakpoint here if needed
			break;
		}
  }
  
  return c;
}


//------------------------------------------------------------------------------
void SystemClock_Config(void)
//------------------------------------------------------------------------------
{

  RCC_OscInitTypeDef RCC_OscInitStruct;
  RCC_ClkInitTypeDef RCC_ClkInitStruct;

  __PWR_CLK_ENABLE();

  __HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1);

  RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI;
  RCC_OscInitStruct.HSIState = RCC_HSI_ON;
  RCC_OscInitStruct.HSICalibrationValue = 16;
  RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
  RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSI;
  RCC_OscInitStruct.PLL.PLLM = 12;
  RCC_OscInitStruct.PLL.PLLN = 270;
  RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2;
  RCC_OscInitStruct.PLL.PLLQ = 8;
  HAL_RCC_OscConfig(&RCC_OscInitStruct);

  HAL_PWREx_ActivateOverDrive();

  RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_SYSCLK|RCC_CLOCKTYPE_PCLK1
                              |RCC_CLOCKTYPE_PCLK2;
  RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
  RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
  RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV4;
  RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV2;
  HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_5);

  HAL_SYSTICK_Config(HAL_RCC_GetHCLKFreq()/1000);

  HAL_SYSTICK_CLKSourceConfig(SYSTICK_CLKSOURCE_HCLK);

}


//------------------------------------------------------------------------------
void MX_RNG_Init(void)
//------------------------------------------------------------------------------
{
  rng_inst.Instance = RNG;
  HAL_RNG_Init(&rng_inst);
}


//------------------------------------------------------------------------------
void MX_GPIO_Init(void)
//------------------------------------------------------------------------------
{
	GPIO_InitTypeDef GPIO_InitStruct;

  __GPIOJ_CLK_ENABLE();

  GPIO_InitStruct.Pin = GPIO_PIN_1 | GPIO_PIN_2 | GPIO_PIN_3 | GPIO_PIN_4;
  GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
  GPIO_InitStruct.Pull = GPIO_NOPULL;
	GPIO_InitStruct.Speed = GPIO_SPEED_LOW;
  HAL_GPIO_Init(GPIOJ, &GPIO_InitStruct);
}


//------------------------------------------------------------------------------
#ifdef USE_FULL_ASSERT
//------------------------------------------------------------------------------
void assert_failed(uint8_t* file, uint32_t line)
//------------------------------------------------------------------------------
{
}
//------------------------------------------------------------------------------
#endif
//------------------------------------------------------------------------------


//------------------------------------------------------------------------------
// EOF
//------------------------------------------------------------------------------