]> git.proxmox.com Git - mirror_edk2.git/blob - ArmPlatformPkg/Drivers/NorFlashDxe/NorFlashDxe.c
20134094badcb5bee14f66a9c38b8d5bbf68ceaa
[mirror_edk2.git] / ArmPlatformPkg / Drivers / NorFlashDxe / NorFlashDxe.c
1 /** @file NorFlashDxe.c
2
3 Copyright (c) 2011 - 2020, Arm Limited. All rights reserved.<BR>
4
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7 **/
8
9 #include <Library/UefiLib.h>
10 #include <Library/BaseMemoryLib.h>
11 #include <Library/MemoryAllocationLib.h>
12 #include <Library/UefiBootServicesTableLib.h>
13 #include <Library/PcdLib.h>
14
15 #include "NorFlashDxe.h"
16
17 STATIC EFI_EVENT mNorFlashVirtualAddrChangeEvent;
18
19 //
20 // Global variable declarations
21 //
22 NOR_FLASH_INSTANCE **mNorFlashInstances;
23 UINT32 mNorFlashDeviceCount;
24
25 NOR_FLASH_INSTANCE mNorFlashInstanceTemplate = {
26 NOR_FLASH_SIGNATURE, // Signature
27 NULL, // Handle ... NEED TO BE FILLED
28
29 0, // DeviceBaseAddress ... NEED TO BE FILLED
30 0, // RegionBaseAddress ... NEED TO BE FILLED
31 0, // Size ... NEED TO BE FILLED
32 0, // StartLba
33
34 {
35 EFI_BLOCK_IO_PROTOCOL_REVISION2, // Revision
36 NULL, // Media ... NEED TO BE FILLED
37 NorFlashBlockIoReset, // Reset;
38 NorFlashBlockIoReadBlocks, // ReadBlocks
39 NorFlashBlockIoWriteBlocks, // WriteBlocks
40 NorFlashBlockIoFlushBlocks // FlushBlocks
41 }, // BlockIoProtocol
42
43 {
44 0, // MediaId ... NEED TO BE FILLED
45 FALSE, // RemovableMedia
46 TRUE, // MediaPresent
47 FALSE, // LogicalPartition
48 FALSE, // ReadOnly
49 FALSE, // WriteCaching;
50 0, // BlockSize ... NEED TO BE FILLED
51 4, // IoAlign
52 0, // LastBlock ... NEED TO BE FILLED
53 0, // LowestAlignedLba
54 1, // LogicalBlocksPerPhysicalBlock
55 }, //Media;
56
57 {
58 EFI_DISK_IO_PROTOCOL_REVISION, // Revision
59 NorFlashDiskIoReadDisk, // ReadDisk
60 NorFlashDiskIoWriteDisk // WriteDisk
61 },
62
63 {
64 FvbGetAttributes, // GetAttributes
65 FvbSetAttributes, // SetAttributes
66 FvbGetPhysicalAddress, // GetPhysicalAddress
67 FvbGetBlockSize, // GetBlockSize
68 FvbRead, // Read
69 FvbWrite, // Write
70 FvbEraseBlocks, // EraseBlocks
71 NULL, //ParentHandle
72 }, // FvbProtoccol;
73 NULL, // ShadowBuffer
74 {
75 {
76 {
77 HARDWARE_DEVICE_PATH,
78 HW_VENDOR_DP,
79 {
80 (UINT8)(OFFSET_OF (NOR_FLASH_DEVICE_PATH, End)),
81 (UINT8)(OFFSET_OF (NOR_FLASH_DEVICE_PATH, End) >> 8)
82 }
83 },
84 { 0x0, 0x0, 0x0, { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } }, // GUID ... NEED TO BE FILLED
85 },
86 0, // Index
87 {
88 END_DEVICE_PATH_TYPE,
89 END_ENTIRE_DEVICE_PATH_SUBTYPE,
90 { sizeof (EFI_DEVICE_PATH_PROTOCOL), 0 }
91 }
92 } // DevicePath
93 };
94
95 EFI_STATUS
96 NorFlashCreateInstance (
97 IN UINTN NorFlashDeviceBase,
98 IN UINTN NorFlashRegionBase,
99 IN UINTN NorFlashSize,
100 IN UINT32 Index,
101 IN UINT32 BlockSize,
102 IN BOOLEAN SupportFvb,
103 OUT NOR_FLASH_INSTANCE** NorFlashInstance
104 )
105 {
106 EFI_STATUS Status;
107 NOR_FLASH_INSTANCE* Instance;
108
109 ASSERT(NorFlashInstance != NULL);
110
111 Instance = AllocateRuntimeCopyPool (sizeof(NOR_FLASH_INSTANCE),&mNorFlashInstanceTemplate);
112 if (Instance == NULL) {
113 return EFI_OUT_OF_RESOURCES;
114 }
115
116 Instance->DeviceBaseAddress = NorFlashDeviceBase;
117 Instance->RegionBaseAddress = NorFlashRegionBase;
118 Instance->Size = NorFlashSize;
119
120 Instance->BlockIoProtocol.Media = &Instance->Media;
121 Instance->Media.MediaId = Index;
122 Instance->Media.BlockSize = BlockSize;
123 Instance->Media.LastBlock = (NorFlashSize / BlockSize)-1;
124
125 CopyGuid (&Instance->DevicePath.Vendor.Guid, &gEfiCallerIdGuid);
126 Instance->DevicePath.Index = (UINT8)Index;
127
128 Instance->ShadowBuffer = AllocateRuntimePool (BlockSize);;
129 if (Instance->ShadowBuffer == NULL) {
130 return EFI_OUT_OF_RESOURCES;
131 }
132
133 if (SupportFvb) {
134 NorFlashFvbInitialize (Instance);
135
136 Status = gBS->InstallMultipleProtocolInterfaces (
137 &Instance->Handle,
138 &gEfiDevicePathProtocolGuid, &Instance->DevicePath,
139 &gEfiBlockIoProtocolGuid, &Instance->BlockIoProtocol,
140 &gEfiFirmwareVolumeBlockProtocolGuid, &Instance->FvbProtocol,
141 NULL
142 );
143 if (EFI_ERROR(Status)) {
144 FreePool (Instance);
145 return Status;
146 }
147 } else {
148 Status = gBS->InstallMultipleProtocolInterfaces (
149 &Instance->Handle,
150 &gEfiDevicePathProtocolGuid, &Instance->DevicePath,
151 &gEfiBlockIoProtocolGuid, &Instance->BlockIoProtocol,
152 &gEfiDiskIoProtocolGuid, &Instance->DiskIoProtocol,
153 NULL
154 );
155 if (EFI_ERROR(Status)) {
156 FreePool (Instance);
157 return Status;
158 }
159 }
160
161 *NorFlashInstance = Instance;
162 return Status;
163 }
164
165 UINT32
166 NorFlashReadStatusRegister (
167 IN NOR_FLASH_INSTANCE *Instance,
168 IN UINTN SR_Address
169 )
170 {
171 // Prepare to read the status register
172 SEND_NOR_COMMAND (Instance->DeviceBaseAddress, 0, P30_CMD_READ_STATUS_REGISTER);
173 return MmioRead32 (Instance->DeviceBaseAddress);
174 }
175
176 STATIC
177 BOOLEAN
178 NorFlashBlockIsLocked (
179 IN NOR_FLASH_INSTANCE *Instance,
180 IN UINTN BlockAddress
181 )
182 {
183 UINT32 LockStatus;
184
185 // Send command for reading device id
186 SEND_NOR_COMMAND (BlockAddress, 2, P30_CMD_READ_DEVICE_ID);
187
188 // Read block lock status
189 LockStatus = MmioRead32 (CREATE_NOR_ADDRESS(BlockAddress, 2));
190
191 // Decode block lock status
192 LockStatus = FOLD_32BIT_INTO_16BIT(LockStatus);
193
194 if ((LockStatus & 0x2) != 0) {
195 DEBUG((EFI_D_ERROR, "NorFlashBlockIsLocked: WARNING: Block LOCKED DOWN\n"));
196 }
197
198 return ((LockStatus & 0x1) != 0);
199 }
200
201 STATIC
202 EFI_STATUS
203 NorFlashUnlockSingleBlock (
204 IN NOR_FLASH_INSTANCE *Instance,
205 IN UINTN BlockAddress
206 )
207 {
208 UINT32 LockStatus;
209
210 // Raise the Task Priority Level to TPL_NOTIFY to serialise all its operations
211 // and to protect shared data structures.
212
213 if (FeaturePcdGet (PcdNorFlashCheckBlockLocked) == TRUE) {
214 do {
215 // Request a lock setup
216 SEND_NOR_COMMAND (BlockAddress, 0, P30_CMD_LOCK_BLOCK_SETUP);
217
218 // Request an unlock
219 SEND_NOR_COMMAND (BlockAddress, 0, P30_CMD_UNLOCK_BLOCK);
220
221 // Send command for reading device id
222 SEND_NOR_COMMAND (BlockAddress, 2, P30_CMD_READ_DEVICE_ID);
223
224 // Read block lock status
225 LockStatus = MmioRead32 (CREATE_NOR_ADDRESS(BlockAddress, 2));
226
227 // Decode block lock status
228 LockStatus = FOLD_32BIT_INTO_16BIT(LockStatus);
229 } while ((LockStatus & 0x1) == 1);
230 } else {
231 // Request a lock setup
232 SEND_NOR_COMMAND (BlockAddress, 0, P30_CMD_LOCK_BLOCK_SETUP);
233
234 // Request an unlock
235 SEND_NOR_COMMAND (BlockAddress, 0, P30_CMD_UNLOCK_BLOCK);
236
237 // Wait until the status register gives us the all clear
238 do {
239 LockStatus = NorFlashReadStatusRegister (Instance, BlockAddress);
240 } while ((LockStatus & P30_SR_BIT_WRITE) != P30_SR_BIT_WRITE);
241 }
242
243 // Put device back into Read Array mode
244 SEND_NOR_COMMAND (BlockAddress, 0, P30_CMD_READ_ARRAY);
245
246 DEBUG((DEBUG_BLKIO, "UnlockSingleBlock: BlockAddress=0x%08x\n", BlockAddress));
247
248 return EFI_SUCCESS;
249 }
250
251 STATIC
252 EFI_STATUS
253 NorFlashUnlockSingleBlockIfNecessary (
254 IN NOR_FLASH_INSTANCE *Instance,
255 IN UINTN BlockAddress
256 )
257 {
258 EFI_STATUS Status;
259
260 Status = EFI_SUCCESS;
261
262 if (NorFlashBlockIsLocked (Instance, BlockAddress)) {
263 Status = NorFlashUnlockSingleBlock (Instance, BlockAddress);
264 }
265
266 return Status;
267 }
268
269
270 /**
271 * The following function presumes that the block has already been unlocked.
272 **/
273 STATIC
274 EFI_STATUS
275 NorFlashEraseSingleBlock (
276 IN NOR_FLASH_INSTANCE *Instance,
277 IN UINTN BlockAddress
278 )
279 {
280 EFI_STATUS Status;
281 UINT32 StatusRegister;
282
283 Status = EFI_SUCCESS;
284
285 // Request a block erase and then confirm it
286 SEND_NOR_COMMAND(BlockAddress, 0, P30_CMD_BLOCK_ERASE_SETUP);
287 SEND_NOR_COMMAND(BlockAddress, 0, P30_CMD_BLOCK_ERASE_CONFIRM);
288
289 // Wait until the status register gives us the all clear
290 do {
291 StatusRegister = NorFlashReadStatusRegister (Instance, BlockAddress);
292 } while ((StatusRegister & P30_SR_BIT_WRITE) != P30_SR_BIT_WRITE);
293
294 if (StatusRegister & P30_SR_BIT_VPP) {
295 DEBUG((EFI_D_ERROR,"EraseSingleBlock(BlockAddress=0x%08x: VPP Range Error\n", BlockAddress));
296 Status = EFI_DEVICE_ERROR;
297 }
298
299 if ((StatusRegister & (P30_SR_BIT_ERASE | P30_SR_BIT_PROGRAM)) == (P30_SR_BIT_ERASE | P30_SR_BIT_PROGRAM)) {
300 DEBUG((EFI_D_ERROR,"EraseSingleBlock(BlockAddress=0x%08x: Command Sequence Error\n", BlockAddress));
301 Status = EFI_DEVICE_ERROR;
302 }
303
304 if (StatusRegister & P30_SR_BIT_ERASE) {
305 DEBUG((EFI_D_ERROR,"EraseSingleBlock(BlockAddress=0x%08x: Block Erase Error StatusRegister:0x%X\n", BlockAddress, StatusRegister));
306 Status = EFI_DEVICE_ERROR;
307 }
308
309 if (StatusRegister & P30_SR_BIT_BLOCK_LOCKED) {
310 // The debug level message has been reduced because a device lock might happen. In this case we just retry it ...
311 DEBUG((EFI_D_INFO,"EraseSingleBlock(BlockAddress=0x%08x: Block Locked Error\n", BlockAddress));
312 Status = EFI_WRITE_PROTECTED;
313 }
314
315 if (EFI_ERROR(Status)) {
316 // Clear the Status Register
317 SEND_NOR_COMMAND (Instance->DeviceBaseAddress, 0, P30_CMD_CLEAR_STATUS_REGISTER);
318 }
319
320 // Put device back into Read Array mode
321 SEND_NOR_COMMAND (Instance->DeviceBaseAddress, 0, P30_CMD_READ_ARRAY);
322
323 return Status;
324 }
325
326 /**
327 * This function unlock and erase an entire NOR Flash block.
328 **/
329 EFI_STATUS
330 NorFlashUnlockAndEraseSingleBlock (
331 IN NOR_FLASH_INSTANCE *Instance,
332 IN UINTN BlockAddress
333 )
334 {
335 EFI_STATUS Status;
336 UINTN Index;
337 EFI_TPL OriginalTPL;
338
339 if (!EfiAtRuntime ()) {
340 // Raise TPL to TPL_HIGH to stop anyone from interrupting us.
341 OriginalTPL = gBS->RaiseTPL (TPL_HIGH_LEVEL);
342 } else {
343 // This initialization is only to prevent the compiler to complain about the
344 // use of uninitialized variables
345 OriginalTPL = TPL_HIGH_LEVEL;
346 }
347
348 Index = 0;
349 // The block erase might fail a first time (SW bug ?). Retry it ...
350 do {
351 // Unlock the block if we have to
352 Status = NorFlashUnlockSingleBlockIfNecessary (Instance, BlockAddress);
353 if (EFI_ERROR (Status)) {
354 break;
355 }
356 Status = NorFlashEraseSingleBlock (Instance, BlockAddress);
357 Index++;
358 } while ((Index < NOR_FLASH_ERASE_RETRY) && (Status == EFI_WRITE_PROTECTED));
359
360 if (Index == NOR_FLASH_ERASE_RETRY) {
361 DEBUG((EFI_D_ERROR,"EraseSingleBlock(BlockAddress=0x%08x: Block Locked Error (try to erase %d times)\n", BlockAddress,Index));
362 }
363
364 if (!EfiAtRuntime ()) {
365 // Interruptions can resume.
366 gBS->RestoreTPL (OriginalTPL);
367 }
368
369 return Status;
370 }
371
372
373 STATIC
374 EFI_STATUS
375 NorFlashWriteSingleWord (
376 IN NOR_FLASH_INSTANCE *Instance,
377 IN UINTN WordAddress,
378 IN UINT32 WriteData
379 )
380 {
381 EFI_STATUS Status;
382 UINT32 StatusRegister;
383
384 Status = EFI_SUCCESS;
385
386 // Request a write single word command
387 SEND_NOR_COMMAND(WordAddress, 0, P30_CMD_WORD_PROGRAM_SETUP);
388
389 // Store the word into NOR Flash;
390 MmioWrite32 (WordAddress, WriteData);
391
392 // Wait for the write to complete and then check for any errors; i.e. check the Status Register
393 do {
394 // Prepare to read the status register
395 StatusRegister = NorFlashReadStatusRegister (Instance, WordAddress);
396 // The chip is busy while the WRITE bit is not asserted
397 } while ((StatusRegister & P30_SR_BIT_WRITE) != P30_SR_BIT_WRITE);
398
399
400 // Perform a full status check:
401 // Mask the relevant bits of Status Register.
402 // Everything should be zero, if not, we have a problem
403
404 if (StatusRegister & P30_SR_BIT_VPP) {
405 DEBUG((EFI_D_ERROR,"NorFlashWriteSingleWord(WordAddress:0x%X): VPP Range Error\n",WordAddress));
406 Status = EFI_DEVICE_ERROR;
407 }
408
409 if (StatusRegister & P30_SR_BIT_PROGRAM) {
410 DEBUG((EFI_D_ERROR,"NorFlashWriteSingleWord(WordAddress:0x%X): Program Error\n",WordAddress));
411 Status = EFI_DEVICE_ERROR;
412 }
413
414 if (StatusRegister & P30_SR_BIT_BLOCK_LOCKED) {
415 DEBUG((EFI_D_ERROR,"NorFlashWriteSingleWord(WordAddress:0x%X): Device Protect Error\n",WordAddress));
416 Status = EFI_DEVICE_ERROR;
417 }
418
419 if (!EFI_ERROR(Status)) {
420 // Clear the Status Register
421 SEND_NOR_COMMAND (Instance->DeviceBaseAddress, 0, P30_CMD_CLEAR_STATUS_REGISTER);
422 }
423
424 // Put device back into Read Array mode
425 SEND_NOR_COMMAND (Instance->DeviceBaseAddress, 0, P30_CMD_READ_ARRAY);
426
427 return Status;
428 }
429
430 /*
431 * Writes data to the NOR Flash using the Buffered Programming method.
432 *
433 * The maximum size of the on-chip buffer is 32-words, because of hardware restrictions.
434 * Therefore this function will only handle buffers up to 32 words or 128 bytes.
435 * To deal with larger buffers, call this function again.
436 *
437 * This function presumes that both the TargetAddress and the TargetAddress+BufferSize
438 * exist entirely within the NOR Flash. Therefore these conditions will not be checked here.
439 *
440 * In buffered programming, if the target address not at the beginning of a 32-bit word boundary,
441 * then programming time is doubled and power consumption is increased.
442 * Therefore, it is a requirement to align buffer writes to 32-bit word boundaries.
443 * i.e. the last 4 bits of the target start address must be zero: 0x......00
444 */
445 EFI_STATUS
446 NorFlashWriteBuffer (
447 IN NOR_FLASH_INSTANCE *Instance,
448 IN UINTN TargetAddress,
449 IN UINTN BufferSizeInBytes,
450 IN UINT32 *Buffer
451 )
452 {
453 EFI_STATUS Status;
454 UINTN BufferSizeInWords;
455 UINTN Count;
456 volatile UINT32 *Data;
457 UINTN WaitForBuffer;
458 BOOLEAN BufferAvailable;
459 UINT32 StatusRegister;
460
461 WaitForBuffer = MAX_BUFFERED_PROG_ITERATIONS;
462 BufferAvailable = FALSE;
463
464 // Check that the target address does not cross a 32-word boundary.
465 if ((TargetAddress & BOUNDARY_OF_32_WORDS) != 0) {
466 return EFI_INVALID_PARAMETER;
467 }
468
469 // Check there are some data to program
470 if (BufferSizeInBytes == 0) {
471 return EFI_BUFFER_TOO_SMALL;
472 }
473
474 // Check that the buffer size does not exceed the maximum hardware buffer size on chip.
475 if (BufferSizeInBytes > P30_MAX_BUFFER_SIZE_IN_BYTES) {
476 return EFI_BAD_BUFFER_SIZE;
477 }
478
479 // Check that the buffer size is a multiple of 32-bit words
480 if ((BufferSizeInBytes % 4) != 0) {
481 return EFI_BAD_BUFFER_SIZE;
482 }
483
484 // Pre-programming conditions checked, now start the algorithm.
485
486 // Prepare the data destination address
487 Data = (UINT32 *)TargetAddress;
488
489 // Check the availability of the buffer
490 do {
491 // Issue the Buffered Program Setup command
492 SEND_NOR_COMMAND(TargetAddress, 0, P30_CMD_BUFFERED_PROGRAM_SETUP);
493
494 // Read back the status register bit#7 from the same address
495 if (((*Data) & P30_SR_BIT_WRITE) == P30_SR_BIT_WRITE) {
496 BufferAvailable = TRUE;
497 }
498
499 // Update the loop counter
500 WaitForBuffer--;
501
502 } while ((WaitForBuffer > 0) && (BufferAvailable == FALSE));
503
504 // The buffer was not available for writing
505 if (WaitForBuffer == 0) {
506 Status = EFI_DEVICE_ERROR;
507 goto EXIT;
508 }
509
510 // From now on we work in 32-bit words
511 BufferSizeInWords = BufferSizeInBytes / (UINTN)4;
512
513 // Write the word count, which is (buffer_size_in_words - 1),
514 // because word count 0 means one word.
515 SEND_NOR_COMMAND(TargetAddress, 0, (BufferSizeInWords - 1));
516
517 // Write the data to the NOR Flash, advancing each address by 4 bytes
518 for(Count=0; Count < BufferSizeInWords; Count++, Data++, Buffer++) {
519 MmioWrite32 ((UINTN)Data, *Buffer);
520 }
521
522 // Issue the Buffered Program Confirm command, to start the programming operation
523 SEND_NOR_COMMAND (Instance->DeviceBaseAddress, 0, P30_CMD_BUFFERED_PROGRAM_CONFIRM);
524
525 // Wait for the write to complete and then check for any errors; i.e. check the Status Register
526 do {
527 StatusRegister = NorFlashReadStatusRegister (Instance, TargetAddress);
528 // The chip is busy while the WRITE bit is not asserted
529 } while ((StatusRegister & P30_SR_BIT_WRITE) != P30_SR_BIT_WRITE);
530
531
532 // Perform a full status check:
533 // Mask the relevant bits of Status Register.
534 // Everything should be zero, if not, we have a problem
535
536 Status = EFI_SUCCESS;
537
538 if (StatusRegister & P30_SR_BIT_VPP) {
539 DEBUG((EFI_D_ERROR,"NorFlashWriteBuffer(TargetAddress:0x%X): VPP Range Error\n", TargetAddress));
540 Status = EFI_DEVICE_ERROR;
541 }
542
543 if (StatusRegister & P30_SR_BIT_PROGRAM) {
544 DEBUG((EFI_D_ERROR,"NorFlashWriteBuffer(TargetAddress:0x%X): Program Error\n", TargetAddress));
545 Status = EFI_DEVICE_ERROR;
546 }
547
548 if (StatusRegister & P30_SR_BIT_BLOCK_LOCKED) {
549 DEBUG((EFI_D_ERROR,"NorFlashWriteBuffer(TargetAddress:0x%X): Device Protect Error\n",TargetAddress));
550 Status = EFI_DEVICE_ERROR;
551 }
552
553 if (!EFI_ERROR(Status)) {
554 // Clear the Status Register
555 SEND_NOR_COMMAND (Instance->DeviceBaseAddress, 0, P30_CMD_CLEAR_STATUS_REGISTER);
556 }
557
558 EXIT:
559 // Put device back into Read Array mode
560 SEND_NOR_COMMAND (Instance->DeviceBaseAddress, 0, P30_CMD_READ_ARRAY);
561
562 return Status;
563 }
564
565 STATIC
566 EFI_STATUS
567 NorFlashWriteFullBlock (
568 IN NOR_FLASH_INSTANCE *Instance,
569 IN EFI_LBA Lba,
570 IN UINT32 *DataBuffer,
571 IN UINT32 BlockSizeInWords
572 )
573 {
574 EFI_STATUS Status;
575 UINTN WordAddress;
576 UINT32 WordIndex;
577 UINTN BufferIndex;
578 UINTN BlockAddress;
579 UINTN BuffersInBlock;
580 UINTN RemainingWords;
581 EFI_TPL OriginalTPL;
582 UINTN Cnt;
583
584 Status = EFI_SUCCESS;
585
586 // Get the physical address of the block
587 BlockAddress = GET_NOR_BLOCK_ADDRESS (Instance->RegionBaseAddress, Lba, BlockSizeInWords * 4);
588
589 // Start writing from the first address at the start of the block
590 WordAddress = BlockAddress;
591
592 if (!EfiAtRuntime ()) {
593 // Raise TPL to TPL_HIGH to stop anyone from interrupting us.
594 OriginalTPL = gBS->RaiseTPL (TPL_HIGH_LEVEL);
595 } else {
596 // This initialization is only to prevent the compiler to complain about the
597 // use of uninitialized variables
598 OriginalTPL = TPL_HIGH_LEVEL;
599 }
600
601 Status = NorFlashUnlockAndEraseSingleBlock (Instance, BlockAddress);
602 if (EFI_ERROR(Status)) {
603 DEBUG((EFI_D_ERROR, "WriteSingleBlock: ERROR - Failed to Unlock and Erase the single block at 0x%X\n", BlockAddress));
604 goto EXIT;
605 }
606
607 // To speed up the programming operation, NOR Flash is programmed using the Buffered Programming method.
608
609 // Check that the address starts at a 32-word boundary, i.e. last 7 bits must be zero
610 if ((WordAddress & BOUNDARY_OF_32_WORDS) == 0x00) {
611
612 // First, break the entire block into buffer-sized chunks.
613 BuffersInBlock = (UINTN)(BlockSizeInWords * 4) / P30_MAX_BUFFER_SIZE_IN_BYTES;
614
615 // Then feed each buffer chunk to the NOR Flash
616 // If a buffer does not contain any data, don't write it.
617 for(BufferIndex=0;
618 BufferIndex < BuffersInBlock;
619 BufferIndex++, WordAddress += P30_MAX_BUFFER_SIZE_IN_BYTES, DataBuffer += P30_MAX_BUFFER_SIZE_IN_WORDS
620 ) {
621 // Check the buffer to see if it contains any data (not set all 1s).
622 for (Cnt = 0; Cnt < P30_MAX_BUFFER_SIZE_IN_WORDS; Cnt++) {
623 if (~DataBuffer[Cnt] != 0 ) {
624 // Some data found, write the buffer.
625 Status = NorFlashWriteBuffer (Instance, WordAddress, P30_MAX_BUFFER_SIZE_IN_BYTES,
626 DataBuffer);
627 if (EFI_ERROR(Status)) {
628 goto EXIT;
629 }
630 break;
631 }
632 }
633 }
634
635 // Finally, finish off any remaining words that are less than the maximum size of the buffer
636 RemainingWords = BlockSizeInWords % P30_MAX_BUFFER_SIZE_IN_WORDS;
637
638 if(RemainingWords != 0) {
639 Status = NorFlashWriteBuffer (Instance, WordAddress, (RemainingWords * 4), DataBuffer);
640 if (EFI_ERROR(Status)) {
641 goto EXIT;
642 }
643 }
644
645 } else {
646 // For now, use the single word programming algorithm
647 // It is unlikely that the NOR Flash will exist in an address which falls within a 32 word boundary range,
648 // i.e. which ends in the range 0x......01 - 0x......7F.
649 for(WordIndex=0; WordIndex<BlockSizeInWords; WordIndex++, DataBuffer++, WordAddress = WordAddress + 4) {
650 Status = NorFlashWriteSingleWord (Instance, WordAddress, *DataBuffer);
651 if (EFI_ERROR(Status)) {
652 goto EXIT;
653 }
654 }
655 }
656
657 EXIT:
658 if (!EfiAtRuntime ()) {
659 // Interruptions can resume.
660 gBS->RestoreTPL (OriginalTPL);
661 }
662
663 if (EFI_ERROR(Status)) {
664 DEBUG((EFI_D_ERROR, "NOR FLASH Programming [WriteSingleBlock] failed at address 0x%08x. Exit Status = \"%r\".\n", WordAddress, Status));
665 }
666 return Status;
667 }
668
669
670 EFI_STATUS
671 NorFlashWriteBlocks (
672 IN NOR_FLASH_INSTANCE *Instance,
673 IN EFI_LBA Lba,
674 IN UINTN BufferSizeInBytes,
675 IN VOID *Buffer
676 )
677 {
678 UINT32 *pWriteBuffer;
679 EFI_STATUS Status;
680 EFI_LBA CurrentBlock;
681 UINT32 BlockSizeInWords;
682 UINT32 NumBlocks;
683 UINT32 BlockCount;
684
685 Status = EFI_SUCCESS;
686
687 // The buffer must be valid
688 if (Buffer == NULL) {
689 return EFI_INVALID_PARAMETER;
690 }
691
692 if(Instance->Media.ReadOnly == TRUE) {
693 return EFI_WRITE_PROTECTED;
694 }
695
696 // We must have some bytes to read
697 DEBUG((DEBUG_BLKIO, "NorFlashWriteBlocks: BufferSizeInBytes=0x%x\n", BufferSizeInBytes));
698 if(BufferSizeInBytes == 0) {
699 return EFI_BAD_BUFFER_SIZE;
700 }
701
702 // The size of the buffer must be a multiple of the block size
703 DEBUG((DEBUG_BLKIO, "NorFlashWriteBlocks: BlockSize in bytes =0x%x\n", Instance->Media.BlockSize));
704 if ((BufferSizeInBytes % Instance->Media.BlockSize) != 0) {
705 return EFI_BAD_BUFFER_SIZE;
706 }
707
708 // All blocks must be within the device
709 NumBlocks = ((UINT32)BufferSizeInBytes) / Instance->Media.BlockSize ;
710
711 DEBUG((DEBUG_BLKIO, "NorFlashWriteBlocks: NumBlocks=%d, LastBlock=%ld, Lba=%ld.\n", NumBlocks, Instance->Media.LastBlock, Lba));
712
713 if ((Lba + NumBlocks) > (Instance->Media.LastBlock + 1)) {
714 DEBUG((EFI_D_ERROR, "NorFlashWriteBlocks: ERROR - Write will exceed last block.\n"));
715 return EFI_INVALID_PARAMETER;
716 }
717
718 BlockSizeInWords = Instance->Media.BlockSize / 4;
719
720 // Because the target *Buffer is a pointer to VOID, we must put all the data into a pointer
721 // to a proper data type, so use *ReadBuffer
722 pWriteBuffer = (UINT32 *)Buffer;
723
724 CurrentBlock = Lba;
725 for (BlockCount=0; BlockCount < NumBlocks; BlockCount++, CurrentBlock++, pWriteBuffer = pWriteBuffer + BlockSizeInWords) {
726
727 DEBUG((DEBUG_BLKIO, "NorFlashWriteBlocks: Writing block #%d\n", (UINTN)CurrentBlock));
728
729 Status = NorFlashWriteFullBlock (Instance, CurrentBlock, pWriteBuffer, BlockSizeInWords);
730
731 if (EFI_ERROR(Status)) {
732 break;
733 }
734 }
735
736 DEBUG((DEBUG_BLKIO, "NorFlashWriteBlocks: Exit Status = \"%r\".\n", Status));
737 return Status;
738 }
739
740 #define BOTH_ALIGNED(a, b, align) ((((UINTN)(a) | (UINTN)(b)) & ((align) - 1)) == 0)
741
742 /**
743 Copy Length bytes from Source to Destination, using aligned accesses only.
744 Note that this implementation uses memcpy() semantics rather then memmove()
745 semantics, i.e., SourceBuffer and DestinationBuffer should not overlap.
746
747 @param DestinationBuffer The target of the copy request.
748 @param SourceBuffer The place to copy from.
749 @param Length The number of bytes to copy.
750
751 @return Destination
752
753 **/
754 STATIC
755 VOID *
756 AlignedCopyMem (
757 OUT VOID *DestinationBuffer,
758 IN CONST VOID *SourceBuffer,
759 IN UINTN Length
760 )
761 {
762 UINT8 *Destination8;
763 CONST UINT8 *Source8;
764 UINT32 *Destination32;
765 CONST UINT32 *Source32;
766 UINT64 *Destination64;
767 CONST UINT64 *Source64;
768
769 if (BOTH_ALIGNED(DestinationBuffer, SourceBuffer, 8) && Length >= 8) {
770 Destination64 = DestinationBuffer;
771 Source64 = SourceBuffer;
772 while (Length >= 8) {
773 *Destination64++ = *Source64++;
774 Length -= 8;
775 }
776
777 Destination8 = (UINT8 *)Destination64;
778 Source8 = (CONST UINT8 *)Source64;
779 } else if (BOTH_ALIGNED(DestinationBuffer, SourceBuffer, 4) && Length >= 4) {
780 Destination32 = DestinationBuffer;
781 Source32 = SourceBuffer;
782 while (Length >= 4) {
783 *Destination32++ = *Source32++;
784 Length -= 4;
785 }
786
787 Destination8 = (UINT8 *)Destination32;
788 Source8 = (CONST UINT8 *)Source32;
789 } else {
790 Destination8 = DestinationBuffer;
791 Source8 = SourceBuffer;
792 }
793 while (Length-- != 0) {
794 *Destination8++ = *Source8++;
795 }
796 return DestinationBuffer;
797 }
798
799 EFI_STATUS
800 NorFlashReadBlocks (
801 IN NOR_FLASH_INSTANCE *Instance,
802 IN EFI_LBA Lba,
803 IN UINTN BufferSizeInBytes,
804 OUT VOID *Buffer
805 )
806 {
807 UINT32 NumBlocks;
808 UINTN StartAddress;
809
810 DEBUG((DEBUG_BLKIO, "NorFlashReadBlocks: BufferSize=0x%xB BlockSize=0x%xB LastBlock=%ld, Lba=%ld.\n",
811 BufferSizeInBytes, Instance->Media.BlockSize, Instance->Media.LastBlock, Lba));
812
813 // The buffer must be valid
814 if (Buffer == NULL) {
815 return EFI_INVALID_PARAMETER;
816 }
817
818 // Return if we have not any byte to read
819 if (BufferSizeInBytes == 0) {
820 return EFI_SUCCESS;
821 }
822
823 // The size of the buffer must be a multiple of the block size
824 if ((BufferSizeInBytes % Instance->Media.BlockSize) != 0) {
825 return EFI_BAD_BUFFER_SIZE;
826 }
827
828 // All blocks must be within the device
829 NumBlocks = ((UINT32)BufferSizeInBytes) / Instance->Media.BlockSize ;
830
831 if ((Lba + NumBlocks) > (Instance->Media.LastBlock + 1)) {
832 DEBUG((EFI_D_ERROR, "NorFlashReadBlocks: ERROR - Read will exceed last block\n"));
833 return EFI_INVALID_PARAMETER;
834 }
835
836 // Get the address to start reading from
837 StartAddress = GET_NOR_BLOCK_ADDRESS (Instance->RegionBaseAddress,
838 Lba,
839 Instance->Media.BlockSize
840 );
841
842 // Put the device into Read Array mode
843 SEND_NOR_COMMAND (Instance->DeviceBaseAddress, 0, P30_CMD_READ_ARRAY);
844
845 // Readout the data
846 AlignedCopyMem (Buffer, (VOID *)StartAddress, BufferSizeInBytes);
847
848 return EFI_SUCCESS;
849 }
850
851 EFI_STATUS
852 NorFlashRead (
853 IN NOR_FLASH_INSTANCE *Instance,
854 IN EFI_LBA Lba,
855 IN UINTN Offset,
856 IN UINTN BufferSizeInBytes,
857 OUT VOID *Buffer
858 )
859 {
860 UINTN StartAddress;
861
862 // The buffer must be valid
863 if (Buffer == NULL) {
864 return EFI_INVALID_PARAMETER;
865 }
866
867 // Return if we have not any byte to read
868 if (BufferSizeInBytes == 0) {
869 return EFI_SUCCESS;
870 }
871
872 if (((Lba * Instance->Media.BlockSize) + Offset + BufferSizeInBytes) > Instance->Size) {
873 DEBUG ((EFI_D_ERROR, "NorFlashRead: ERROR - Read will exceed device size.\n"));
874 return EFI_INVALID_PARAMETER;
875 }
876
877 // Get the address to start reading from
878 StartAddress = GET_NOR_BLOCK_ADDRESS (Instance->RegionBaseAddress,
879 Lba,
880 Instance->Media.BlockSize
881 );
882
883 // Put the device into Read Array mode
884 SEND_NOR_COMMAND (Instance->DeviceBaseAddress, 0, P30_CMD_READ_ARRAY);
885
886 // Readout the data
887 AlignedCopyMem (Buffer, (VOID *)(StartAddress + Offset), BufferSizeInBytes);
888
889 return EFI_SUCCESS;
890 }
891
892 /*
893 Write a full or portion of a block. It must not span block boundaries; that is,
894 Offset + *NumBytes <= Instance->Media.BlockSize.
895 */
896 EFI_STATUS
897 NorFlashWriteSingleBlock (
898 IN NOR_FLASH_INSTANCE *Instance,
899 IN EFI_LBA Lba,
900 IN UINTN Offset,
901 IN OUT UINTN *NumBytes,
902 IN UINT8 *Buffer
903 )
904 {
905 EFI_STATUS TempStatus;
906 UINT32 Tmp;
907 UINT32 TmpBuf;
908 UINT32 WordToWrite;
909 UINT32 Mask;
910 BOOLEAN DoErase;
911 UINTN BytesToWrite;
912 UINTN CurOffset;
913 UINTN WordAddr;
914 UINTN BlockSize;
915 UINTN BlockAddress;
916 UINTN PrevBlockAddress;
917
918 PrevBlockAddress = 0;
919
920 DEBUG ((DEBUG_BLKIO, "NorFlashWriteSingleBlock(Parameters: Lba=%ld, Offset=0x%x, *NumBytes=0x%x, Buffer @ 0x%08x)\n", Lba, Offset, *NumBytes, Buffer));
921
922 // Detect WriteDisabled state
923 if (Instance->Media.ReadOnly == TRUE) {
924 DEBUG ((EFI_D_ERROR, "NorFlashWriteSingleBlock: ERROR - Can not write: Device is in WriteDisabled state.\n"));
925 // It is in WriteDisabled state, return an error right away
926 return EFI_ACCESS_DENIED;
927 }
928
929 // Cache the block size to avoid de-referencing pointers all the time
930 BlockSize = Instance->Media.BlockSize;
931
932 // The write must not span block boundaries.
933 // We need to check each variable individually because adding two large values together overflows.
934 if ( ( Offset >= BlockSize ) ||
935 ( *NumBytes > BlockSize ) ||
936 ( (Offset + *NumBytes) > BlockSize ) ) {
937 DEBUG ((EFI_D_ERROR, "NorFlashWriteSingleBlock: ERROR - EFI_BAD_BUFFER_SIZE: (Offset=0x%x + NumBytes=0x%x) > BlockSize=0x%x\n", Offset, *NumBytes, BlockSize ));
938 return EFI_BAD_BUFFER_SIZE;
939 }
940
941 // We must have some bytes to write
942 if (*NumBytes == 0) {
943 DEBUG ((EFI_D_ERROR, "NorFlashWriteSingleBlock: ERROR - EFI_BAD_BUFFER_SIZE: (Offset=0x%x + NumBytes=0x%x) > BlockSize=0x%x\n", Offset, *NumBytes, BlockSize ));
944 return EFI_BAD_BUFFER_SIZE;
945 }
946
947 // Pick 128bytes as a good start for word operations as opposed to erasing the
948 // block and writing the data regardless if an erase is really needed.
949 // It looks like most individual NV variable writes are smaller than 128bytes.
950 if (*NumBytes <= 128) {
951 // Check to see if we need to erase before programming the data into NOR.
952 // If the destination bits are only changing from 1s to 0s we can just write.
953 // After a block is erased all bits in the block is set to 1.
954 // If any byte requires us to erase we just give up and rewrite all of it.
955 DoErase = FALSE;
956 BytesToWrite = *NumBytes;
957 CurOffset = Offset;
958
959 while (BytesToWrite > 0) {
960 // Read full word from NOR, splice as required. A word is the smallest
961 // unit we can write.
962 TempStatus = NorFlashRead (Instance, Lba, CurOffset & ~(0x3), sizeof(Tmp), &Tmp);
963 if (EFI_ERROR (TempStatus)) {
964 return EFI_DEVICE_ERROR;
965 }
966
967 // Physical address of word in NOR to write.
968 WordAddr = (CurOffset & ~(0x3)) + GET_NOR_BLOCK_ADDRESS (Instance->RegionBaseAddress,
969 Lba, BlockSize);
970 // The word of data that is to be written.
971 TmpBuf = *((UINT32*)(Buffer + (*NumBytes - BytesToWrite)));
972
973 // First do word aligned chunks.
974 if ((CurOffset & 0x3) == 0) {
975 if (BytesToWrite >= 4) {
976 // Is the destination still in 'erased' state?
977 if (~Tmp != 0) {
978 // Check to see if we are only changing bits to zero.
979 if ((Tmp ^ TmpBuf) & TmpBuf) {
980 DoErase = TRUE;
981 break;
982 }
983 }
984 // Write this word to NOR
985 WordToWrite = TmpBuf;
986 CurOffset += sizeof(TmpBuf);
987 BytesToWrite -= sizeof(TmpBuf);
988 } else {
989 // BytesToWrite < 4. Do small writes and left-overs
990 Mask = ~((~0) << (BytesToWrite * 8));
991 // Mask out the bytes we want.
992 TmpBuf &= Mask;
993 // Is the destination still in 'erased' state?
994 if ((Tmp & Mask) != Mask) {
995 // Check to see if we are only changing bits to zero.
996 if ((Tmp ^ TmpBuf) & TmpBuf) {
997 DoErase = TRUE;
998 break;
999 }
1000 }
1001 // Merge old and new data. Write merged word to NOR
1002 WordToWrite = (Tmp & ~Mask) | TmpBuf;
1003 CurOffset += BytesToWrite;
1004 BytesToWrite = 0;
1005 }
1006 } else {
1007 // Do multiple words, but starting unaligned.
1008 if (BytesToWrite > (4 - (CurOffset & 0x3))) {
1009 Mask = ((~0) << ((CurOffset & 0x3) * 8));
1010 // Mask out the bytes we want.
1011 TmpBuf &= Mask;
1012 // Is the destination still in 'erased' state?
1013 if ((Tmp & Mask) != Mask) {
1014 // Check to see if we are only changing bits to zero.
1015 if ((Tmp ^ TmpBuf) & TmpBuf) {
1016 DoErase = TRUE;
1017 break;
1018 }
1019 }
1020 // Merge old and new data. Write merged word to NOR
1021 WordToWrite = (Tmp & ~Mask) | TmpBuf;
1022 BytesToWrite -= (4 - (CurOffset & 0x3));
1023 CurOffset += (4 - (CurOffset & 0x3));
1024 } else {
1025 // Unaligned and fits in one word.
1026 Mask = (~((~0) << (BytesToWrite * 8))) << ((CurOffset & 0x3) * 8);
1027 // Mask out the bytes we want.
1028 TmpBuf = (TmpBuf << ((CurOffset & 0x3) * 8)) & Mask;
1029 // Is the destination still in 'erased' state?
1030 if ((Tmp & Mask) != Mask) {
1031 // Check to see if we are only changing bits to zero.
1032 if ((Tmp ^ TmpBuf) & TmpBuf) {
1033 DoErase = TRUE;
1034 break;
1035 }
1036 }
1037 // Merge old and new data. Write merged word to NOR
1038 WordToWrite = (Tmp & ~Mask) | TmpBuf;
1039 CurOffset += BytesToWrite;
1040 BytesToWrite = 0;
1041 }
1042 }
1043
1044 //
1045 // Write the word to NOR.
1046 //
1047
1048 BlockAddress = GET_NOR_BLOCK_ADDRESS (Instance->RegionBaseAddress, Lba, BlockSize);
1049 if (BlockAddress != PrevBlockAddress) {
1050 TempStatus = NorFlashUnlockSingleBlockIfNecessary (Instance, BlockAddress);
1051 if (EFI_ERROR (TempStatus)) {
1052 return EFI_DEVICE_ERROR;
1053 }
1054 PrevBlockAddress = BlockAddress;
1055 }
1056 TempStatus = NorFlashWriteSingleWord (Instance, WordAddr, WordToWrite);
1057 if (EFI_ERROR (TempStatus)) {
1058 return EFI_DEVICE_ERROR;
1059 }
1060 }
1061 // Exit if we got here and could write all the data. Otherwise do the
1062 // Erase-Write cycle.
1063 if (!DoErase) {
1064 return EFI_SUCCESS;
1065 }
1066 }
1067
1068 // Check we did get some memory. Buffer is BlockSize.
1069 if (Instance->ShadowBuffer == NULL) {
1070 DEBUG ((EFI_D_ERROR, "FvbWrite: ERROR - Buffer not ready\n"));
1071 return EFI_DEVICE_ERROR;
1072 }
1073
1074 // Read NOR Flash data into shadow buffer
1075 TempStatus = NorFlashReadBlocks (Instance, Lba, BlockSize, Instance->ShadowBuffer);
1076 if (EFI_ERROR (TempStatus)) {
1077 // Return one of the pre-approved error statuses
1078 return EFI_DEVICE_ERROR;
1079 }
1080
1081 // Put the data at the appropriate location inside the buffer area
1082 CopyMem ((VOID*)((UINTN)Instance->ShadowBuffer + Offset), Buffer, *NumBytes);
1083
1084 // Write the modified buffer back to the NorFlash
1085 TempStatus = NorFlashWriteBlocks (Instance, Lba, BlockSize, Instance->ShadowBuffer);
1086 if (EFI_ERROR (TempStatus)) {
1087 // Return one of the pre-approved error statuses
1088 return EFI_DEVICE_ERROR;
1089 }
1090
1091 return EFI_SUCCESS;
1092 }
1093
1094 /*
1095 Although DiskIoDxe will automatically install the DiskIO protocol whenever
1096 we install the BlockIO protocol, its implementation is sub-optimal as it reads
1097 and writes entire blocks using the BlockIO protocol. In fact we can access
1098 NOR flash with a finer granularity than that, so we can improve performance
1099 by directly producing the DiskIO protocol.
1100 */
1101
1102 /**
1103 Read BufferSize bytes from Offset into Buffer.
1104
1105 @param This Protocol instance pointer.
1106 @param MediaId Id of the media, changes every time the media is replaced.
1107 @param Offset The starting byte offset to read from
1108 @param BufferSize Size of Buffer
1109 @param Buffer Buffer containing read data
1110
1111 @retval EFI_SUCCESS The data was read correctly from the device.
1112 @retval EFI_DEVICE_ERROR The device reported an error while performing the read.
1113 @retval EFI_NO_MEDIA There is no media in the device.
1114 @retval EFI_MEDIA_CHANGED The MediaId does not match the current device.
1115 @retval EFI_INVALID_PARAMETER The read request contains device addresses that are not
1116 valid for the device.
1117
1118 **/
1119 EFI_STATUS
1120 EFIAPI
1121 NorFlashDiskIoReadDisk (
1122 IN EFI_DISK_IO_PROTOCOL *This,
1123 IN UINT32 MediaId,
1124 IN UINT64 DiskOffset,
1125 IN UINTN BufferSize,
1126 OUT VOID *Buffer
1127 )
1128 {
1129 NOR_FLASH_INSTANCE *Instance;
1130 UINT32 BlockSize;
1131 UINT32 BlockOffset;
1132 EFI_LBA Lba;
1133
1134 Instance = INSTANCE_FROM_DISKIO_THIS(This);
1135
1136 if (MediaId != Instance->Media.MediaId) {
1137 return EFI_MEDIA_CHANGED;
1138 }
1139
1140 BlockSize = Instance->Media.BlockSize;
1141 Lba = (EFI_LBA) DivU64x32Remainder (DiskOffset, BlockSize, &BlockOffset);
1142
1143 return NorFlashRead (Instance, Lba, BlockOffset, BufferSize, Buffer);
1144 }
1145
1146 /**
1147 Writes a specified number of bytes to a device.
1148
1149 @param This Indicates a pointer to the calling context.
1150 @param MediaId ID of the medium to be written.
1151 @param Offset The starting byte offset on the logical block I/O device to write.
1152 @param BufferSize The size in bytes of Buffer. The number of bytes to write to the device.
1153 @param Buffer A pointer to the buffer containing the data to be written.
1154
1155 @retval EFI_SUCCESS The data was written correctly to the device.
1156 @retval EFI_WRITE_PROTECTED The device can not be written to.
1157 @retval EFI_DEVICE_ERROR The device reported an error while performing the write.
1158 @retval EFI_NO_MEDIA There is no media in the device.
1159 @retval EFI_MEDIA_CHANGED The MediaId does not match the current device.
1160 @retval EFI_INVALID_PARAMETER The write request contains device addresses that are not
1161 valid for the device.
1162
1163 **/
1164 EFI_STATUS
1165 EFIAPI
1166 NorFlashDiskIoWriteDisk (
1167 IN EFI_DISK_IO_PROTOCOL *This,
1168 IN UINT32 MediaId,
1169 IN UINT64 DiskOffset,
1170 IN UINTN BufferSize,
1171 IN VOID *Buffer
1172 )
1173 {
1174 NOR_FLASH_INSTANCE *Instance;
1175 UINT32 BlockSize;
1176 UINT32 BlockOffset;
1177 EFI_LBA Lba;
1178 UINTN RemainingBytes;
1179 UINTN WriteSize;
1180 EFI_STATUS Status;
1181
1182 Instance = INSTANCE_FROM_DISKIO_THIS(This);
1183
1184 if (MediaId != Instance->Media.MediaId) {
1185 return EFI_MEDIA_CHANGED;
1186 }
1187
1188 BlockSize = Instance->Media.BlockSize;
1189 Lba = (EFI_LBA) DivU64x32Remainder (DiskOffset, BlockSize, &BlockOffset);
1190
1191 RemainingBytes = BufferSize;
1192
1193 // Write either all the remaining bytes, or the number of bytes that bring
1194 // us up to a block boundary, whichever is less.
1195 // (DiskOffset | (BlockSize - 1)) + 1) rounds DiskOffset up to the next
1196 // block boundary (even if it is already on one).
1197 WriteSize = MIN (RemainingBytes, ((DiskOffset | (BlockSize - 1)) + 1) - DiskOffset);
1198
1199 do {
1200 if (WriteSize == BlockSize) {
1201 // Write a full block
1202 Status = NorFlashWriteFullBlock (Instance, Lba, Buffer, BlockSize / sizeof (UINT32));
1203 } else {
1204 // Write a partial block
1205 Status = NorFlashWriteSingleBlock (Instance, Lba, BlockOffset, &WriteSize, Buffer);
1206 }
1207 if (EFI_ERROR (Status)) {
1208 return Status;
1209 }
1210 // Now continue writing either all the remaining bytes or single blocks.
1211 RemainingBytes -= WriteSize;
1212 Buffer = (UINT8 *) Buffer + WriteSize;
1213 Lba++;
1214 BlockOffset = 0;
1215 WriteSize = MIN (RemainingBytes, BlockSize);
1216 } while (RemainingBytes);
1217
1218 return Status;
1219 }
1220
1221 EFI_STATUS
1222 NorFlashReset (
1223 IN NOR_FLASH_INSTANCE *Instance
1224 )
1225 {
1226 // As there is no specific RESET to perform, ensure that the devices is in the default Read Array mode
1227 SEND_NOR_COMMAND (Instance->DeviceBaseAddress, 0, P30_CMD_READ_ARRAY);
1228 return EFI_SUCCESS;
1229 }
1230
1231 /**
1232 Fixup internal data so that EFI can be call in virtual mode.
1233 Call the passed in Child Notify event and convert any pointers in
1234 lib to virtual mode.
1235
1236 @param[in] Event The Event that is being processed
1237 @param[in] Context Event Context
1238 **/
1239 VOID
1240 EFIAPI
1241 NorFlashVirtualNotifyEvent (
1242 IN EFI_EVENT Event,
1243 IN VOID *Context
1244 )
1245 {
1246 UINTN Index;
1247
1248 for (Index = 0; Index < mNorFlashDeviceCount; Index++) {
1249 EfiConvertPointer (0x0, (VOID**)&mNorFlashInstances[Index]->DeviceBaseAddress);
1250 EfiConvertPointer (0x0, (VOID**)&mNorFlashInstances[Index]->RegionBaseAddress);
1251
1252 // Convert BlockIo protocol
1253 EfiConvertPointer (0x0, (VOID**)&mNorFlashInstances[Index]->BlockIoProtocol.FlushBlocks);
1254 EfiConvertPointer (0x0, (VOID**)&mNorFlashInstances[Index]->BlockIoProtocol.ReadBlocks);
1255 EfiConvertPointer (0x0, (VOID**)&mNorFlashInstances[Index]->BlockIoProtocol.Reset);
1256 EfiConvertPointer (0x0, (VOID**)&mNorFlashInstances[Index]->BlockIoProtocol.WriteBlocks);
1257
1258 // Convert Fvb
1259 EfiConvertPointer (0x0, (VOID**)&mNorFlashInstances[Index]->FvbProtocol.EraseBlocks);
1260 EfiConvertPointer (0x0, (VOID**)&mNorFlashInstances[Index]->FvbProtocol.GetAttributes);
1261 EfiConvertPointer (0x0, (VOID**)&mNorFlashInstances[Index]->FvbProtocol.GetBlockSize);
1262 EfiConvertPointer (0x0, (VOID**)&mNorFlashInstances[Index]->FvbProtocol.GetPhysicalAddress);
1263 EfiConvertPointer (0x0, (VOID**)&mNorFlashInstances[Index]->FvbProtocol.Read);
1264 EfiConvertPointer (0x0, (VOID**)&mNorFlashInstances[Index]->FvbProtocol.SetAttributes);
1265 EfiConvertPointer (0x0, (VOID**)&mNorFlashInstances[Index]->FvbProtocol.Write);
1266
1267 if (mNorFlashInstances[Index]->ShadowBuffer != NULL) {
1268 EfiConvertPointer (0x0, (VOID**)&mNorFlashInstances[Index]->ShadowBuffer);
1269 }
1270 }
1271
1272 return;
1273 }
1274
1275 EFI_STATUS
1276 EFIAPI
1277 NorFlashInitialise (
1278 IN EFI_HANDLE ImageHandle,
1279 IN EFI_SYSTEM_TABLE *SystemTable
1280 )
1281 {
1282 EFI_STATUS Status;
1283 UINT32 Index;
1284 NOR_FLASH_DESCRIPTION* NorFlashDevices;
1285 BOOLEAN ContainVariableStorage;
1286
1287 Status = NorFlashPlatformInitialization ();
1288 if (EFI_ERROR(Status)) {
1289 DEBUG((EFI_D_ERROR,"NorFlashInitialise: Fail to initialize Nor Flash devices\n"));
1290 return Status;
1291 }
1292
1293 Status = NorFlashPlatformGetDevices (&NorFlashDevices, &mNorFlashDeviceCount);
1294 if (EFI_ERROR(Status)) {
1295 DEBUG((EFI_D_ERROR,"NorFlashInitialise: Fail to get Nor Flash devices\n"));
1296 return Status;
1297 }
1298
1299 mNorFlashInstances = AllocateRuntimePool (sizeof(NOR_FLASH_INSTANCE*) * mNorFlashDeviceCount);
1300
1301 for (Index = 0; Index < mNorFlashDeviceCount; Index++) {
1302 // Check if this NOR Flash device contain the variable storage region
1303 ContainVariableStorage =
1304 (NorFlashDevices[Index].RegionBaseAddress <= PcdGet32 (PcdFlashNvStorageVariableBase)) &&
1305 (PcdGet32 (PcdFlashNvStorageVariableBase) + PcdGet32 (PcdFlashNvStorageVariableSize) <= NorFlashDevices[Index].RegionBaseAddress + NorFlashDevices[Index].Size);
1306
1307 Status = NorFlashCreateInstance (
1308 NorFlashDevices[Index].DeviceBaseAddress,
1309 NorFlashDevices[Index].RegionBaseAddress,
1310 NorFlashDevices[Index].Size,
1311 Index,
1312 NorFlashDevices[Index].BlockSize,
1313 ContainVariableStorage,
1314 &mNorFlashInstances[Index]
1315 );
1316 if (EFI_ERROR(Status)) {
1317 DEBUG((EFI_D_ERROR,"NorFlashInitialise: Fail to create instance for NorFlash[%d]\n",Index));
1318 }
1319 }
1320
1321 //
1322 // Register for the virtual address change event
1323 //
1324 Status = gBS->CreateEventEx (
1325 EVT_NOTIFY_SIGNAL,
1326 TPL_NOTIFY,
1327 NorFlashVirtualNotifyEvent,
1328 NULL,
1329 &gEfiEventVirtualAddressChangeGuid,
1330 &mNorFlashVirtualAddrChangeEvent
1331 );
1332 ASSERT_EFI_ERROR (Status);
1333
1334 return Status;
1335 }