Subversion Repositories HelenOS

Rev

Rev 3514 | Rev 3618 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3514 Rev 3549
1
/*
1
/*
2
 * Copyright (c) 2008 Pavel Rimsky
2
 * Copyright (c) 2008 Pavel Rimsky
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
8
 *
8
 *
9
 * - Redistributions of source code must retain the above copyright
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
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
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.
15
 *   derived from this software without specific prior written permission.
16
 *
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
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
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
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
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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
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.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
/** @addtogroup sparc64
29
/** @addtogroup sparc64
30
 * @{
30
 * @{
31
 */
31
 */
32
/**
32
/**
33
 * @file
33
 * @file
34
 * @brief   SGCN driver.
34
 * @brief   SGCN driver.
35
 */
35
 */
36
 
36
 
37
#include <arch/drivers/sgcn.h>
37
#include <arch/drivers/sgcn.h>
-
 
38
#include <arch/drivers/kbd.h>
38
#include <genarch/ofw/ofw_tree.h>
39
#include <genarch/ofw/ofw_tree.h>
39
#include <debug.h>
40
#include <debug.h>
40
#include <func.h>
41
#include <func.h>
41
#include <print.h>
42
#include <print.h>
42
#include <mm/page.h>
43
#include <mm/page.h>
-
 
44
#include <ipc/irq.h>
-
 
45
#include <ddi/ddi.h>
-
 
46
#include <ddi/device.h>
43
#include <console/chardev.h>
47
#include <console/chardev.h>
44
#include <console/console.h>
48
#include <console/console.h>
-
 
49
#include <ddi/device.h>
-
 
50
#include <sysinfo/sysinfo.h>
45
#include <synch/spinlock.h>
51
#include <synch/spinlock.h>
46
 
52
 
47
/*
53
/*
48
 * Physical address at which the SBBC starts. This value has been obtained
54
 * Physical address at which the SBBC starts. This value has been obtained
49
 * by inspecting (using Simics) memory accesses made by OBP. It is valid
55
 * by inspecting (using Simics) memory accesses made by OBP. It is valid
50
 * for the Simics-simulated Serengeti machine. The author of this code is
56
 * for the Simics-simulated Serengeti machine. The author of this code is
51
 * not sure whether this value is valid generally.
57
 * not sure whether this value is valid generally.
52
 */
58
 */
53
#define SBBC_START      0x63000000000
59
#define SBBC_START      0x63000000000
54
 
60
 
55
/* offset of SRAM within the SBBC memory */
61
/* offset of SRAM within the SBBC memory */
56
#define SBBC_SRAM_OFFSET    0x900000
62
#define SBBC_SRAM_OFFSET    0x900000
57
 
63
 
-
 
64
/* size (in bytes) of the physical memory area which will be mapped */
-
 
65
#define MAPPED_AREA_SIZE    (128 * 1024)
-
 
66
 
58
/* magic string contained at the beginning of SRAM */
67
/* magic string contained at the beginning of SRAM */
59
#define SRAM_TOC_MAGIC      "TOCSRAM"
68
#define SRAM_TOC_MAGIC      "TOCSRAM"
60
 
69
 
61
/*
70
/*
62
 * Key into the SRAM table of contents which identifies the entry
71
 * Key into the SRAM table of contents which identifies the entry
63
 * describing the OBP console buffer. It is worth mentioning
72
 * describing the OBP console buffer. It is worth mentioning
64
 * that the OBP console buffer is not the only console buffer
73
 * that the OBP console buffer is not the only console buffer
65
 * which can be used. It is, however, used because when the kernel
74
 * which can be used. It is, however, used because when the kernel
66
 * is running, the OBP buffer is not used by OBP any more but OBP
75
 * is running, the OBP buffer is not used by OBP any more but OBP
67
 * has already made neccessary arangements so that the output will
76
 * has already made neccessary arangements so that the output will
68
 * be read from the OBP buffer and input will go to the OBP buffer.
77
 * be read from the OBP buffer and input will go to the OBP buffer.
69
 * Therefore HelenOS needs to make no such arrangements any more.
78
 * Therefore HelenOS needs to make no such arrangements any more.
70
 */
79
 */
71
#define CONSOLE_KEY     "OBPCONS"
80
#define CONSOLE_KEY     "OBPCONS"
72
 
81
 
