#pypp 0 // Iris: micro-kernel for a capability-based operating system. // thread0.ccp: Testing userspace thread. // Copyright 2009 Bas Wijnen // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . #include #include "devices.hh" #include "jz4730.hh" // GPIO pins for the keyboard:// // Rows = 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 125 // Cols = 0, 1, 2, 3, 4, 5, 6, 7 static void event (bool release, unsigned row, unsigned col): kdebug (col * 2 + (release ? 1 : 0)) #define ROW_MASK 0x2000ffff #define COL_MASK 0x000000ff int main (): map_gpio () // Disable all interrupts. GPIO_GPIER (3) &= ~ROW_MASK GPIO_GPIER (0) &= ~COL_MASK // Set all to GPIO. GPIO_GPALR (3) = 0 GPIO_GPAUR (3) &= ~0x0c000000 GPIO_GPALR (0) &= ~0x0003ffff // Set all rows to input and enable the pull-ups. GPIO_GPDIR (0) &= ~COL_MASK GPIO_GPPUR (0) |= COL_MASK // Set all columns to input and enable the pull-ups; set to 0 when output. GPIO_GPDIR (3) &= ROW_MASK GPIO_GPPUR (3) |= ROW_MASK GPIO_GPDR (3) &= ~ROW_MASK #define NUM_COLS 17 unsigned keys[NUM_COLS] for unsigned i = 0; i < NUM_COLS; ++i: keys[i] = 0 // Pin numbers for the cols, relative to the start of the port (so minus 0x60). int const cols[NUM_COLS] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 29 } while true: // read keyboard unsigned data[NUM_COLS] for unsigned col = 0; col < NUM_COLS; ++col: GPIO_GPDIR (3) = (GPIO_GPDIR (3) & ~ROW_MASK) | 1 << cols[col] udelay (100) unsigned data = GPIO_GPDR (0) & COL_MASK // Generate events. for unsigned row = 0; row < 8; ++row: if (data ^ keys[col]) & (1 << row): event (data & (1 << row), row, col) keys[col] = data schedule ()