2
* Copyright (c) 2008 Pavel Rimsky
5
* Redistribution and use in source and binary forms, with or without
6
* modification, are permitted provided that the following conditions
9
* - Redistributions of source code must retain the above copyright
10
* notice, this list of conditions and the following disclaimer.
11
* - Redistributions in binary form must reproduce the above copyright
12
* notice, this list of conditions and the following disclaimer in the
13
* documentation and/or other materials provided with the distribution.
14
* - The name of the author may not be used to endorse or promote products
15
* derived from this software without specific prior written permission.
17
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
/** @addtogroup kbd_port
34
* @brief SGCN (Serengeti Console) keyboard port driver.
48
#define POLL_INTERVAL 10000
51
* SGCN buffer header. It is placed at the very beginning of the SGCN
55
/** hard-wired to "CON" */
58
/** we don't need this */
61
/** offset within the SGCN buffer of the input buffer start */
64
/** offset within the SGCN buffer of the input buffer end */
67
/** offset within the SGCN buffer of the input buffer read pointer */
70
/** offset within the SGCN buffer of the input buffer write pointer */
72
} __attribute__ ((packed)) sgcn_buffer_header_t;
75
* Returns a pointer to the object of a given type which is placed at the given
76
* offset from the console buffer beginning.
78
#define SGCN_BUFFER(type, offset) \
79
((type *) (sram_virt_addr + sram_buffer_offset + (offset)))
81
/** Returns a pointer to the console buffer header. */
82
#define SGCN_BUFFER_HEADER (SGCN_BUFFER(sgcn_buffer_header_t, 0))
85
* Virtual address mapped to SRAM.
87
static uintptr_t sram_virt_addr;
90
* SGCN buffer offset within SGCN.
92
static uintptr_t sram_buffer_offset;
95
static void sgcn_thread_impl(void *arg);
97
static volatile bool polling_disabled = false;
100
* Initializes the SGCN driver.
101
* Maps the physical memory (SRAM) and creates the polling thread.
103
int kbd_port_init(void)
106
if (sysinfo_get_value("sram.address.physical", &sram_paddr) != EOK)
110
if (sysinfo_get_value("sram.area.size", &sram_size) != EOK)
113
if (sysinfo_get_value("sram.buffer.offset", &sram_buffer_offset) != EOK)
114
sram_buffer_offset = 0;
116
sram_virt_addr = (uintptr_t) as_get_mappable_page(sram_size);
118
if (physmem_map((void *) sram_paddr, (void *) sram_virt_addr,
119
sram_size / PAGE_SIZE, AS_AREA_READ | AS_AREA_WRITE) != 0) {
120
printf("SGCN: uspace driver could not map physical memory.");
125
int rc = thread_create(sgcn_thread_impl, NULL, "kbd_poll", &tid);
132
void kbd_port_yield(void)
134
polling_disabled = true;
137
void kbd_port_reclaim(void)
139
polling_disabled = false;
142
void kbd_port_write(uint8_t data)
148
* Handler of the "key pressed" event. Reads codes of all the pressed keys from
151
static void sgcn_key_pressed(void)
155
uint32_t begin = SGCN_BUFFER_HEADER->in_begin;
156
uint32_t end = SGCN_BUFFER_HEADER->in_end;
157
uint32_t size = end - begin;
159
volatile char *buf_ptr = (volatile char *)
160
SGCN_BUFFER(char, SGCN_BUFFER_HEADER->in_rdptr);
161
volatile uint32_t *in_wrptr_ptr = &(SGCN_BUFFER_HEADER->in_wrptr);
162
volatile uint32_t *in_rdptr_ptr = &(SGCN_BUFFER_HEADER->in_rdptr);
164
while (*in_rdptr_ptr != *in_wrptr_ptr) {
166
*in_rdptr_ptr = (((*in_rdptr_ptr) - begin + 1) % size) + begin;
167
buf_ptr = (volatile char *)
168
SGCN_BUFFER(char, SGCN_BUFFER_HEADER->in_rdptr);
169
kbd_push_scancode(c);
174
* Thread to poll SGCN for keypresses.
176
static void sgcn_thread_impl(void *arg)
181
if (polling_disabled == false)
183
usleep(POLL_INTERVAL);