Select one of the symbols to view example projects that use it.
 
Outline
...
...
...
#include "fx_stm32_sram_driver.h"
is_initialized
fx_stm32_sram_driver(FX_MEDIA *)
Files
loading...
SourceVuSTM32 Libraries and Samplesfilexcommon/drivers/fx_stm32_sram_driver.c
 
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/**************************************************************************/ /* */ /* Copyright (c) Microsoft Corporation. All rights reserved. */ /* */ /* This software is licensed under the Microsoft Software License */ /* Terms for Microsoft Azure RTOS. Full text of the license can be */ /* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ /* and in the root directory of this software. */ /* */... /**************************************************************************/ ... /**************************************************************************/ /**************************************************************************/ /** */ /** FileX Component */ /** */ /** RAM Disk Driver */ /** */... /**************************************************************************/ /**************************************************************************/ /* Include necessary system files. */ #include "fx_stm32_sram_driver.h" static UINT is_initialized = 0; VOID fx_stm32_sram_driver(FX_MEDIA *media_ptr) { UCHAR *source_buffer; UCHAR *destination_buffer; UINT bytes_per_sector; /* Process the driver request specified in the media control block. */ switch (media_ptr->fx_media_driver_request) { case FX_DRIVER_INIT: { /* * the FX_DRIVER_INIT can be requested either from the fx_media_format() or fx_media_open() * as the RAM meory should be always formatted before being used, by memset'ing it to '\0' * we need to avoid double initialization to keep the file system integrity. *//* ... */ if (is_initialized == 0) { _fx_utility_memory_set((UCHAR *)FX_SRAM_DISK_BASE_ADDRESS, '\0', FX_SRAM_DISK_SIZE); is_initialized = 1; }if (is_initialized == 0) { ... } media_ptr -> fx_media_driver_status = FX_SUCCESS; break; ...} case FX_DRIVER_INIT: case FX_DRIVER_UNINIT: { /* there is nothing to do for FX_DRIVER_UNINIT request * set the media driver status to FX_SUCCESS. *//* ... */ media_ptr -> fx_media_driver_status = FX_SUCCESS; break; ...} case FX_DRIVER_UNINIT: case FX_DRIVER_READ: { /* Calculate the RAM disk sector offset.*/ source_buffer = ((UCHAR *)FX_SRAM_DISK_BASE_ADDRESS) + ((media_ptr->fx_media_driver_logical_sector + media_ptr->fx_media_hidden_sectors) * media_ptr->fx_media_bytes_per_sector); /* Copy the RAM sector into the destination. */ _fx_utility_memory_copy(source_buffer, media_ptr -> fx_media_driver_buffer, media_ptr->fx_media_driver_sectors * media_ptr->fx_media_bytes_per_sector); /* Successful driver request. */ media_ptr->fx_media_driver_status = FX_SUCCESS; break; ...} case FX_DRIVER_READ: case FX_DRIVER_WRITE: { /* Calculate the RAM disk sector offset */ destination_buffer = (UCHAR *)FX_SRAM_DISK_BASE_ADDRESS + ((media_ptr->fx_media_driver_logical_sector + media_ptr->fx_media_hidden_sectors) * media_ptr->fx_media_bytes_per_sector); /* Copy the source to the RAM sector. */ _fx_utility_memory_copy(media_ptr->fx_media_driver_buffer, destination_buffer, media_ptr->fx_media_driver_sectors * media_ptr->fx_media_bytes_per_sector); /* Successful driver request. */ media_ptr -> fx_media_driver_status = FX_SUCCESS; break; ...} case FX_DRIVER_WRITE: case FX_DRIVER_FLUSH: { /* * Nothing to do for the FX_DRIVER_FLUSH Return driver success. *//* ... */ media_ptr->fx_media_driver_status = FX_SUCCESS; break; ...} case FX_DRIVER_FLUSH: case FX_DRIVER_ABORT: { /* * Nothing to do for the FX_DRIVER_ABORT Return driver success. *//* ... */ media_ptr->fx_media_driver_status = FX_SUCCESS; break; ...} case FX_DRIVER_ABORT: case FX_DRIVER_BOOT_READ: { /* Calculate the RAM disk boot sector offset, which is at the very beginning of * the RAM disk. *//* ... */ source_buffer = (UCHAR *)FX_SRAM_DISK_BASE_ADDRESS; /* For RAM disk only, pickup the bytes per sector.*/ bytes_per_sector = _fx_utility_16_unsigned_read(&source_buffer[FX_BYTES_SECTOR]); /* Ensure this is less than the media memory size. */ if (bytes_per_sector > media_ptr->fx_media_memory_size) { media_ptr->fx_media_driver_status = FX_BUFFER_ERROR; break; }if (bytes_per_sector > media_ptr->fx_media_memory_size) { ... } /* Copy the RAM boot sector into the destination. */ _fx_utility_memory_copy(source_buffer, media_ptr -> fx_media_driver_buffer, bytes_per_sector); /* Successful driver request. */ media_ptr -> fx_media_driver_status = FX_SUCCESS; break; ...} case FX_DRIVER_BOOT_READ: case FX_DRIVER_BOOT_WRITE: { /* * Calculate the RAM disk boot sector offset, which is at the very beginning of the RAM disk. *//* ... */ destination_buffer = (UCHAR *)FX_SRAM_DISK_BASE_ADDRESS; /* Copy the RAM boot sector into the destination. */ _fx_utility_memory_copy(media_ptr->fx_media_driver_buffer, destination_buffer, media_ptr->fx_media_bytes_per_sector); /* Successful driver request. */ media_ptr -> fx_media_driver_status = FX_SUCCESS; break; ...} case FX_DRIVER_BOOT_WRITE: default: { /* Invalid driver request. */ media_ptr -> fx_media_driver_status = FX_IO_ERROR; break; ...}default }switch (media_ptr->fx_media_driver_request) { ... } }{ ... }
Details