-
Notifications
You must be signed in to change notification settings - Fork 39
carloscn/doclib
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
. ├── README ├── book │ ├── arm │ │ ├── ARM体系结构与编程(高清带书签) 杜春雷.big.pdf │ │ ├── Computer Systems A Programmers Perspective (3rd).pdf │ │ ├── Computer-Architecture-Computer Organization And Design 5th Edition2014.big.pdf │ │ ├── Embedded Systems - ARM Programming and Optimization.pdf │ │ ├── Relaxed virtual memory in Armv8-A (extended version).pdf │ │ └── 计算机组成与设计:硬件 软件接口.big.pdf │ ├── c │ │ └── 高质量C编程指南.pdf │ ├── compile │ │ └── 程序员的自我修养--链接、装载与库.big.pdf │ ├── embedded │ │ ├── 深入理解BOOTLOADER.big.pdf │ │ └── 《计算机组成原理》唐朔飞.pdf │ ├── linux │ │ ├── EMBEDDED LINUX SYSTEM DESIGN AND DEVELOPMENT.pdf │ │ ├── Essential Linux Device Drivers.pdf │ │ ├── LINUX内核源代码情景分析(上).big.pdf │ │ ├── LINUX内核源代码情景分析(下).big.pdf │ │ ├── Linux Device Drivers.pdf │ │ ├── Linux内核完全注释.pdf │ │ ├── Operating System Concepts (9th Ed) - Gagne, Silberschatz, and Galvin.pdf │ │ └── 嵌入式C语言自我修养——从芯片、编译器到操作系统.big.pdf │ └── special │ ├── (mandatory)C语言终极面试宝典.pdf │ ├── (mandatory)操作系统.big.pdf │ ├── (mandatory)嵌入式软件开发笔试面试指南.pdf │ ├── (optional)Http核心总结.pdf │ └── 王道程序员面试宝典_s13441339-王道论坛 组编.big.pdf ├── man │ ├── arm │ │ ├── arm9 │ │ │ └── DDI0201D_arm946es_r1p1_trm.pdf │ │ ├── armv7 │ │ │ ├── ARM Developer Suite Developer Guide.pdf │ │ │ ├── ARMv7-A programmer guide.pdf │ │ │ └── armv7ar_architecture_reference_manual.pdf │ │ ├── armv8 │ │ │ ├── Armv8-A-Instruction-Set-Architecture.pdf │ │ │ ├── DEN0024A_v8_architecture_PG.pdf │ │ │ ├── GICv3_Software_Overview_Official_Release_B.pdf │ │ │ ├── GNU汇编器as_v2.34.pdf │ │ │ ├── GNU链接器ld_v2.34.pdf │ │ │ ├── Learn_the_Architecture_Memory_Management_101811_0101_00_en.pdf │ │ │ ├── Platform Security Boot Guide - Arm.pdf │ │ │ ├── Platform Security Guide for A-Profile.pdf │ │ │ ├── arm64_quick_reference.pdf │ │ │ ├── arm_v8_architecture_programmer_guide.pdf │ │ │ ├── armasm_user_guide.pdf │ │ │ ├── armv8-a_memory_systems_100941_0101_en.pdf │ │ │ ├── armv8_a_address_translation.pdf │ │ │ ├── armv8_arm_v8.6.big.pdf │ │ │ ├── armv8m_architecture_memory_protection_unit_100699_0100_00_en.pdf │ │ │ ├── baremetal_boot_code_for_ARMv8_A_processors.pdf │ │ │ ├── corelink_mmu500_memory_management_unit_r2p4_technical_reference_manual_DDI0517F_en (1).pdf │ │ │ ├── cortex_a72_mpcore_trm_100095_0003_06_en.pdf │ │ │ ├── gic400_r0p1_trm.pdf │ │ │ └── learn_the_architecture_-_trustzone_for_aarch64_102418_0101_00_en.pdf │ │ ├── armv9 │ │ │ ├── ARMv9指令手册.pdf │ │ │ └── SysReg_xml_A_Profile-2022-03.pdf │ │ ├── cortex-m │ │ │ └── system-on-chip-design-cortex-m.pdf │ │ ├── standard │ │ │ ├── GPD_TEE_SE_API_v1.1.1_PublicRelease_CC.pdf │ │ │ ├── Procedure Call Standard for the Arm® 64-bit Architecture (AArch64).pdf │ │ │ └── SMC CALLING CONVENTION System Software on ARM Platforms.pdf │ │ └── ti │ │ ├── AM335x Sitara Processors datasheet.pdf │ │ ├── AM335x and AMIC110 Sitara Processors TRM.big.pdf │ │ └── Secure Boot on embedded Sitara processors (Rev. A).pdf │ └── embedded │ ├── boardcom │ │ ├── 2711_1p0- 树莓派4B 芯片手册.pdf │ │ └── bcm2711-peripherals-树莓派4b芯片手册-v1.3.pdf │ ├── nxp │ │ └── i.MX 8QuadMax Applications Processor Reference Manual.big.pdf │ └── st │ └── stm32 │ └── cd00225773-stm32f205xx-stm32f207xx-stm32f215xx-and-stm32f217xx-advanced-armbased-32bit-mcus-stmicroelectronics.pdf ├── onekey.bat ├── onekey.sh ├── paper │ └── software │ ├── barrier │ │ └── 存储一致性模型研究.pdf │ ├── boot │ │ ├── ARM-Linux嵌入式系...t_Loader分析与设计_王世阳.pdf │ │ ├── 基于ARM的BootLoader系统加载设计_滕军.pdf │ │ └── 嵌入式BootLoader的设计与实现_龙帆.pdf │ ├── cache │ │ ├── Are Coherence Protocol States Vulnerable to Information Leakage.pdf │ │ ├── Caches in DSP processors.pdf │ │ ├── Empirical_Evaluation_of_the_cray-t3d_a_compiler_perspecitve.pdf │ │ └── teaching_the_cache_memory_coherence_with_the_MESI_protocal_simulation.pdf │ ├── mmu │ │ ├── ARM的虚拟内存管理技术的研究_李国银.caj │ │ ├── CPU-GPU异构架构下共享内存管理策略的研究_汪梦萱.caj │ │ ├── Hash, Don’t Cache (the Page Table).pdf │ │ ├── 基于FPGA的虚拟内存管理模块设计_韩苏.caj │ │ ├── 红黑树在Linux虚拟内存区域管理中的应用_刘勇.caj │ │ ├── 内存管理单元MMU虚拟化代价研究_王华斌.pdf │ │ ├── 嵌入式软件虚拟内存管理平台的实现研究_王晓航.caj │ │ ├── 嵌入式软件虚拟内存管理平台的实现研究_王晓航.pdf │ │ ├── 基于多核处理器的任务调度与内存管理研究_杨国庆.caj │ │ └── 新型异构多核处理器主核操作系统设计与实现_张震.caj │ ├── stack │ │ ├── FreeBSD的地址空间随机化_罗宇翔.pdf │ │ ├── Linux平台上针对栈溢出攻击的防护技术研究_王宇.caj │ │ ├── 基于Linux地址空间随机化的缓冲区溢出研究_俞晓鸿.pdf │ │ ├── 基于多态Canary的栈保护技术研究_王之隆.caj │ │ └── 地址空间随机化技术研究_戈戟.pdf │ └── trustzone │ ├── Demystifying ARM TrustZone TEE Client API using OP-TEE.pdf │ ├── 基于TrustZone技术...nux安全模块隔离方法研究_岳晨旭.caj │ ├── 基于TrustZone的可信操作系统设计与实现_张文.caj │ ├── 基于Trustzone的安...安全启动与数据加密方法研究_高文.caj │ ├── 应用于ARM_TrustZ...高可信运行环境的设计与实现_仇伟民.caj │ ├── 一种基于TrustZone...构的引导时可信度量机制设计_尹超.pdf │ └── 基于非对称多处理器的可信域安全架构研究_陈亮强.caj ├── personal │ └── cpu_timeline.xlsx └── ppt ├── arm │ ├── 07-multiprocessors-MF.pdf │ ├── 6Bmemory.pdf │ ├── ARM_CPUs_lecture_2021_10_04.ppt │ ├── Cache coherence in shared-memory architectures(MESI).pdf │ ├── Cache_and_data_coherency_V02.pptx │ ├── Computer Architecture - cache-tlb-mmu ppt.pdf │ ├── LPC_vDSO.pdf │ ├── Memory Hierarchy.pptx │ ├── Modern Memory Systems Lecture-7 (Caches).pdf │ ├── Walker-08.pdf │ ├── dokumen.tips_lcu14-500-arm-trusted-firmware.pdf │ ├── dokumen.tips_trusted-firmware-m-amazon-web-firmware-storage-server-runtime-firmware-local-storage.pdf │ ├── dokumen.tips_xpds16-keeping-coherency-on-arm-julien-grall-arm.pdf │ ├── optee_cryptograph_elc2021.pdf │ ├── tkos_secure_boot_lecture_20190605.pdf │ └── ~$Cache_and_data_coherency_V02.pptx └── kernel └── decompressed-vmlinux-linux-kernel-initialization-from-page-table-configuration-perspective.pdf 33 directories, 111 files
About
my doclib
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published