Computer System Laboratory

Slides:



Advertisements
Similar presentations
DEVICE DRIVER VINOD KAMATH CS691X PROJECT WORK. Introduction How to write/install device drivers Systems, Kernel Programming Character, Block and Network.
Advertisements

Linux device-driver issues
Device Drivers. Linux Device Drivers Linux supports three types of hardware device: character, block and network –character devices: R/W without buffering.
RT_FIFO, Device driver.
Sogang University Advanced Operating Systems (Linux Device Drivers) Advanced Operating Systems (Linux Device Drivers) Sang Gue Oh, Ph.D.
Lecture for Lab 3, Exp1 of EE505 (Developing Device Driver) T.A. Chulmin Kim CoreLab. Mar, 11, 2011 [XenSchedulerPaper_Hotcloud-commits] r21 - /
USERSPACE I/O Reporter: R 張凱富.
Building and Running Modules Sarah Diesburg COP 5641.
Building and Running Modules Linux Kernel Programming CIS 4930/COP 5641.
Using VMX within Linux We explore the feasibility of executing ROM-BIOS code within the Linux x86_64 kernel.
Lab 4 Department of Computer Science and Information Engineering National Taiwan University Lab4 - Bootloader 2014/10/14/ 13 1.
52 Advanced Operating Systems Writing Device Drivers.
Embedded Systems Programming Writing Device Drivers.
How to make a pseudo-file As a follow-up to our first lab, we examine the steps needed to create our own ‘/proc’ file.
Embedded System Programming Introduction to Device Drivers.
Tutorial and Demos on Linux Virtual Machine
Computer System Laboratory
COMPUTER SYSTEM LABORATORY Lab8 - Debugging II. Lab 8 Experimental Goal Learn how to debug Linux in source-level by Domingo and diagnose target boards.
An Introduction to Device Drivers Sarah Diesburg COP 5641 / CIS 4930.
COMPUTER SYSTEM LABORATORY Lab4 - Bootloader. Lab 4 Experimental Goal Learn how to build U-Boot bootloader for PXA /10/8/ 142.
Loadable Kernel Modules Dzintars Lepešs The University of Latvia.
Operating System Program 5 I/O System DMA Device Driver.
Lab 3 Department of Computer Science and Information Engineering National Taiwan University Lab3 - Cross Tools 2014/10/7/ 20 1.
Computer System Laboratory
COMPUTER SYSTEM LABORATORY Lab10 - Sensor II. Lab 10 Experimental Goal Learn how to write programs on the PTK development board (STM32F207). 2013/11/19/
For OS Experiments. What Do We Need? A Computer &
Computer System Laboratory
Lab 11 Department of Computer Science and Information Engineering National Taiwan University Lab11 - Porting 2014/12/9/ 26 1.
Lab 1 Department of Computer Science and Information Engineering National Taiwan University Lab1 - Sensor 2014/9/23/ 13 1.
Lab 10 Department of Computer Science and Information Engineering National Taiwan University Lab10 – Debugging II 2014/12/2 1 /16.
COMPUTER SYSTEM LABORATORY Lab6 - Root Filesystem.
Kernel Modules. Kernel Module Pieces of code that can be loaded and unloaded into the kernel upon demand. Compiled as an independent program With appropriate.
Implementation of Embedded OS Lab3 Linux Kernel Modules.
Lab 14 Department of Computer Science and Information Engineering National Taiwan University Lab14 – Camera 2014/12/30 1 /14.
Lab 13 Department of Computer Science and Information Engineering National Taiwan University Lab13 – Interrupt + Timer 2014/12/23 1 /16.
LOGO System Call. Introduction System call is the mechanism used by an application program to request service from the OS. Users use it to communicate.
An Introduction to Device Drivers Ted Baker  Andy Wang COP 5641 / CIS 4930.
Interfacing Device Drivers with the Kernel
CSC414 “Introduction to UNIX/ Linux” Lecture 2. Schedule 1. Introduction to Unix/ Linux 2. Kernel Structure and Device Drivers. 3. System and Storage.
OS Project 0 February 25, Outline  Linux Installation  Linux Kernel Compilation  System Call Development  Kernel Modules / 452.
Implementation of Embedded OS Lab4 Cortex-M3 Programming.
Lab 12 Department of Computer Science and Information Engineering National Taiwan University Lab12 – Driver 2014/12/16 1 /21.
Implementation of Embedded OS Lab3 Porting μC/OS-II.
COMP 3438 – Part I - Lecture 5 Character Device Drivers
Lab 8 Department of Computer Science and Information Engineering National Taiwan University Lab8 - Root Filesystem 2015/11/10/ 22 1.
Lab 9 Department of Computer Science and Information Engineering National Taiwan University Lab9 - Debugging I 2014/11/4/ 28 1.
Implementation of Embedded OS
Lab 5 Department of Computer Science and Information Engineering National Taiwan University Lab5 - OS Kernel 2014/10/21/ 16 1.
Kernel Modules – Introduction CSC/ECE 573, Sections 001 Fall, 2012.
Using Linux with ARM Tutorial #3.
Lecture 3 Module Programming and Device Driver (Homework#1 included) Kyu Ho Park Sept. 15, 2015.
Computer System Laboratory
OS Homework 1 February 22, 2017.
Linux Kernel Module Programming
Computer System Laboratory
Implementation of Embedded OS
Computer System Laboratory
Linux Kernel Driver.
Want to play a game? – Linux Kernel Modules
Introduction to the Kernel and Device Drivers
An Introduction to Device Drivers
Intro to Kernel Modules and /proc
chapter 2 - Hello World Model
Operation System Program 1
Lab 4 Kernel Module Operating System Lab.
Implementation of Embedded OS
Computer System Laboratory
Computer System Laboratory
Computer System Laboratory
Presentation transcript:

Computer System Laboratory Lab12-Driver

Experimental Goal Understand the architecture of Linux device drivers and learn how to control the LCD of PXA270. LCD 2013/12/10 / 21

Environment Host System Build System Target System Software Windows XP Build System VirtualBox + Ubuntu 8.04 Target System Creator XScale PXA270 Software Linux kernel, please refer to Lab5 BusyBox, please refer to Lab6 Creator PXA270 LCD driver You can download all software from RSWiki CSL Course Software 2013/12/10 / 21

Introduction to Device Drivers What are device drivers? Make a particular piece of hardware respond to a well-defined internal programming interface. Hide completely the details of how the device works. User activities are performed by means of a set of standardized calls that are independent of the specific driver. Mapping those calls to device-specific operations that act on real hardware is then the role of a device driver. 2013/12/10 / 21

Linux Device Drivers (1/2) There are three fundamental types of Linux device drivers. Character device driver Block device driver Network device driver We will only learn how to write character device drivers in this Lab. 2013/12/10 / 21

Linux Device Drivers (2/2) A Linux device driver can be divided into two parts. Virtual device driver Physical device driver filename description type major number minor number /dev/ttyS0 First UART serial port char 4 64 User Kernel Device Driver Hardware Device File implement chipset control functions define I/O wrapper functions define chipset header implement system calls register driver (VFS) define file_operations Virtual Device Driver Physical Device Driver 2013/12/10 / 21

Writing A Virtual Device Driver (1/2) Define file_operations and implement system calls. #include <linux/fs.h> struct file_operations dev_fops = { open: dev_open, read: dev_read, write: dev_write, release: dev_release, ioctl: dev_ioctl, }; Implement these functions 2013/12/10 / 21

Writing A Virtual Device Driver (2/2) Register a character device driver in the initial function. int register_chrdev(unsigned int major, const char *name, struct file_operations *fops); Unregister a character device driver in the exit function. int unregister_chrdev(unsigned int major, const char *name); 2013/12/10 / 21

Writing A Physical Device Driver (1/2) Two common approaches to access hardware. Memory mapped I/O Port I/O Memory mapped I/O: Access I/O (port) in the same way as that memory is accessed. For example, there is a device that has a 8 bit I/O port connected to the system, and its address is mapped at 0x10000. We can read and write the I/O port like this: #define DATA_PORT (*(volatile char*)(0x10000)) char read_b() {return DATA_PORT;} void write_b(char data) {DATA_PORT = data;} 2013/12/10 / 21

Writing A Physical Device Driver (2/2) Port I/O: If the I/O system has its own address independent of memory, then it is port I/O. Register the I/O port. E.g., 0x378. if (check_region(0x378, 1)) { printk("<1>parallelport: cannot reserve 0x378\n"); } else { request_region(0x378, 1, "demo"); } Use the I/O commands. char data = inb(0x378);//Read data form the port 0x378 outb(data, 0x378); //Write data to the port 0x378 Release I/O port. release_region(0x378, 1); 2013/12/10 / 21

Creating A Device File In Linux, devices are accessed in the same way as that files are accessed. These device files are normally in the /dev directory. We can create a device file by the following command. % mknod /dev/demo c <MAJOR_NUM> <MINOR_NUM> More details about mknod can be found at 鳥哥的 Linux 私房菜. So, we can manipulate the device via reading/writing its device file. Most Linux drivers are implemented as kernel modules. 2013/12/10 / 21

Introduction to Kernel Module A kernel module is an object file that contains code to extend the running kernel of an operating system. Typically used to add support for new hardware and/or filesystems, or for adding system calls. When the functionality provided by an kernel module is no longer required, it can be unloaded in order to free memory and other resources. 2013/12/10 / 21

Related Commands in Linux % insmod module.ko This command is used to insert a module into the kernel. It doesn’t modify the module’s disk file, but rather than in-memory copy. % rmmod module.ko This command is used to remove a module from the kernel. This command invokes the delete_module() system call, which calls cleanup_module() in the module itself if the usage count is zero or returns an error otherwise. % lsmod List the module currently linked to Linux. 2013/12/10 / 21

How to Write a Module? (1/2) #include <linux/init.h> #include <linux/kernel.h> #include <linux/module.h> static int init_demo(void) { printk("Hello World!\n"); return 0; } static void cleanup_demo(void) { printk("Goodbye World!\n"); } module_init(init_demo); module_exit(cleanup_demo); MODULE_LICENSE("Dual BSD/GPL"); initial function cleanup function declaration of initial/cleanup functions 2013/12/10 / 21

How to Write a Module? (2/2) Note that the messages in printk will be showed in the kernel, you can use dmesg command to check the messages. We need to compile this module with kernel, and the result will be demo.ko. Here is the example of Makefile. CC = arm-unknown-linux-gnu-gcc obj-m := demo.o all: make -C <kernel path> M=$(PWD) modules clean: make -C <kernel path> M=$(PWD) clean 2013/12/10 / 21

Using Drivers In User Space Open the file /dev/demo and test its read and write functions just like a normal file. #include <stdio.h> #include <unistd.h> #include <fcntl.h> int main() { int fd, data; if((fd = open("/dev/demo", O_RDWR)) < 0) { printf("couldn't open /dev/demo\n"); return 1; } write(fd, "Hello World!", 13); read(fd, &data, 4); close(fd); return 0; } 2013/12/10 / 21

The PXA270 LCD Driver (1/2) Now we add the PXA270 LCD driver to Linux kernel as a kernel module. Step 1: extract the driver, and copy to your Linux kernel source in Lab5. Step 2: compile modules. We build the driver as a module. % make menuconfig “Device Drivers”  “Character devices”  “Creator-pxa270 LCD” % make modules The result creator-pxa270-lcd.ko is in drivers/char/. Step 3: add lsmod, insmod, rmmod commands in BusyBox. (refer to Lab6) Please check the size of root filesystem which is defined by Linux kernel. These commands are under “Linux Module Utilities”. You need to check the support of 2.6.x Linux Kernels. 2013/12/10 / 21

The PXA270 LCD Driver (2/2) Step 4: copy the new root filesystem to PXA270. Step 5: transfer creator-pxa270-lcd.ko to PXA270. Step 6: insert the module to Linux. % insmod creator-pxa270-lcd.ko You will see “good” on the 4-Digit 7 segment LED. Tip If you want to reload the module, do not forget to remove the running module first. % rmmod creator-pxa270-lcd.ko 2013/12/10 / 21

Lab Step Please refer to previous slides to implement a simple driver for a virtual device demo. Create the device with major number 60 and minor number 0. When you initialize module, delete module, open device, close device, read device and write device, please print messages. E.g., printk(“Open command is issued.”); You don’t need to implement the “real work” of functions. Write an application to control the LCD. Trace the driver code and know how it works. Do not forget to create the LCD device file. % mknod /dev/lcd c 120 0 2013/12/10 / 21

Hint You can refer to the PXA270 LCD driver to implement your demo driver. See the struct file_operations and know how to implement these system calls. Also see how to control LCD by ioctl commands. You may want to define some ioctl commands in your application. You can refer to Writing device drivers in Linux: A brief tutorial for more information. 2013/12/10 / 21

Lab Requirement Show the messages of accessing the demo device. Including open, close, read, write, initial, remove. Show more than one messages on LCD from applications. Show your group number, and your student IDs. 2013/12/10 / 21