73
/* magic string contained at the beginning of the console buffer */
82
/* magic string contained at the beginning of the console buffer */
74
#define SGCN_BUFFER_MAGIC   "CON"
83
#define SGCN_BUFFER_MAGIC   "CON"
75
 
84
 
-
 
85
/**
-
 
86
 * The driver is polling based, but in order to notify the userspace
-
 
87
 * of a key being pressed, we need to supply the interface with some
-
 
88
 * interrupt number. The interrupt number can be arbitrary as it it
-
 
89
 * will never be used for identifying HW interrupts, but only in
-
 
90
 * notifying the userspace.
-
 
91
 */
-
 
92
#define FICTIONAL_INR       1
-
 
93
 
76
 
94
 
77
/*
95
/*
78
 * Returns a pointer to the object of a given type which is placed at the given
96
 * Returns a pointer to the object of a given type which is placed at the given
79
 * offset from the SRAM beginning.
97
 * offset from the SRAM beginning.
80
 */
98
 */
81
#define SRAM(type, offset)  ((type *) (sram_begin + (offset)))
99
#define SRAM(type, offset)  ((type *) (sram_begin + (offset)))
82
 
100
 
83
/* Returns a pointer to the SRAM table of contents. */
101
/* Returns a pointer to the SRAM table of contents. */
84
#define SRAM_TOC        (SRAM(iosram_toc_t, 0))
102
#define SRAM_TOC        (SRAM(iosram_toc_t, 0))
85
 
103
 
86
/*
104
/*
87
 * Returns a pointer to the object of a given type which is placed at the given
105
 * Returns a pointer to the object of a given type which is placed at the given
88
 * offset from the console buffer beginning.
106
 * offset from the console buffer beginning.
89
 */
107
 */
90
#define SGCN_BUFFER(type, offset) \
108
#define SGCN_BUFFER(type, offset) \
91
                ((type *) (sgcn_buffer_begin + (offset)))
109
                ((type *) (sgcn_buffer_begin + (offset)))
92
 
110
 
93
/* Returns a pointer to the console buffer header. */
111
/** Returns a pointer to the console buffer header. */
94
#define SGCN_BUFFER_HEADER  (SGCN_BUFFER(sgcn_buffer_header_t, 0))
112
#define SGCN_BUFFER_HEADER  (SGCN_BUFFER(sgcn_buffer_header_t, 0))
95
 
113
 
-
 
114
/** defined in drivers/kbd.c */
-
 
115
extern kbd_type_t kbd_type;
96
 
116
 
97
/* starting address of SRAM, will be set by the init_sram_begin function */
117
/** starting address of SRAM, will be set by the init_sram_begin function */
98
static uintptr_t sram_begin;
118
static uintptr_t sram_begin;
99
 
119
 
100
/*
120
/**
101
 * starting address of the SGCN buffer, will be set by the
121
 * starting address of the SGCN buffer, will be set by the
102
 * init_sgcn_buffer_begin function
122
 * init_sgcn_buffer_begin function
103
 */
123
 */
104
static uintptr_t sgcn_buffer_begin;
124
static uintptr_t sgcn_buffer_begin;
105
 
125
 
-
 
126
/**
-
 
127
 * SGCN IRQ structure. So far used only for notifying the userspace of the
-
 
128
 * key being pressed, not for kernel being informed about keyboard interrupts.
-
 
129
 */
-
 
130
static irq_t sgcn_irq;
-
 
131
 
-
 
132
// TODO think of a way how to synchronize accesses to SGCN buffer between the kernel and the userspace
106
 
133
 
107
/*
134
/*
108
 * Ensures that writing to the buffer and consequent update of the write pointer
135
 * Ensures that writing to the buffer and consequent update of the write pointer
109
 * are together one atomic operation.
136
 * are together one atomic operation.
110
 */
137
 */
111
SPINLOCK_INITIALIZE(sgcn_output_lock);
138
SPINLOCK_INITIALIZE(sgcn_output_lock);
112
 
139
 
113
/*
140
/*
114
 * Ensures that reading from the buffer and consequent update of the read
141
 * Prevents the input buffer read/write pointers from getting to inconsistent
115
 * pointer are together one atomic operation.
142
 * state.
116
 */
143
 */
117
SPINLOCK_INITIALIZE(sgcn_input_lock);
144
SPINLOCK_INITIALIZE(sgcn_input_lock);
118
 
145
 
119
 
146
 
