, , , , , , ,

[SOLVED] Ecse 324 lab 3: keyboard and display

$25

File Name: Ecse_324_lab_3:_keyboard_and_display.zip
File Size: 339.12 KB

Categories: , , , , , , , Tags: , , , , , , ,
5/5 - (1 vote)

In this lab, you will explore the more complex input/output capabilities of the DE1-SoC: the PS/2
keyboard port, and VGA display. You will begin by writing a driver for each of these devices, and
then put them together into an application.Summary of Deliverables
● Source code for:
○ A library implementing a complete VGA driver
○ A library implementing a complete PS/2 driver
○ An application that implements the Game of Life on the VGA screen using PS/2
input● Demo, no longer than five (5) minutes (April 5th (W), 6th (R), 11th (T), 12th (M), 13th (F))
● Report, no longer than four (4) pages (no smaller than 10 pt font and 1” margins; no
cover page) (due April 14th at 11:59 pm)Please submit the above in a single .zip archive, using the following file name conventions:
● Code: part1.s, part2.s, part3.s
● Report: StudentID_FullName_Lab3_report.pdf
Grading Summary
● 50% Demo
● 50% Report
Changelog
● 14-Mar-2023 Updated demo schedule
● 14-Mar-2023 Initial revisionIn this lab we will use the high level I/O capabilities of the DE1-SoC simulator to
1. display pixels and characters using the VGA controller, and
2. accept keyboard input via the PS/2 port.
For each of these topics, we will create a driver. We will test the drivers both individually and in
tandem by means of test applications.The DE1-SoC computer has a built-in VGA controller that can render pixels, characters or a
combination of both. The authoritative resource on these matters is Sections 4.2.1 and 4.2.4 of
the DE1-SoC Computer Manual. This section of the lab provides a quick overview that should
suffice for the purpose of completing this lab.To render pixels, the VGA controller continuously reads the pixel buffer, a region in memory
starting at 0xc8000000 that contains the color value of every pixel on the screen. Colors are
encoded as 16-bit integers that reserve 5 bits for the red channel, 6 bits for the green channel,
and 5 bits for the blue channel. That is, every 16-bit color is encoded like so:
15 … 11 10 … 5 4 … 0Red Green Blue
The pixel buffer is 320 pixels wide and 240 pixels high. Individual pixel colors can be accessed
at 0xc8000000 | (y << 10) | (x << 1), where x and y are valid x and y coordinates
on the screen (i.e., 0 ≤ x < 320, and 0 ≤ y < 240).As previously noted, we can also render characters. To do so, we will use the character buffer,
which is analogous to the pixel buffer, but for characters. The device’s VGA controller
continuously reads the character buffer and renders its contents as characters in a built-in font.The character buffer itself is a buffer of byte-sized ASCII characters at 0xc9000000. The buffer
has a width of 80 characters and a height of 60 characters. An individual character can be
accessed at 0xc9000000 | (y << 7) | x.To provide a slightly higher-level layer over the primitive functionality offered by the pixel and
character buffers, we will create a driver, i.e., a set of functions that can be used to control the
screen.To help get you started, we created an application that uses such functions to draw a testing
screen. Your job is to create a set of driver functions to support the application. Download vga.s
and augment it with the following four functions. Note the arguments and associated data types
in the following C prototypes.void VGA_draw_point_ASM(int x, int y, short c);
void VGA_clear_pixelbuff_ASM();
void VGA_write_char_ASM(int x, int y, char c);
void VGA_clear_charbuff_ASM();● VGA_draw_point_ASM draws a point on the screen at the specified (x, y) coordinates
in the indicated color c. The subroutine should check that the coordinates supplied are
valid, i.e., x in [0, 319] and y in [0, 239]. Hint: This subroutine should only access the
pixel buffer.● VGA_clear_pixelbuff_ASM clears (sets to 0) all the valid memory locations in the
pixel buffer. It takes no arguments and returns nothing. Hint: You can implement this
function by calling VGA_draw_point_ASM with a color value of zero for every valid
location on the screen.● VGA_write_char_ASM writes the ASCII code c to the screen at (x, y). The subroutine
should check that the coordinates supplied are valid, i.e., x in [0, 79] and y in [0, 59].
Hint: This subroutine should only access the character buffer.● VGA_clear_charbuff_ASM clears (sets to 0) all the valid memory locations in the
character buffer. It takes no arguments and returns nothing. Hint: You can implement this
function by calling VGA_write_char_ASM with a character value of zero for every
valid location on the screen.Notes:
● Use suffixes B and H with the assembly memory access instructions in order to
read/modify bytes/half-words in memory.
● You must follow the conventions taught in class. If you do not, then the testing code in
the next section will be unlikely to work.Testing the VGA driver
To test your VGA driver, run your finished assembly file. You can inspect the VGA output visually
using the VGA pixel buffer tab under the Devices panel of the simulator.If you implemented your driver correctly, compiling and running the program will draw the
following image.For the purpose of this lab, here’s a high level description of the PS/2 keyboard protocol. For a
more comprehensive resource, see Section 4.5 (pp. 45-46) of the DE1-SoC Computer Manual.The PS/2 bus provides data about keystroke events by sending hexadecimal numbers called
scan codes, which for this lab will vary from 1-3 bytes in length. When a key on the PS/2
keyboard is pressed, a unique scan code called the make code is sent, and when the key is
released, another scan code called the break code is sent. The scan code set used in this lab is
summarized by the table below. (Originally taken from Baruch Zoltan Francisc’s page on PS/2
scan codes.)KEY MAKE BREAK KEY MAKE BREAK KEY MAKE BREAK
A 1C F0,1C 9 46 F0,46 [ 54 FO,54
B 32 F0,32 ` 0E F0,0E INSERT E0,70
E0,F0,7
0
C 21 F0,21 – 4E F0,4E HOME E0,6C
E0,F0,6
C
D 23 F0,23 = 55 FO,55 PG UP E0,7D
E0,F0,7
D
E 24 F0,24 5D F0,5D DELETE E0,71
E0,F0,7
1
F 2B F0,2B BKSP 66 F0,66 END E0,69
E0,F0,6
9
G 34 F0,34 SPACE 29 F0,29 PG DN E0,7A
E0,F0,7
A
H 33 F0,33 TAB 0D F0,0D
U
ARROW
E0,75
E0,F0,7
5
I 43 F0,43 CAPS 58 F0,58
L
ARROW
E0,6B
E0,F0,6
B
J 3B F0,3B L SHFT 12 FO,12
D
ARROW
E0,72
E0,F0,7
2
K 42 F0,42 L CTRL 14 FO,14
R
ARROW
E0,74
E0,F0,7
4
L 4B F0,4B L GUI E0,1F
E0,F0,1
F
NUM 77 F0,77
M 3A F0,3A L ALT 11 F0,11 KP / E0,4A
E0,F0,4
A
N 31 F0,31 R SHFT 59 F0,59 KP * 7C F0,7C
O 44 F0,44 R CTRL E0,14
E0,F0,1
4
KP – 7B F0,7B
P 4D F0,4D R GUI E0,27
E0,F0,2
7
KP + 79 F0,79
Q 15 F0,15 R ALT E0,11
E0,F0,1
1
KP EN E0,5A
E0,F0,5
A
R 2D F0,2D APPS E0,2F
E0,F0,2
F
KP . 71 F0,71S 1B F0,1B ENTER 5A F0,5A KP 0 70 F0,70
T 2C F0,2C ESC 76 F0,76 KP 1 69 F0,69
U 3C F0,3C F1 05 F0,05 KP 2 72 F0,72
V 2A F0,2A F2 06 F0,06 KP 3 7A F0,7A
W 1D F0,1D F3 04 F0,04 KP 4 6B F0,6B
X 22 F0,22 F4 0C F0,0C KP 5 73 F0,73
Y 35 F0,35 F5 03 F0,03 KP 6 74 F0,74
Z 1A F0,1A F6 0B F0,0B KP 7 6C F0,6C
0 45 F0,45 F7 83 F0,83 KP 8 75 F0,75
1 16 F0,16 F8 0A F0,0A KP 9 7D F0,7D
2 1E F0,1E F9 01 F0,01 ] 5B F0,5B
3 26 F0,26 F10 09 F0,09 ; 4C F0,4C
4 25 F0,25 F11 78 F0,78 ‘ 52 F0,52
5 2E F0,2E F12 07 F0,07 , 41 F0,41
6 36 F0,36
PRNT
SCRN
E0,12,
E0,7C
E0,F0,
7C,E0,
F0,12
. 49 F0,49
7 3D F0,3D
SCROL
L
7E F0,7E / 4A F0,4A
8 3E F0,3E PAUSE
E1,14,7
7,
E1,F0,1
4,
F0,77Two other parameters involved are the typematic delay and the typematic rate. When a key is
pressed, the corresponding make code is sent, and if the key is held down, the same make
code is repeatedly sent at a constant rate after an initial delay. The initial delay ensures that
briefly pressing a key will not register as more than one keystroke.The make code will stop
being sent only if the key is released or another key is pressed. The initial delay between the
first and second make code is called the typematic delay, and the rate at which the make code
is sent after this is called the typematic rate. The typematic delay can range from 0.25 seconds
to 1.00 second and the typematic rate can range from 2.0 cps (characters per second) to 30.0
cps, with default values of 500 ms and 10.9 cps respectively.The DE1-SoC receives keyboard input from a memory-mapped PS/2 data register at address
0xff200100. Said register has an RVALID bit that states whether or not the current contents ofthe register represent a new value from the keyboard. The RVALID bit can be accessed by
shifting the data register 15 bits to the right and extracting the lowest bit, i.e.,
RVALID = ((*(volatile int *)0xff200100) >> 15) & 0x1. When RVALID is
true, the low eight bits of the PS/2 data register correspond to a byte of keyboard data.
The hardware knows when you read a value from the memory-mapped PS/2 data register and
will automatically present the next code when you read the data register again.For more details, see Section 4.5 (pp. 45-46) of the DE1-SoC Computer Manual.
Download ps2.s. This assembly file implements a program that reads keystrokes from the
keyboard and writes the PS/2 codes to the VGA screen using the character buffer. Copy your
VGA driver into it. Then implement a function that adheres to the following specifications. Note
the argument, return value, and associated data types in the following C prototype.int read_PS2_data_ASM(char *data);
● read_PS2_data_ASM checks the RVALID bit in the PS/2 Data register. If it is valid,
then the data should be read, stored at the address data, and the subroutine should
return 1. If the RVALID bit is not set, then the subroutine should return 0.Testing the PS/2 driver
To verify that the PS/2 driver is working correctly, you can type into the simulator’s PS/2
keyboard device and verify that the bytes showing up on the screen correspond to the expected
codes from the table in this section’s introduction.If you implemented your PS/2 and VGA drivers correctly, then the program will print make and
break codes whenever you type in the simulator’s keyboard input device. Make sure to use the
keyboard device that says 0xff200100.Note: If you did not manage to implement a working VGA driver, then you can still get credit for
the PS/2 driver by replacing write_byte with the implementation below. It will write PS/2
codes to memory address 0xfff0. Delete all calls to VGA driver functions and delete the
write_hex_digit function to ensure that your code still compiles.
write_byte:
push {r3, r4, lr}
ldr r4, =0xfff0
and r3, r3, #0xff
str r3, [r4]
pop {r3, r4, pc}We will now implement the Game of Life. (Playable here.) We’ll use a 16×12 grid, displayed in
VGA for the field of play, and use PS/2 input to a) toggle the state of grid locations, and b)
update game state.A quick note about grading
Unlike the previous deliverables, this one is a bit more explicitly broken out in terms of grading.
This final task is relatively challenging; the more detailed rubric is in place to clearly indicate the
partial credit available for partial solutions. x% below indicates that the code associated with a
particular subtask is worth x% of the total points available in the demo and report. It is possible
to get 70% of the marks for this lab without attempting to implement any GoL game logic.Getting started: drawing lines (10%)
Implementing the game will be easier with subroutines to assist us. It’s up to you to define
appropriate C function prototypes, and to follow the ARM APCS.
We’ll start by drawing the grid, line by line. Write an assembly subroutine that calls
VGA_draw_point_ASM repeated to fill pixels in a line from (x1
, y1
) to (x2
, y2
), where either x1 =
x2
(a vertical line) or y1 = y2
(a horizontal line):
● VGA_draw_line_ASM draws a line from pixel (x1
, y1
) to (x2
, y2
) in color c.
Begin writing your Game of Life program by writing and calling a subroutine that draws a 16×12
grid on the VGA display.● GoL_draw_grid_ASM draws a 16×12 grid in color c.
© Brett H. Meyer 9Next steps: drawing rectangles (10%)
Now let’s draw some rectangles. You have a choice at this point: you can write a new
standalone function that calls VGA_draw_point_ASM, or one that calls
VGA_draw_line_ASM, drawing rectangles line by line.● VGA_draw_rect_ASM draws a rectangle from pixel (x1
, y1
) to (x2
, y2
) in color c.
Put your new subroutine to work by writing a new subroutine that fills in a specified grid location
(x, y), 0 ≤ x < 16, 0 ≤ y < 12, with color c.● GoL_fill_gridxy_ASM fills the area of grid location (x, y) with color c.The next step is to start writing game logic, beginning with the process of initializing the game
environment, the board. The layout of the board will be saved in memory in a 2D structure with
dimensions 16×12, just like the grid we’ve drawn above. The board can be initialized to different
things to test game logic; it should be initialized to something interesting for your demo in order
to show off that this code works, that the game logic works, etc. The first example board given
does something interesting; there are many other examples of interesting configurations.Allocate the board somewhere in memory. We’ll use a ‘1’ to indicate an active grid location (it’s
alive!); a ‘0’ will indicate an inactive location. Note that the board below is defined assuming one
word per grid location; some game logic may be easier, or memory use may be more efficient, if
shorts or bytes are used instead. The choice is yours.GoLBoard:
// x 0 1 2 3 4 5 6 7 8 9 a b c d e f y
.word 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 // 0
.word 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 // 1
.word 0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 // 2
.word 0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 // 3
.word 0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 // 4
.word 0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0 // 5
.word 0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0 // 6
.word 0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 // 7
.word 0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 // 8
.word 0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 // 9
.word 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 // a
.word 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 // bWrite a function that calls GoL_fill_gridxy_ASM to fill in the grid locations with 1s in the
GoLBoard array:
● GoL_draw_board_ASM fills grid locations (x, y), 0 ≤ x < 16, 0 ≤ y < 12 with color c if
GoLBoard[y][x] == 1.Game logic: changing the playing field (10%)
A user may wish to modify the playing field either at the beginning or some later step in the
game. Initialize your board to display a cursor of your choice in (0,0). Use polling or interrupts to
check for a keypress on WASD. The cursor may be displayed at all times, or displayed only in
response to a keypress that moves it. It should not be possible to move the cursor off the field.● w: move the cursor up (toward lower y)
● a: move the cursor left (toward lower x)
● s: move the cursor down (toward higher y)
● d: move the cursor right (toward higher x)Your cursor can be anything you like that distinguishes it from the (in)active grid locations on the
board: a tile of a different color , an icon of a different shape, etc.
Using polling or interrupts, also check for a keypress on the spacebar.
● Spacebar: toggle the state of the grid location where the cursor is located.
It may be helpful for the cursor to look different if it is on a tile that is active vs. inactive .Game logic: state update (20%)
Now that all the building blocks are in place, we can implement the core of the game: the rules
for updating playing field state.Using polling or interrupts, additionally check for a keypress on n. When n is pressed, iterate
across all grid locations in the playing field, and update their state based on the state of their 8
neighboring cells (one in each cardinal direction, and another in each diagonal direction).
● Any active cell with 0 or 1 active neighbors becomes inactive.
● Any active cell with 2 or 3 active neighbors remains active.
● Any active cell with 4 or more active neighbors becomes inactive.
● Any inactive cell with exactly 3 active neighbors becomes active.
E.g.: this configuration, after a single press of n and update pass,
becomes this configuration.A wide variety of approaches are possible for performing the state update loop. E.g., you could
● Define a set of functions that check for each of the (4) update conditions, and iterate
across all grid locations in memory, calling all four functions for each.● Create a second data structure that mirrors the GoL board that keeps track of the
number of neighbors each cell has, and in a single pass update the GoL board (and
neighbor count state).Deliverables
Your demo is limited to 5 minutes. It is useful to highlight that your software computes correct
partial and final answers; draw our attention to the registers and memory contents at
appropriate points to demonstrate that your software operates as expected.Your demo will be graded by assessing, for each software deliverable, the correctness of the
observed behavior, and the correctness of your description of that behavior.
In your report, for each software deliverable, describe:
● Your approach (e.g., how you used subroutines, the stack, etc)
● Testing strategy used (e.g., corner cases that you considered)
● Challenges you faced, if any, and your solutions
● Shortcomings, possible improvements, etcNote that you need not describe the operation of the given libraries, only how you made use of
the provided functions.Your report is limited to a total of four pages in single column format (no smaller than 10 pt font,
no narrower than 1” margins). Please do not forget to include your full name and student ID
number. It will be graded by assessing, for each software deliverable, your report’s clarity,
organization, and technical content.Demo Schedule
Due to the timing of statutory holidays on April 7th and 10th, the demo schedule for Lab 3 will be
as follows:
● Wednesday, April 5th, 1:30-3:30
● Thursday, April 6th, 1:30-3:30
● Tuesday, April 11th, 1:30-3:30
● Wednesday, April 12th, 1:30-3:30, and 3:30-5:30 — follows the Monday lab schedule!
● Thursday, April 13th, 1:30-3:30 — follows the Friday lab schedule!Grading
Your demo and report are equally weighted. The breakdown for the demo and report are as
follows:
Demo
● 20% Part 1: VGA driver
● 20% Part 2: PS/2 driver
● 60% Part 3: Game of Life application
Each section will be graded for (a) clarity, (b) technical content, and (c) correct execution:
● 1pt clarity: the demo is clear and easy to follow
● 1pt technical content: correct terms are used to describe your software
● 3pt correctness: given an input, the correct output is clearly demonstratedReport
● 20% Part 1: VGA driver
● 20% Part 2: PS/2 driver
● 60% Part 3: Game of Life application
Each section will be graded for: (a) clarity, (b) organization, and (c) technical content:
● 1pt clarity: grammar, syntax, word choice
● 1pt organization: clear narrative flow from problem description, approach, testing,
challenges, etc.● 3pt technical content: appropriate use of terms, description of proposed
approach, description of testing and results, etc.
Submission
Please submit, on MyCourses, your source code and report in a single .zip archive, using the
following file name conventions:
● Code: part1.s, part2.s, part3.s
● Report: StudentID_FullName_Lab3_report.pdf

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shopping Cart
[SOLVED] Ecse 324 lab 3: keyboard and display
$25