1. a495774 Remove svn:executable on *.c, *.h, *.asm, *.S, *.inf and *.asl* by jljusten · 15 years ago
  2. 4b9fa12 Move ARMv5 (ARM9) barrier instructions into assembler files by andrewfish · 15 years ago
  3. 026c3d3 Updated Hardware Interrupt protocol to add an EOI member. Added ARM Data/Instruction syncronization barrier support to the ARM lib. by andrewfish · 15 years ago
  4. 37b91c4 Clean up some externs by andrewfish · 15 years ago
  5. fea3a3a Fix typo by andrewfish · 15 years ago
  6. 98bc0c8 Sync gcc with armasm. update some memory barriers. by andrewfish · 15 years ago
  7. 1a27eb4 Hack in some DSB, ISB syncronization primatives. Need to do it a little cleaner. by andrewfish · 15 years ago
  8. 5dea9bd Change Cortex-A8 references to ARMv7. Cortex-A8 is a branded implementation of the ARMv7 processor architecture. by andrewfish · 15 years ago
  9. 65e2744 Fix bug in UncachedMemoryAllocationLib, Assembler, make DefaultExceptionHandler lib inc the PC past the faulting instruction to aid debug. Update LR in Exception hanlder, so return address can get updated properly. by andrewfish · 15 years ago
  10. d629c28 After the ASSERT adjust the PC so you skip the faulting instruction. Lets you walk out of the exception handler and keeprunning code. This way you can walk out of the call stack. by andrewfish · 15 years ago
  11. 883b666 Clean up UncachedMemoryAllocationLib to use CPU AP. by andrewfish · 15 years ago
  12. 85e385f Added CWD to EfiFileLib. Fix some X64 warnings. by andrewfish · 15 years ago
  13. f3198cb Update input of disasmembler to support IfThen construct. Add prototype dos script to build BeagleBoard. by andrewfish · 15 years ago
  14. fef5272 More disasm work. by andrewfish · 15 years ago
  15. c5c902d More updated by andrewfish · 15 years ago
  16. c639c2d Fix GCC warnings by andrewfish · 15 years ago
  17. eeb7892 Cleanup to match MdePkg cleanups. More progress on ARM disassembler. by andrewfish · 15 years ago
  18. b32fecd Added Thumb2 loads and stores to Disassmebler by andrewfish · 15 years ago
  19. c7ed09e Fix thumb2 Branch instruction in disassembler by andrewfish · 15 years ago
  20. 7c34497 More progress on the disassebler lib by andrewfish · 15 years ago
  21. f9f937d Move ARM disassembler into a library and out of the exception handler. Add a hook to call the lib from a platform specific EBL command on BeagleBoard. by andrewfish · 15 years ago
  22. 097bd46 Move ARM disassembler into a library. by andrewfish · 15 years ago
  23. 7e1ae73 Remove out of date comment and fix gcc warning. by andrewfish · 15 years ago
  24. d5b0f23 Update execption handler to print out DFSR & IFSR info. by andrewfish · 15 years ago
  25. 6f72e28 Added a library for the default exception handler and started to add a dissasembler. Cleaned up some issues with BlockIo in BeagleBoard and add some extra info on Ebl devices command to show if a blk device has a file system on it. by andrewfish · 15 years ago
  26. 920cb92 Fix RVCT compiler warnings, and a bug in the GdbStub by AJFISH · 15 years ago
  27. d4f167a Missed a fix in the Cpu Driver. Added some more debug for Execption handling and clean up some uncached stuff. by AJFISH · 15 years ago
  28. 79b9790 Minor update to move array into function to dead strip better on release builds by AJFISH · 15 years ago
  29. 235605b Updated ARM Exception handler to print out text values for CPSR register by AJFISH · 15 years ago
  30. 225290e Added new PeCoffGetEntryPoint lib function to get size of PE/COFF header. This is needed for debug prints with PE/COFF images that started as ELF or Mach-O. Moved and debugged ARM semihosting lib for RVD that prints out the debugger symbol load commands in a window on the debugger. Trying to write a script file, but that crashes RVD. Added debug print to BeagleBoard Sec that prints out RVD debugger command to load symbols for the Sec. Synced the rest of the code. by AJFISH · 15 years ago
  31. 62e797a Fix GCC build bug and add a debug library to dump load and unload commands into the RVI debugger window. by AJFISH · 15 years ago
  32. f659880 Added support for L2 (4K) page tables and made the CPU driver change cachability attributes on request. Also got the DebugUncache infrastructure working for the first time. Looks like it works for the simple case. Checking in so we can get more eyes looking at the code. by AJFISH · 15 years ago
  33. 965626c Adding a Debug version of the UncachedMemoryAllocationLib that will make the PCI DMA address not match the CPU C address for a DMA buffer. The PCI DMA address will generate a page fault if accessed from the CPU. This should make it easy to debug EFI DMA code to make sure it is following the correct rules for which pointer to use. by AJFISH · 15 years ago
  34. aeb6153 Working on adding paging to the CpuDxe driver so it can update cachablity. At this point it is coded, but untested. So this file is not yet hooked into the driver. by AJFISH · 15 years ago
  35. 70575d1 One more header fix by AJFISH · 15 years ago
  36. 8bbf0f0 Fix some more headers. Add some missing library classes in .dec file and update .dsc to default to cortex ARM cpu type. by AJFISH · 15 years ago
  37. f45ce9d Updating ArmLib.h to add functions needed to turn on paging in CpuDxe. Also added a protocol to enable debugging of DMA issues. DxeCpu driver will produce and the UncachedMemoryAllocationLib can consume. by AJFISH · 15 years ago
  38. c2b5ca8 Need to add some extra functions to the libraries to support paging in the CpuDxe driver (still working on that). Also looks like some of the .INF file hade the token used to search replace the copyright headers and not the headers so I updated that. by AJFISH · 15 years ago
  39. 06dc4de Add some missing 64-bit math functions for gcc by AJFISH · 15 years ago
  40. d213712 Fixed a bug in the HardwareInterrupt handler that would blow the stack if you reenable interrupts in the TimerHandler. It should be noted this happens as the TimerHandler raises and restores TPL for the timer tick used by the DXE Core. There was some work around code in the CPU driver to prevent interrupts from being enabled while handling exceptions. This has been removed. by AJFISH · 15 years ago
  41. bbd8fad Fix stray charcter in comment. by AJFISH · 15 years ago
  42. 8a4d81e Adding support for a single stack, GCC check in will follow by AJFISH · 15 years ago
  43. 8595f12 Working on having a single stack for all modes. This code currently has an issue nesting interrupts in a big honking loop, but seems to save and restore context correctly. by AJFISH · 15 years ago
  44. 2ef2b01 Adding support for BeagleBoard. by AJFISH · 15 years ago