120
/* functions referenced from definitions of I/O operations structures */
147
/* functions referenced from definitions of I/O operations structures */
121
static void sgcn_noop(chardev_t *);
148
static void sgcn_noop(chardev_t *);
122
static void sgcn_putchar(chardev_t *, const char);
149
static void sgcn_putchar(chardev_t *, const char);
123
static char sgcn_key_read(chardev_t *);
150
static char sgcn_key_read(chardev_t *);
124
 
151
 
125
/** character device output operations */
152
/** character device operations */
126
static chardev_operations_t sgcn_output_ops = {
153
static chardev_operations_t sgcn_ops = {
127
    .suspend = sgcn_noop,
154
    .suspend = sgcn_noop,
128
    .resume = sgcn_noop,
155
    .resume = sgcn_noop,
129
    .write = sgcn_putchar,
156
    .read = sgcn_key_read,
130
    .read = NULL
157
    .write = sgcn_putchar
131
};
158
};
132
 
159
 
133
/** character device input operations */
-
 
134
static chardev_operations_t sgcn_input_ops = {
-
 
135
    .suspend = sgcn_noop,
-
 
136
    .resume = sgcn_noop,
-
 
137
    .read = sgcn_key_read
-
 
138
};
-
 
139
 
-
 
140
 
-
 
141
/** SGCN character output device */
-
 
142
chardev_t sgcn_stdout;
-
 
143
 
-
 
144
/** SGCN character input device */
160
/** SGCN character device */
145
chardev_t sgcn_input;
161
chardev_t sgcn_io;
146
 
162
 
-
 
163
/**
-
 
164
 * Registers the physical area of the SRAM so that the userspace SGCN
-
 
165
 * driver can map it. Moreover, it sets some sysinfo values (SRAM address
-
 
166
 * and SRAM size).
-
 
167
 */
-
 
168
static void register_sram_parea(uintptr_t sram_begin_physical)
-
 
169
{
-
 
170
    static parea_t sram_parea;
-
 
171
    sram_parea.pbase = sram_begin_physical;
-
 
172
    sram_parea.vbase = (uintptr_t) sram_begin;
-
 
173
    sram_parea.frames = MAPPED_AREA_SIZE / FRAME_SIZE;
-
 
174
    sram_parea.cacheable = false;
-
 
175
    ddi_parea_register(&sram_parea);
-
 
176
   
-
 
177
    sysinfo_set_item_val("sram.area.size", NULL, MAPPED_AREA_SIZE);
-
 
178
    sysinfo_set_item_val("sram.address.physical", NULL, sram_begin_physical);
-
 
179
}
147
 
180
 
148
/**
181
/**
149
 * Initializes the starting address of SRAM.
182
 * Initializes the starting address of SRAM.
150
 *
183
 *
151
 * The SRAM starts 0x900000 + C bytes behind the SBBC start in the
184
 * The SRAM starts 0x900000 + C bytes behind the SBBC start in the
152
 * physical memory, where C is the value read from the "iosram-toc"
185
 * physical memory, where C is the value read from the "iosram-toc"
153
 * property of the "/chosen" OBP node. The sram_begin variable will
186
 * property of the "/chosen" OBP node. The sram_begin variable will
154
 * be set to the virtual address which maps to the SRAM physical
187
 * be set to the virtual address which maps to the SRAM physical
155
 * address.
188
 * address.
-
 
189
 *
-
 
190
 * It also registers the physical area of SRAM and sets some sysinfo
-
 
191
 * values (SRAM address and SRAM size).
156
 */
192
 */
157
static void init_sram_begin(void)
193
static void init_sram_begin(void)
158
{
194
{
159
    ofw_tree_node_t *chosen;
195
    ofw_tree_node_t *chosen;
160
    ofw_tree_property_t *iosram_toc;
196
    ofw_tree_property_t *iosram_toc;
-
 
197
    uintptr_t sram_begin_physical;
161
 
198
 
162
    chosen = ofw_tree_lookup("/chosen");
199
    chosen = ofw_tree_lookup("/chosen");
163
    if (!chosen)
200
    if (!chosen)
164
        panic("Can't find /chosen.\n");
201
        panic("Can't find /chosen.\n");
165
 
202
 
166
    iosram_toc = ofw_tree_getprop(chosen, "iosram-toc");
203
    iosram_toc = ofw_tree_getprop(chosen, "iosram-toc");
167
    if (!iosram_toc)
204
    if (!iosram_toc)
168
        panic("Can't find property \"iosram-toc\".\n");
205
        panic("Can't find property \"iosram-toc\".\n");
169
    if (!iosram_toc->value)
206
    if (!iosram_toc->value)
170
        panic("Can't find SRAM TOC.\n");
207
        panic("Can't find SRAM TOC.\n");
171
 
208
 
172
    sram_begin = hw_map(
-
 
173
        SBBC_START + SBBC_SRAM_OFFSET
209
    sram_begin_physical = SBBC_START + SBBC_SRAM_OFFSET
174
        + *((uint32_t *) iosram_toc->value),
210
        + *((uint32_t *) iosram_toc->value);
-
 
211
    sram_begin = hw_map(sram_begin_physical, MAPPED_AREA_SIZE);
-
 
212
   
175
        128 * 1024);
213
    register_sram_parea(sram_begin_physical);
176
}
214
}
177
 
