A preliminary understanding of ARM_7075

Publisher:脑电风暴Latest update time:2016-05-04 Source: eefocusKeywords:ARM Reading articles on mobile phones Scan QR code
Read articles on your mobile phone anytime, anywhere
ARM is the CPU, SDRAM is the memory, and NAND Flash and NOR Flash are the hard disk. Take Samsung 2440 as an example. NAND Flash is cheap and has a large capacity, so the bootleader can be placed in the first 4Kbytes of NAND Flash, and then ARM copies the code from the last 4Kbytes to the inside of 2440 for execution. These codes are to copy the operating system burned in NAND Flash to SDRAM for running. ARM Difficulty 1: Few register configurations, complex address space. ARM Difficulty 2: Naked running is the same as MCU, but the operating system is more difficult to run on ARM9. Linux, wince, uclinux, ucosii, Vxworks and other OS can be run. Bootleader is the top layer, which is similar to the computer's bios. After the bootleader completes the address mapping and hardware initialization, it will pass the power to the OS. If there is no OS, it is naked running. Launch the application on os . Just like a computer, bootleader includes vivi, uboot, etc. Uboot is commonly used, ads1.2 is used for compilation, and axd is used for debugging. The development environment of wince and linux is different, ucosii can also be started and written with ads1.2.

I listened quietly, unable to give this confused man a satisfactory answer. We walked out of the coffee shop, and when crossing the road, the man saw an opportunity and quickly ran to the other side of the traffic, waved to me and said, "Hurry up." I smiled helplessly.

Do simple things simply, do complex things simply, do simple things repeatedly, etc. These are all ways to ensure that your words will be effective.

When you first fall in love, you will be trapped by love. Women are emotional, and their behavior is often influenced by their feelings, especially girls who are just beginning to fall in love. Once they fall into the quagmire of emotions, they are often unable to extricate themselves. Therefore, when a girl faces the person she loves or is passionate about, the way she expresses her emotions can often make the other person clearly feel the strong and unrestrained love and passion.

Perhaps because he hadn't received a reply, he finally couldn't help but come to me, holding a thick stack of white paper, and said, "This time you don't have to use the excuse of not replying because you don't have manuscript paper."

Don't go shopping with men just because you want free porters

卼師垞http://blog.sina.com.cn/u/1769670432

Happiness is sitting in front of the computer at night wearing floral pajamas and writing articles, while my father is reading the newspaper in the living room with a cup of brewed Biluochun tea in front of him.

Frustration in love is also a kind of frustration, which can temper one's will and strengthen oneself.

Don't just please others

Everyone likes to hear "I love you". Although it is only three short words, it is very powerful. Love fills people with courage and hope.

Drastically reduces memory. This means that all those all-nighters in college are much less effective than you think.

Our expressions, postures, tones, and words when we quarrel are all seen and remembered by our children.

Keywords:ARM Reference address:A preliminary understanding of ARM_7075

Previous article:ARM series processor architecture
Next article:Detailed comments of ARM's 44binit.s file

Recommended ReadingLatest update time:2024-11-16 22:02

USB Thermocouple Temperature Measurement System Circuit Diagram Using ARM Cortex-M3
  Circuit Function and Advantages   This circuit shows how to use the ADuCM360/ADuCM361 precision analog microcontroller in a precision thermocouple temperature monitoring application. The ADuCM360/ADuCM361 integrates dual 24-bit Σ-Δ analog-to-digital converters (ADCs), dual programmable current sources, 12-bit digi
