1 / 17

DIGITAL II Microprocessors & Embedded Systems

DIGITAL II Microprocessors & Embedded Systems. ECE 0909.242.01. Week 7. General Purpose Processors: Software. Robi Polikar, Ph.D. John L. Schmalzel, P.E., Ph.D. This Week In DIG II. Introduction Basic Architecture Memory Programmer’s view (that would be you !) Development environment

nell-henson
Download Presentation

DIGITAL II Microprocessors & Embedded Systems

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. DIGITAL II Microprocessors & Embedded Systems ECE 0909.242.01 Week 7 General Purpose Processors: Software Robi Polikar, Ph.D. John L. Schmalzel, P.E., Ph.D.

  2. This Week In DIGII • Introduction • Basic Architecture • Memory • Programmer’s view (that would be you !) • Development environment • Application specific instruction-Set Processors (ASIPs) • Selecting a microprocessor • Z-World • General – purpose processor design Chapter 3 General-Purpose Processors: Software

  3. Basic Architecture Processor (CPU) Datapath Control unit ALU Controller Control /Status Registers PC IR I/O Memory • Control unit and datapath • Note similarity to single-purpose processor • Key differences • Datapath is general • Control unit doesn’t store the algorithm – the algorithm is “programmed” into the memory

  4. Architectural Considerations • Clock frequency • Inverse of clock period • Must be longer than longest register-to-register delay in entire processor • Memory access is often the longest • The path that takes the longest time is called critical path. Clock period must be longer than the critical path. Processor Control unit Datapath ALU Controller Control /Status Registers PC IR I/O Memory

  5. Memory:Two Memory Architectures Processor Processor Program memory Data memory Memory (program and data) Harvard Princeton • Registers serve as short time storage space, the memory serves as the long time storage space • Memory: • Data • Program • Princeton • Data and program stored together • Fewer memory wires • Harvard • Data and program have separate memory locations • Simultaneous program and data memory access ROM, RAM:

  6. Cache Memory • Memory access may be slow • On-chip memory (faster) • Off-chip memory (slower) • Cache is small but fast memory close to processor • Holds copy of part of memory that is most likely to be needed often • Underlying principle: If processor access a specific part of the memory, chances are it will need to access that immediate neighborhood of memory block again sometime soon • Hits and misses Fast/expensive technology, usually on the same chip Processor Cache Memory Slower/cheaper technology, usually on a different chip

  7. Pipelining: Increasing Instruction Throughput Wash 1 2 3 4 5 6 7 8 1 2 3 4 5 6 7 8 Non-pipelined Pipelined Dry 1 2 3 4 5 6 7 8 1 2 3 4 5 6 7 8 non-pipelined dish cleaning Time pipelined dish cleaning Time Fetch-instr. 1 2 3 4 5 6 7 8 Decode 1 2 3 4 5 6 7 8 Fetch ops. 1 2 3 4 5 6 7 8 Pipelined Execute 1 2 3 4 5 6 7 8 Instruction 1 Store res. 1 2 3 4 5 6 7 8 Time pipelined instruction execution

  8. Programmer’s View • Programmer doesn’t need detailed understanding of architecture • Instead, needs to know what instructions can be executed • Two levels of instructions: • Assembly level (processor specific) • Structured languages (C, C++, Java, etc., processor independent) • How about machine language? • Most development today done using structured languages • But, some assembly level programming may still be necessary • Drivers: portion of program that communicates with and/or controls (drives) another device • Often have detailed timing considerations, extensive bit manipulation • Assembly level may be best for these

  9. Assembly-Level Instructions Instruction 1 opcode operand1 operand2 Instruction 2 opcode operand1 operand2 Instruction 3 opcode operand1 operand2 Instruction 4 opcode operand1 operand2 ... • Instruction Set • Defines the legal set of instructions for that processor. If programming in assembly, you need to know these…! • An instruction typically has two parts: opcode field and operand field. Three types of instructions: • Data transfer: memory/register, register/register, I/O, etc. • Arithmetic/logical: implement a function, move register through ALU and back • Branches: determine next PC value when not just PC+1 • Unconditional jumps  determine the address of next instruction • Conditional jumps  ditto, if a condition is satisfied The operation totake place during the instruction Locations of actual datathat takes place in an operation (source / destination operand)

  10. Addressing Modes Addressing mode Register-file contents Memory contents Operand field Immediate Data Register-direct Register address Data Register indirect Register address Memory address Data Direct(regular variables) Memory address Data Indirect(pointer variables) Memory address Memory address Data The operand field may indicate the data’s location through one of several addressing modes:

  11. A Simple (Trivial) Instruction Set Assembly instruct. First byte Second byte Operation MOV Rn, direct 0000 Rn direct Rn = M(direct) MOV direct, Rn 0001 Rn direct M(direct) = Rn Rm MOV @Rn, Rm 0010 Rn M(Rn) = Rm MOV Rn, #immed. 0011 Rn immediate Rn = immediate ADD Rn, Rm 0100 Rn Rm Rn = Rn + Rm SUB Rn, Rm 0101 Rn Rm Rn = Rn - Rm JZ Rn, relative 0110 Rn relative PC = PC+ relative (only if Rn is 0) opcode operands

  12. Sample Programs Equivalent assembly program 0 MOV R0, #0; // total = 0 1 MOV R1, #10; // i = 10 2 MOV R2, #1; // constant 1 3 MOV R3, #0; // constant 0 Loop: JZ R1, Next; // Done if i=0 5 ADD R0, R1; // total += i 6 SUB R1, R2; // i-- 7 JZ R3, Loop; // Jump always Next: // next instructions... • Try some others (exercise) • Handshake: Wait until the value of M[256] is not 0, set M[257] to 1, wait until M[256] is 0, set M[257] to 0 (assume those locations are ports). • (Harder) Count the occurrences of zero in an array stored in memory locations 100 through 199. C program int total = 0; for (int i=10; i!=0; i--) total += i; // next instructions...

  13. Programmer Considerations • Program and data memory space • Embedded processors often very limited • e.g., 64 Kbytes program, 256 bytes of RAM (expandable) • Find out the program and memory space in BL-1800 • Registers: How many are there? • Only a direct concern for assembly-level programmers • However, all programmers need to know “special-function” registers (used for configuring built-in timers, counters, serial communication devices or read/write external pins). • Find the number of registers in BL-1800 • I/O • How communicate with external signals? • Serial / parallel ports, system bus • Find the I/O capabilities and features of BL-1800 • Interrupts • Causes the processor to suspend execution of the main program and jump to an interrupt service routine (ISR) to execute a special, short-term need program. Controlled by the PC. Examples…?

  14. Example: parallel port driver LPT Connection Pin I/O Direction Register Address 1 Output 0th bit of register #2 2-9 Output 0th ~7th bit of register #0 10,11,12,13,15 Input 6,7,5,4,3rd bit of register #1 14,16,17 Output 1,2,3rd bit of register #2 • Using assembly language programming we can configure a PC parallel port to perform digital I/O • write and read to three special registers to accomplish parallel communications. Table provides list of parallel port connector pins and corresponding register location for the PC • Example : parallel port monitors the input switch (pin 13) and turns the LED (Pin 2) on/off accordingly

  15. Parallel Port Example LPT Connection Pin I/O Direction Register Address 1 Output 0th bit of register #2 2-9 Output 0th bit of register #2 10,11,12,13,15 Input 6,7,5,4,3th bit of register #1 14,16,17 Output 1,2,3th bit of register #2 ; This program consists of a sub-routine that reads ; the state of the input pin, determining the on/off state ; of our switch and asserts the output pin, turning the LED ; on/off accordingly .x86 CheckPort proc push ax ; save the content push dx ; save the content mov dx, 3BCh + 1 ; base + 1 for register #1 in al, dx ; read register #1 and al, 10h ; mask out all but bit # 4 cmp al, 0 ; is it 0? jne SwitchOn ; if not, we need to turn the LED on SwitchOff: mov dx, 3BCh + 0 ; base + 0 for register #0 in al, dx ; read the current state of the port and al, feh ; clear first bit (masking) out dx, al ; write it out to the port jmp Done ; we are done SwitchOn: mov dx, 3BCh + 0 ; base + 0 for register #0 in al, dx ; read the current state of the port or al, 01h ; set first bit (masking) out dx, al ; write it out to the port Done: pop dx ; restore the content pop ax ; restore the content CheckPort endp extern “C” CheckPort(void); // defined in // assembly void main(void) { while( 1 ) { CheckPort(); } } 3BCh: Base address of LPT port (most PCs)

  16. Operating System • Optional software layer providing low-level services to a program (application). • File management, disk access • Keyboard/display interfacing • Scheduling multiple programs for execution • Or even just multiple threads from one program • Program makes system calls to the OS • OS responds to these “service calls” based on this priority order. • OS determines which program use the system resources (CPU, memory, etc.) when and how long.

  17. Chapter Summary • General-purpose processors • Good performance, low NRE, flexible • Controller, datapath, and memory • Structured languages prevail • But some assembly level programming still necessary • Many tools available • Including instruction-set simulators, and in-circuit emulators • ASIPs • Microcontrollers, DSPs, network processors, more customized ASIPs • Choosing among processors is an important step • Designing a general-purpose processor is conceptually the same as designing a single-purpose processor

More Related