215
 
178
/**
216
/**
179
 * Initializes the starting address of the SGCN buffer.
217
 * Initializes the starting address of the SGCN buffer.
180
 *
218
 *
181
 * The offset of the SGCN buffer within SRAM is obtained from the
219
 * The offset of the SGCN buffer within SRAM is obtained from the
182
 * SRAM table of contents. The table of contents contains
220
 * SRAM table of contents. The table of contents contains
183
 * information about several buffers, among which there is an OBP
221
 * information about several buffers, among which there is an OBP
184
 * console buffer - this one will be used as the SGCN buffer.
222
 * console buffer - this one will be used as the SGCN buffer.
-
 
223
 *
-
 
224
 * This function also writes the offset of the SGCN buffer within SRAM
-
 
225
 * under the sram.buffer.offset sysinfo key.
185
 */
226
 */
186
static void sgcn_buffer_begin_init(void)
227
static void sgcn_buffer_begin_init(void)
187
{
228
{
188
    init_sram_begin();
229
    init_sram_begin();
189
       
230
       
190
    ASSERT(strcmp(SRAM_TOC->magic, SRAM_TOC_MAGIC) == 0);
231
    ASSERT(strcmp(SRAM_TOC->magic, SRAM_TOC_MAGIC) == 0);
191
   
232
   
192
    /* lookup TOC entry with the correct key */
233
    /* lookup TOC entry with the correct key */
193
    uint32_t i;
234
    uint32_t i;
194
    for (i = 0; i < MAX_TOC_ENTRIES; i++) {
235
    for (i = 0; i < MAX_TOC_ENTRIES; i++) {
195
        if (strcmp(SRAM_TOC->keys[i].key, CONSOLE_KEY) == 0)
236
        if (strcmp(SRAM_TOC->keys[i].key, CONSOLE_KEY) == 0)
196
            break;
237
            break;
197
    }
238
    }
198
    ASSERT(i < MAX_TOC_ENTRIES);
239
    ASSERT(i < MAX_TOC_ENTRIES);
199
   
240
   
200
    sgcn_buffer_begin = sram_begin + SRAM_TOC->keys[i].offset;
241
    sgcn_buffer_begin = sram_begin + SRAM_TOC->keys[i].offset;
-
 
242
   
-
 
243
    sysinfo_set_item_val("sram.buffer.offset", NULL,
-
 
244
        SRAM_TOC->keys[i].offset);
201
}
245
}
202
 
246
 
203
/**
247
/**
204
 * Default suspend/resume operation for the input device.
248
 * Default suspend/resume operation for the input device.
205
 */
249
 */
206
static void sgcn_noop(chardev_t *d)
250
static void sgcn_noop(chardev_t *d)
207
{
251
{
208
}
252
}
209
 
253
 
210
/**
254
/**
211
 * Writes a single character to the SGCN (circular) output buffer
255
 * Writes a single character to the SGCN (circular) output buffer
212
 * and updates the output write pointer so that SGCN gets to know
256
 * and updates the output write pointer so that SGCN gets to know
213
 * that the character has been written.
257
 * that the character has been written.
214
 */
258
 */
