1 / 47

ELEC2041 Microprocessors and Interfacing Lecture 1: Introduction http://webct.edtec.unsw.edu.au/

ELEC2041 Microprocessors and Interfacing Lecture 1: Introduction http://webct.edtec.unsw.edu.au/. March, 2006 Saeid Nooshabadi Saeid@unsw.edu.au. Microprocessor Systems: – A Brief Run Down. At the high end of the scale. Processor: Intel Pentium 4 Frequency: 3.2GHz

urbain
Télécharger la présentation

ELEC2041 Microprocessors and Interfacing Lecture 1: Introduction http://webct.edtec.unsw.edu.au/

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. ELEC2041Microprocessors and InterfacingLecture 1: Introductionhttp://webct.edtec.unsw.edu.au/ March, 2006 Saeid Nooshabadi Saeid@unsw.edu.au

  2. Microprocessor Systems: – A Brief Run Down

  3. At the high end of the scale Processor: Intel Pentium 4 Frequency: 3.2GHz Power consumption: 103 W max.* Process: 90nm *Intel document no. 300561-002

  4. At the low end of the scale Processor can consume no more than 250-300mW Embedded Devices

  5. Where are the embedded devices?

  6. Computer Technology  Dramatic Change • Processor • 2X in speed every 1.5 years; 100X performance in last decade • Memory • DRAM capacity: 2X / 2 years; 64X size in last decade • Cost per bit: improves about 25% per year • Disk • capacity: > 2X in size every 1.0 years • Cost per bit: improves about 100% per year • 250X size in last decade

  7. Computer Technology  Dramatic Change! • State-of-the-art PC when you graduate: (at least…) • Processor clock speed: 5000 MegaHertz (5.0 GigaHertz) • Memory capacity: 4000 MegaBytes (4.0 GigaBytes) • Disk capacity: 2000 GigaBytes (2.0 TeraBytes) • New units! Mega => Giga, Giga => Tera (Kilo, Mega, Giga, Tera, Peta, Exa, Zetta, Yotta = 1024) Kilo, Mega, etc. are incorrect Terminologies!

  8. Putting it all in perspective… “If the automobile had followed the same development cycle as the computer, a Rolls-Royce would today cost $100, get a million miles per gallon, and explode once a year, killing everyone inside.” – Robert X. Cringely Technical Writer, Broadcaster and Computer Guy http://www.pbs.org/cringely/about/ Triumph of the NerdsA history of the PC industry, An ABC program a few years ago

  9. Challenges for 21st Century • PostPC Era will be driven by 2 technologies: 1) Mobile Consumer Devices • e.g., successor to cell phone, PDA, wearable computers 2) Massive I/O interfacing vs RAW computational power

  10. Why Study Microprocessor Design? • It’s exciting!; It has never been more exciting! • It impacts every other aspect of electrical engineering and computer science Bionics:Sensors in latex fingers instantly register hot and cold, and an electronic interface in his artificial limb stimulates the nerve endings in his upper arm, which then pass the information to his brain. The $3,000 system allows his hand to feel pressure and weight, so for the first time since losing his arms in a 1986 accident, he can pick up a can of soda without crushing it or having it slip through his fingers. One Digital Day Only Sociology graduates help real people?

  11. Why Study Microprocessor Design?

  12. Why Study Microprocessor Design? Sony Playstation 2000 • (as reported in Microprocessor Report, Vol 13, No. 5) • Emotion Engine: 6.2 GFLOPS, 75 million polygons per second • Graphics Synthesizer: 2.4 Billion pixels per second • Claim: Toy Story realism brought to games!

  13. Why Study Microprocessor Design? Wireless Sensor Networks Platform Power Metering Application A 4th Year Project-2005

  14. What is this course about? Application (Netscape) • Coordination of manylevels of abstraction ELEC2041 Operating Compiler System (Windows XP) Software Assembler Instruction Set Architecture Hardware Processor Memory I/O system Datapath & Control Digital Design Circuit Design transistors

  15. Programming Levels of Representation temp = v[k]; v[k] = v[k+1]; v[k+1] = temp; ldr r0 , [r2, #0] ldr r1 , [r2, #4] str r1 , [r2, #0] str r0 , [r2, #4] High Level Language Program (e.g., C) Compiler Assembly Language Program (e.g. ARM) ELEC2041 Assembler 1110 0101 1001 0010 0000 0000 0000 0000 1110 0101 1001 0010 0000 0000 0000 0100 1110 0101 1000 0010 0001 0000 0000 0000 1110 0101 1000 0010 0001 0000 0000 0100 Machine Language Program (ARM) Machine Interpretation Control Signal Specification ALUOP[0:3] <= InstReg[9:11] & MASK ° °

  16. ELEC2041: An Overview • The Aims: • Basics of Microprocessor-based systems • Programmer’s view of Computer Architecture • Interaction between hardware and software, i.e. ‘Interfacing’. • What not covered: • Designing computer hardware • High level language programming

  17. What will You learn in ELEC2041? • Learn big ideas in Microprocessors & Interfacing • 5 Classic components of a Computer • Principle of abstraction, used to build systems as layers • Pliable Data – Data can be anything (integers, floating point, characters): a program determines what it is • Stored program concept: instructions just data • Principle of stack and stack frames • Compilation v. interpretation thru system layers • Principle of Locality, exploited via a memory hierarchy (cache)

  18. New Look ELEC2041! • Modern View of Microprocessor Based Design • Embedded Systems (against desktop computing environment) with incredible processing power (1 GFLOPS Speed) • video games (PlayStation, XBox) • Handheld palmtop computers, • digital still and video cameras, • cellular phones, mobile personal communicators • Smart refrigerators (LG Life is Good!) • System on Chip Design Concept • Integration of general purpose microprocessor core with flexible special purpose programmable peripheral devices to design large systems • Software/ Hardware Partitioning and Co-design • Modern Development Hardware and Software • We use the State-of-the-Art hardware and software in the laboratory • With a view of the Microprocessor Design for 21st Century

  19. System on a Chip Example • Hand Held PC

  20. Syllabus • Main Topics: • Programmer model of computer organisation • Assembly and machine language Programming • Process of translation from high level language to machine instructions • Number representation, computer arithmetic • Instruction Sets Architecture • I/O interfacing • I/O interrupts • Programming interrupts • Laboratory exercises: • Programming and interfacing of an ARM based microprocessor hardware and software system

  21. Example Microprocessor • Primary aim is to cover PRINCIPLES of microprocessor based systems • In this class we mostly use ARM architecture as a vehicle for demonstrating the principle of microprocessor design & programming • ARM: • An exciting 32 bit RISC architecture for high end embedded systems • Versatile instruction set architecture • Very compact code (High code density) • Very low power • Architecture is sold as core to semiconductor manufactures licensees

  22. ELEC2041 Administration (#1/2) • Lecturer: Saeid Nooshabadi: saeid@unsw.edu.au 241 EE Building • Consultation: Room EE241 Ext. 5663, Tues 12 – 13, (By email anytime) • Lab Assessors: (See them for your lab time on the Class Website)

  23. ELEC2041 Administration (#2/2) • Home Page: http://webct.edtec.unsw.edu.au/http://subjects.ee.unsw.edu.au/elec2041 Home Page will contain all information, so check it often: • Lecturer and lab Assessors info • All Lecture slides presented in the class • Tutorial Exercises • All documentation relating to the Laboratory Exercises • Pointer to Mirror image of the Companion CD-ROM • Announcements • It is your responsibility to check the homepage for all ELEC2041 related matters.

  24. Pre-Requisite (#1/2) • Digital Circuits (e.g. ELEC1041, COMP2021) • Number representation, coding, registers, state machines • Realisation of simple logic circuits • Integrated circuit technologies • Designing with combinational MSI components • Flip-Flops & state machines • Counters and sequential MSI components • Register transfer logic • Bus systems

  25. Pre-Requisite (#2/2) • Computers and Computing (e.g. COMP1011 & COMP1021) • The von Neumann model: memory/I-O/processing • The instruction set and execution cycle • Registers and address spaces • An instruction set: operations and addressing modes • An expanded model of a computer: mass storage and I/O • The layered model of a computer: from gate- to user-level • C- Language Programming

  26. ELEC2041 Reading Materials (#1/2) • Printed Laboratory booklets (Highly Recommended) • Buy from the EE Office for $10 (Available on-line for free as well) • Companion CD-ROM (Highly Recommended) • Buy from the EE Office for $5 (Available on-line for free as well) • All Software tools and user manuals used in the lab • All relevant documentation relating to hardware development board used in the lab • Copies of all relevant data sheets for the processor and other devices on the hardware development board used in the lab • Copy of ARM Processor Reference Manual • All the Laboratory Exercises documentations • Many programming examples • And LOT MORE…

  27. ELEC2041 Reading Materials (#2/2) • Textbooks: • Main references for lecture material: • Steve Furber: ARM System on-chip 2nd Ed, Addison-Wesley, 2000, ISBN: 0-201-67519-6. We use chapters 2, 3, 5 and 6, 8, 9, 10, & 11 • Additional references for lectures and labs: • David Patterson and John Hennessy: Computer Organisation & Design: The HW/SW Interface," 2nd Ed 1996. Relevant chapters are, 3, 4 & 8 • Waldron, John: Introduction to RISC Assembly Language, Addison-Wesley Publishing, 1999, ISBN: 0201398281 • C-Programming • Brian Kernighan & Dennis Ritchie: The C Programming Language, 2nd Ed., Prentice Hall, 1988, ISBN:0-13-110362-8

  28. ELEC2041 Lecture & Tutorial Schedule • Lectures: • Tuesday 09:00 – 10:00 Rex Vowels Theatre • Wednesday 10:00 – 11:00 Science Theatre • Friday 09:00 – 10:00 Biomed A Theatre Tutorials: You must turn up only for one • Monday 16:00 – 17:00 OMB 150 • Tuesday 10:00 – 11:00 ElecEng 418 • Tuesday 12:00 – 13:00 Webst 256 • Friday 14:00 – 15:00 Webst 256

  29. Tutorial Sets • The tutorial classes deal problems from the lecture class in the previous week. • Some tutorial questions are similar to quiz questions from the previous week. • The solutions to the tutorial sets are provided on Friday of the week after the last tutorial session. • The Tutorial sets and solution sets are published on the class website.

  30. ELEC2041 Laboratory Schedule • Laboratory: • Monday: 09:00 – 11:00 EE233 • Monday: 12:00 – 14:00 EE233 • Tuesday: 15:00 – 17:00 EE233 • Thursday: 09:00 – 11:00 EE233 • Thursday: 12:00 – 14:00 EE233 • Thursday: 15:00 – 17:00 EE233 • Friday: 12:00 – 14:00 EE233 • Friday: 15:00 – 17:00 EE233 • You will be only allowed into the lab class that you are enrolled in. No exception allowed. • Starts from week #3 for all classes • Special Open Access labs may be opened later • Wednesday : 17:00 – 19:00 EE233 • Thursday : 17:00 – 19:00 EE233 • Not assessed • It is for those who need a bit of extra time

  31. Laboratory Format • In group of two partners • You choose your partner in Sign Up Class (Week #3 for all classes) . It CANNOT be changed later • You will get a group Linux Account • No formal report to hand in • You are assessed based on a system of checkpoints • Assessors mark you check points • Lab Demonstrators help you with the lab Assemble, link and run your program using the GNU Tools. Show your working program to the Laboratory Assessor. Checkpoint 3: Signature:

  32. Extra Tasks for Lab Work • Each lab has a set of NO credit extra tasks • You can do them for no credit IF AND ONLY IF you have finished all the required checkpoints. • Labs 3 – 5 also have one Extra Credit Task • You can do them for extra credit IF AND ONLY IF you have finished all the required checkpoints • Hey worth 5 times more than the compulsory tasks. • Alternatively you can do a small project for up to 10% extra marks • You can do this IF AND ONLY IF you have a grade > 85% • Send me an email if you want to do a project. • You are not eligible for both. • You have to make a decision before attempting the first Extra Credit Checkpoint

  33. Extra Credit: EPA! • Effort • Attending tutorials and consultation time, completing all lab assignments, and doing all quizzes • Participation • Asking great questions in discussion on the WebCT, Tutorials and Lectures and making it more interactive • Altruism • Helping others in lab (no cheating) or on the WebCT • EPA! extra credit points have the potential to bump students up to the next grade level!

  34. ELEC2041 Software • Edit Utility Tools • Enable creation of C or assembly source programs for ARM Processor on a Linux Platform • GNU ARM Cross Compiler and Assembler Tools: • Enable Translation by Compilation, Assembly, and Linking of source programs into ARM object programs; Executable and Linking Format (ELF) GNU ARM Source Level Debugger • Enables simulation of ARM ELF programs while referencing back to the source code. Komodo Integrated Debugger • Enables downloading of ARM ELF code into the target ARM Processor on DSLMU Development Board • Enables Execution and debugging of the downloaded program on the target processor on DSLMU Development Board All Tools included in the Companion CD-ROM

  35. ELEC2041 DSLMU Hardware • DSLMU is • A Board for 21st Century • The State-of-the-Art Development Board • DSLMU Features: • Designed by the University of Manchester with lots of collaboration from UNSW • An ARM Microcontroller • With 2 MB of Flash and up to 4 MB of SRAM Memory • 2 Xilinx FPGAs for extended interfacing and specialised co-processors • Optional Ethernet chip • LCD Module • Lots of uncommitted Switches and LEDs • Terminal connector to FPGAs Two PCBs

  36. DSLMU Hardware Block Diagram Two Printed circuit Boards All Details and Circuit Diagrams included on the Companion CD-ROM

  37. Laboratory Preparation & Catch Up • You CAN finish the laboratory exercises in the allocated time, ONLY and ONLY, if you DO the preparation before hand. • You need to prepare for the laboratory outside the laboratory by: • Carefully reading the Laboratory Documentation • Doing all the Pre-labs • Writing your program and possibly simulating them at home • Leaving things for to the last minute or walking into the laboratory without preparation is invitation for DISASTOR • Go to one of the OPEN ACCESS Classes if you think you are falling behind.

  38. Laboratory Documentation Format • Written Extensively • They Server as: • Lecture Notes • Tutorials • AND Practical exercises • Careful Reading Enables you to: • Understand the Subject material • Do tutorial practice • AND get practical experience DO TAKE THEM VERY SERIOUS!

  39. ELEC2041 Laboratory Experiments • Lab Sign up Sign up to a lab group, and get group Linux account (starts week #3) • Lab Exercise 1 An Introduction to the Laboratory ( 1 week) (starts week #3) • Lab Exercise 2 Introduction to Assembly Language Programming (2 weeks) •  Lab Exercise 3 Data Types, Data Structures and Functions in ARM Assembly Language (3 weeks) • Lab Exercise 4 I/O Interfacing (3 weeks) • Lab Exercise 5 ARM Operating Modes, System Calls and Interrupts (2 weeks)

  40. Course Grading Scheme • Laboratory mark = 20% • Regular Quizzes = 10 % • Final Exam mark = 70 %

  41. Quizzes • Weekly on-line quizzes on Webct • They are designed to help you stay up-to-date with the lectures • They contain the lecture and lab materials • You only get one chance at it for credit, but can make multiple attempts • They are posted for a week only. • Starts Monday 4pm; Ends Next Monday 3pm. • Two attempts are allowed with average taken. • You can do them from anywhere. • It is your responsibility to check for the quizzes on Webct every week.

  42. ELEC2041 6 Commandments • Thou shall NOT talk in the class • Thou shall PAY attention in the class • Thou shall COME on-time to the class • Thou shall REVIEW the published lecture slides before the next lecture to see what you don’t understand • Thou shall ASK Questions in the in the class • Thou shall DO the reading assignments before the lab class, not while you are in the lab

  43. Things to Remember • Pay attention to Things to Remember! • Do read the documentation on Laboratory Exercises before coming to the laboratory • Try doing as much as possible before coming to the laboratory • Think Ahead!

  44. Processor Processor Input Input Control Control Memory Memory Datapath Datapath Output Output 5 Classic Components of a Computer Network/Bus

  45. And in Conclusion... • 14 weeks to learn big ideas in Microprocessors & Interfacing • Principle of abstraction, used to build systems as layers • Pliable Data: a program determines what it is • Stored program concept: instructions are just data • Principle of stack and stack frames • Principle of Locality, exploited via a memory hierarchy (cache) • Compilation v. interpretation to move down layers of system

  46. And in Conclusion... • Continued rapid improvement in Computing • 2X every 1.5 years in processor speed; every 2.0 years in memory size; every 1.0 year in disk capacity; Moore’s Law enables processor, memory (2X transistors/chip/ ~1.5 yrs) • 5 classic components of all computers Control Datapath Memory Input Output } Processor

  47. GOOD LUCK WITH THIS COURSE

More Related