EEL 4732/5733 Programming Assignment 5 solution

$24.99

Original Work ?
Category: You will Instantly receive a download link for .ZIP solution file upon Payment

Description

5/5 - (1 vote)

In this assignment you are going to write a character device driver by extending the simple driver we studied in class (see slides DDIntro.pptx) in the following ways:
1. Define a device structure and embed structure cdev in that structure:
struct asp_mycdev { struct cdev dev; char *ramdisk; struct semaphore sem; int devNo; // any other field you may want to add };
2. Support a variable number of devices that can be set at load time (default will be 3) (see DDScullIntro.pptx). The device nodes will be named /dev/mycdev0, /dev/mycdev1, …, /dev/mycdevN-1, where N is the number of devices. Please have the device driver create the device nodes.
3. Provide an entry function that would be accessed via lseek() function. That entry function should update the file position pointer based on the offset requested. You should set the file position pointer as requested as long as it does not go out of bounds, i.e., 0 ≤ requestedposition. In the case of a request that goes beyond end of the buffer, your implementation needs to expand the buffer and fill the new region with zeros.
4. Provide an entry function that would be accessed via ioctl() function. You should let the user application clear the data stored in the ramdisk. You should define symbol ASP CLEAR BUF for the command to clear the buffer. Your driver function should also reset the file position pointer to 0. Please see DDScullBasic.pptx for implementation details.
5. Each device can be opened concurrently and therefore can be accessed for read, write, lseek, and ioctl concurrently. It is your
1
responsibility to provide appropriate synchronization to prevent race conditions.
6. All the resources (including the ramdisk, the device structures, and device nodes) should be recycled/freed at the time of unloading your device driver module.
The assignment is due Monday, April 2nd by midnight. Please submit all your files along with a Makefile and a README file on CANVAS.