215
static void sgcn_do_putchar(const char c)
259
static void sgcn_do_putchar(const char c)
216
{
260
{
217
    uint32_t begin = SGCN_BUFFER_HEADER->out_begin;
261
    uint32_t begin = SGCN_BUFFER_HEADER->out_begin;
218
    uint32_t end = SGCN_BUFFER_HEADER->out_end;
262
    uint32_t end = SGCN_BUFFER_HEADER->out_end;
219
    uint32_t size = end - begin;
263
    uint32_t size = end - begin;
220
   
264
   
221
    /* we need pointers to volatile variables */
265
    /* we need pointers to volatile variables */
222
    volatile char *buf_ptr = (volatile char *)
266
    volatile char *buf_ptr = (volatile char *)
223
        SGCN_BUFFER(char, SGCN_BUFFER_HEADER->out_wrptr);
267
        SGCN_BUFFER(char, SGCN_BUFFER_HEADER->out_wrptr);
224
    volatile uint32_t *out_wrptr_ptr = &(SGCN_BUFFER_HEADER->out_wrptr);
268
    volatile uint32_t *out_wrptr_ptr = &(SGCN_BUFFER_HEADER->out_wrptr);
225
    volatile uint32_t *out_rdptr_ptr = &(SGCN_BUFFER_HEADER->out_rdptr);
269
    volatile uint32_t *out_rdptr_ptr = &(SGCN_BUFFER_HEADER->out_rdptr);
226
 
270
 
227
    /*
271
    /*
228
     * Write the character and increment the write pointer modulo the
272
     * Write the character and increment the write pointer modulo the
229
     * output buffer size. Note that if we are to rewrite a character
273
     * output buffer size. Note that if we are to rewrite a character
230
     * which has not been read by the SGCN controller yet (i.e. the output
274
     * which has not been read by the SGCN controller yet (i.e. the output
231
     * buffer is full), we need to wait until the controller reads some more
275
     * buffer is full), we need to wait until the controller reads some more
232
     * characters. We wait actively, which means that all threads waiting
276
     * characters. We wait actively, which means that all threads waiting
233
     * for the lock are blocked. However, this situation is
277
     * for the lock are blocked. However, this situation is
234
     *   1) rare - the output buffer is big, so filling the whole
278
     *   1) rare - the output buffer is big, so filling the whole
235
     *             output buffer is improbable
279
     *             output buffer is improbable
236
     *   2) short-lasting - it will take the controller only a fraction
280
     *   2) short-lasting - it will take the controller only a fraction
237
     *             of millisecond to pick the unread characters up
281
     *             of millisecond to pick the unread characters up
238
     *   3) not serious - the blocked threads are those that print something
282
     *   3) not serious - the blocked threads are those that print something
239
     *             to user console, which is not a time-critical operation
283
     *             to user console, which is not a time-critical operation
240
     */
284
     */
241
    uint32_t new_wrptr = (((*out_wrptr_ptr) - begin + 1) % size) + begin;
285
    uint32_t new_wrptr = (((*out_wrptr_ptr) - begin + 1) % size) + begin;
242
    while (*out_rdptr_ptr == new_wrptr)
286
    while (*out_rdptr_ptr == new_wrptr)
243
        ;
287
        ;
244
    *buf_ptr = c;
288
    *buf_ptr = c;
245
    *out_wrptr_ptr = new_wrptr;
289
    *out_wrptr_ptr = new_wrptr;
246
}
290
}
247
 
291
 
248
/**
292
/**
249
 * SGCN output operation. Prints a single character to the SGCN. If the line
293
 * SGCN output operation. Prints a single character to the SGCN. If the line
250
 * feed character is written ('\n'), the carriage return character ('\r') is
294
 * feed character is written ('\n'), the carriage return character ('\r') is
251
 * written straight away.
295
 * written straight away.
252
 */
296
 */
253
static void sgcn_putchar(struct chardev * cd, const char c)
297
static void sgcn_putchar(struct chardev * cd, const char c)
254
{
298
{
255
    spinlock_lock(&sgcn_output_lock);
299
    spinlock_lock(&sgcn_output_lock);
256
   
300
   
257
    sgcn_do_putchar(c);
301
    sgcn_do_putchar(c);
258
    if (c == '\n') {
302
    if (c == '\n') {
259
        sgcn_do_putchar('\r');
303
        sgcn_do_putchar('\r');
260
    }
304
    }
261
   
305
   
262
    spinlock_unlock(&sgcn_output_lock);
306
    spinlock_unlock(&sgcn_output_lock);
263
}
307
}
264
 
308
 
265
/**
309
/**
266
 * Called when actively reading the character. Not implemented yet.
310
 * Called when actively reading the character. Not implemented yet.
267
 */
311
 */
268
static char sgcn_key_read(chardev_t *d)
312
static char sgcn_key_read(chardev_t *d)
269
{
313
{
270
    return (char) 0;
314
    return (char) 0;
271
}
315
}
272
 