[Microcontroller]
USB Thermocouple Temperature Measurement System Circuit Diagram Using ARM Cortex-M3
The principle and method of configuring FPGA with ARM
0Introduction FPGA based on SRAM technology needs to be configured every time it is powered on. Usually, the configuration file of FPGA is loaded by a dedicated EPROM outside the chip. This traditional configuration method is adopted when the function of FPGA is relatively stable. When the system design require
[Microcontroller]
The principle and method of configuring FPGA with ARM
ARM exception and interrupt handling
Interrupts are one of the ways ARM processors improve work efficiency. Ⅰ. Interruption of image understanding: Suppose there is a big room with a small room inside, a baby is sleeping, and his mother is reading outside. How can the mother know when the child wakes up? Open the door every once in a while to see if
[Microcontroller]
ARM exception and interrupt handling
ARM-Linux touch screen driver transplantation--problem summary
Hardware platform: FL2440 Kernel version: 2.6.28 Host system: Ubuntu 11.04 Kernel version: 2.6.39   1. Due to the problem of selecting the touch screen driver option of the compiled kernel, the touch screen took a long time to fix Since I compiled the kernel myself and compiled the touch screen driver in the
[Microcontroller]
ARM-Linux touch screen driver transplantation--problem summary
Arm Linux from entry to start_kernel code analysis - 2
  1. Determine the processor type         In arch/arm/kernel/head.S: 00075:   mrc  p15, 0, r9, c0, c0    @ get processor id                00076:   bl  __lookup_processor_type    @ r5=procinfo r9=cpuid        00077:   movs  r10, r5        @ invalid processor (r5= 0)? 00078:   beq  __error_p      @ yes, erro
[Microcontroller]
Arm development experience notes
I did some development for arm some time ago, mainly writing the startup software for arm and porting uCOS-II to arm7. I like to do things in a concise way, and make a framework from the simplest and most principled aspects first, and then make supplements in this framework. I am still a person who likes to discuss wit
[Microcontroller]
Arm development experience notes
Keil (MDK-ARM) series tutorial (V)_Configuration (I)
Ⅰ. Write in front The content of this article is just as the title "Configuration", but the title contains more content, so I plan to divide it into two articles: Configuration (I) and Configuration (II). Our common font size, color, keywords, shortcut keys, etc. are all set in "Configuration". This article describe
[Microcontroller]
Keil (MDK-ARM) series tutorial (V)_Configuration (I)
ARM-Linux Embedded Voice Terminal
With the development of the Internet, network-based multimedia communications are attracting more and more attention. The basis of multimedia communication is voice communication. For this purpose, the International Telecommunication Union Telecommunication Group (ITU-T) has established multiple voice coding standar
[Industrial Control]
ARM-Linux Embedded Voice Terminal
Latest Microcontroller Articles
  • Download from the Internet--ARM Getting Started Notes
    A brief introduction: From today on, the ARM notebook of the rookie is open, and it can be regarded as a place to store these notes. Why publish it? Maybe you are interested in it. In fact, the reason for these notes is ...
  • Learn ARM development(22)
    Turning off and on interrupts Interrupts are an efficient dialogue mechanism, but sometimes you don't want to interrupt the program while it is running. For example, when you are printing something, the program suddenly interrupts and another ...
  • Learn ARM development(21)
    First, declare the task pointer, because it will be used later. Task pointer volatile TASK_TCB* volatile g_pCurrentTask = NULL;volatile TASK_TCB* vol ...
  • Learn ARM development(20)
    With the previous Tick interrupt, the basic task switching conditions are ready. However, this "easterly" is also difficult to understand. Only through continuous practice can we understand it. ...
  • Learn ARM development(19)
    After many days of hard work, I finally got the interrupt working. But in order to allow RTOS to use timer interrupts, what kind of interrupts can be implemented in S3C44B0? There are two methods in S3C44B0. ...
  • Learn ARM development(14)
  • Learn ARM development(15)
  • Learn ARM development(16)
  • Learn ARM development(17)
Change More Related Popular Components

EEWorld
subscription
account

EEWorld
service
account

Automotive
development
circle

About Us Customer Service Contact Information Datasheet Sitemap LatestNews


Room 1530, 15th Floor, Building B, No.18 Zhongguancun Street, Haidian District, Beijing, Postal Code: 100190 China Telephone: 008610 8235 0740

Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved 京ICP证060456号 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号