316
 
273
/**
317
/**
-
 
318
 * The driver works in polled mode, so no interrupt should be handled by it.
-
 
319
 */
-
 
320
static irq_ownership_t sgcn_claim(void)
-
 
321
{
-
 
322
    return IRQ_DECLINE;
-
 
323
}
-
 
324
 
-
 
325
/**
-
 
326
 * The driver works in polled mode, so no interrupt should be handled by it.
-
 
327
 */
-
 
328
static void sgcn_irq_handler(irq_t *irq, void *arg, ...)
-
 
329
{
-
 
330
    panic("Not yet implemented, SGCN works in polled mode.\n");
-
 
331
}
-
 
332
 
-
 
333
/**
-
 
334
 * Grabs the input for kernel.
-
 
335
 */
-
 
336
void sgcn_grab(void)
-
 
337
{
-
 
338
    ipl_t ipl = interrupts_disable();
-
 
339
   
-
 
340
    volatile uint32_t *in_wrptr_ptr = &(SGCN_BUFFER_HEADER->in_wrptr);
-
 
341
    volatile uint32_t *in_rdptr_ptr = &(SGCN_BUFFER_HEADER->in_rdptr);
-
 
342
   
-
 
343
    /* skip all the user typed before the grab and hasn't been processed */
-
 
344
    spinlock_lock(&sgcn_input_lock);
-
 
345
    *in_rdptr_ptr = *in_wrptr_ptr;
-
 
346
    spinlock_unlock(&sgcn_input_lock);
-
 
347
 
-
 
348
    spinlock_lock(&sgcn_irq.lock);
-
 
349
    sgcn_irq.notif_cfg.notify = false;
-
 
350
    spinlock_unlock(&sgcn_irq.lock);
-
 
351
   
-
 
352
    interrupts_restore(ipl);
-
 
353
}
-
 
354
 
-
 
355
/**
-
 
356
 * Releases the input so that userspace can use it.
-
 
357
 */
-
 
358
void sgcn_release(void)
-
 
359
{
-
 
360
    ipl_t ipl = interrupts_disable();
-
 
361
    spinlock_lock(&sgcn_irq.lock);
-
 
362
    if (sgcn_irq.notif_cfg.answerbox)
-
 
363
        sgcn_irq.notif_cfg.notify = true;
-
 
364
    spinlock_unlock(&sgcn_irq.lock);
-
 
365
    interrupts_restore(ipl);
-
 
366
}
-
 
367
 
-
 
368
/**
274
 * Function regularly called by the keyboard polling thread. Finds out whether
369
 * Function regularly called by the keyboard polling thread. Finds out whether
275
 * there are some unread characters in the input queue. If so, it picks them up
370
 * there are some unread characters in the input queue. If so, it picks them up
276
 * and sends them to the upper layers of HelenOS.
371
 * and sends them to the upper layers of HelenOS.
277
 */
372
 */
278
void sgcn_poll(void)
373
void sgcn_poll(void)
279
{
374
{
280
    spinlock_lock(&sgcn_input_lock);
-
 
281
   
-
 
282
    char c;
-
 
283
    uint32_t begin = SGCN_BUFFER_HEADER->in_begin;
375
    uint32_t begin = SGCN_BUFFER_HEADER->in_begin;
284
    uint32_t end = SGCN_BUFFER_HEADER->in_end;
376
    uint32_t end = SGCN_BUFFER_HEADER->in_end;
285
    uint32_t size = end - begin;
377
    uint32_t size = end - begin;
286
   
378
   
-
 
379
    spinlock_lock(&sgcn_input_lock);
-
 
380
   
-
 
381
    ipl_t ipl = interrupts_disable();
-
 
382
    spinlock_lock(&sgcn_irq.lock);
-
 
383
   
287
    /* we need pointers to volatile variables */
384
    /* we need pointers to volatile variables */
288
    volatile char *buf_ptr = (volatile char *)
385
    volatile char *buf_ptr = (volatile char *)
289
        SGCN_BUFFER(char, SGCN_BUFFER_HEADER->in_rdptr);
386
        SGCN_BUFFER(char, SGCN_BUFFER_HEADER->in_rdptr);
290
    volatile uint32_t *in_wrptr_ptr = &(SGCN_BUFFER_HEADER->in_wrptr);
387
    volatile uint32_t *in_wrptr_ptr = &(SGCN_BUFFER_HEADER->in_wrptr);
291
    volatile uint32_t *in_rdptr_ptr = &(SGCN_BUFFER_HEADER->in_rdptr);
388
    volatile uint32_t *in_rdptr_ptr = &(SGCN_BUFFER_HEADER->in_rdptr);
292
   
389
   
-
 
390
    if (*in_rdptr_ptr != *in_wrptr_ptr) {
-
 
391
        if (sgcn_irq.notif_cfg.notify && sgcn_irq.notif_cfg.answerbox) {
-
 
392
            ipc_irq_send_notif(&sgcn_irq);
-
 
393
            spinlock_unlock(&sgcn_irq.lock);
-
 
394
            interrupts_restore(ipl);
-
 
395
            spinlock_unlock(&sgcn_input_lock);
-
 
396
            return;
-
 
397
        }
-
 
398
    }
-
 
399
   
-
 
400
    spinlock_unlock(&sgcn_irq.lock);
-
 
401
    interrupts_restore(ipl);   
-
 
402
 
293
    while (*in_rdptr_ptr != *in_wrptr_ptr) {
403
    while (*in_rdptr_ptr != *in_wrptr_ptr) {
294
        c = *buf_ptr;
404
       
295
        *in_rdptr_ptr = (((*in_rdptr_ptr) - begin + 1) % size) + begin;
-
 
296
        buf_ptr = (volatile char *)
405
        buf_ptr = (volatile char *)
297
            SGCN_BUFFER(char, SGCN_BUFFER_HEADER->in_rdptr);
406
            SGCN_BUFFER(char, SGCN_BUFFER_HEADER->in_rdptr);
298
        chardev_push_character(&sgcn_input, c);
407
        char c = *buf_ptr;
-
 
408
        *in_rdptr_ptr = (((*in_rdptr_ptr) - begin + 1) % size) + begin;
-
 
409
           
299
        if (c == '\r')
410
        if (c == '\r') {
-
 
411
            c = '\n';
-
 
412
        }
300
            chardev_push_character(&sgcn_input, '\n');
413
        chardev_push_character(&sgcn_io, c);   
301
    }
414
    }  
302
   
415
   
303
    spinlock_unlock(&sgcn_input_lock);
416
    spinlock_unlock(&sgcn_input_lock);
304
}
417
}
305
 
418
 
306
/**
419
/**
307
 * A public function which initializes I/O from/to Serengeti console
420
 * A public function which initializes I/O from/to Serengeti console
308
 * and sets it as a default input/output.
421
 * and sets it as a default input/output.
309
 */
422
 */
310
void sgcn_init(void)
423
void sgcn_init(void)
311
{
424
{
312
    sgcn_buffer_begin_init();
425
    sgcn_buffer_begin_init();
-
 
426
 
-
 
427
    kbd_type = KBD_SGCN;
-
 
428
 
-
 
429
    devno_t devno = device_assign_devno();
-
 
430
    irq_initialize(&sgcn_irq);
-
 
431
    sgcn_irq.devno = devno;
-
 
432
    sgcn_irq.inr = FICTIONAL_INR;
-
 
433
    sgcn_irq.claim = sgcn_claim;
-
 
434
    sgcn_irq.handler = sgcn_irq_handler;
-
 
435
    irq_register(&sgcn_irq);
313
   
436
   
-
 
437
    sysinfo_set_item_val("kbd", NULL, true);
-
 
438
    sysinfo_set_item_val("kbd.type", NULL, KBD_SGCN);
-
 
439
    sysinfo_set_item_val("kbd.devno", NULL, devno);
314
    chardev_initialize("sgcn_output", &sgcn_stdout, &sgcn_output_ops);
440
    sysinfo_set_item_val("kbd.inr", NULL, FICTIONAL_INR);
315
    stdout = &sgcn_stdout;
441
    sysinfo_set_item_val("fb.kind", NULL, 4);
316
   
442
   
317
    chardev_initialize("sgcn_input", &sgcn_input, &sgcn_input_ops);
443
    chardev_initialize("sgcn_io", &sgcn_io, &sgcn_ops);
318
    stdin = &sgcn_input;
444
    stdin = &sgcn_io;
-
 
445
    stdout = &sgcn_io;
319
}
446
}
320
 
447
 
321
/** @}
448
/** @}
322
 */
-
 
323
449
 */
-
 
450