1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
|
/*
* Copyright (c) 2023-2025 Ian Marco Moffett and the Osmora Team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of Hyra nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/errno.h>
#include <machine/isa/i8237.h>
.section .rodata
t_set_addr:
.quad set_addr_0
.quad set_addr_1
.quad set_addr_2
.quad set_addr_3
t_set_count:
.quad set_count_0
.quad set_count_1
.quad set_count_2
.quad set_count_3
.text
.globl i8237_set_addr
.type i8237_set_addr, @function
i8237_set_addr:
/*
* i8237_set_addr(u8 channel, u16 addr) -> u8
*/
/* If (RDI > 3) then return -EINVAL */
cmp $3, %rdi
jg 1f
/* Set the address at the target channel */
lea t_set_addr(%rip), %rbx
mov (%rbx, %rdi, 8), %rbx
jmp *%rbx
1:
mov $-EINVAL, %rax
retq
.text
.globl i8237_set_count
.type i8237_set_count, @function
i8237_set_count:
/*
* i8237_set_count(u8 channel, u16 count) -> u8
*/
/* If (RDI > 3) then return -EINVAL */
cmp $3, %rdi
jg 1f
/* Set the count at the target channel */
lea t_set_count(%rip), %rbx
mov (%rbx, %rdi, 8), %rbx
jmp *%rbx
1:
mov $-EINVAL, %rax
retq
.text
.globl i8237_set_mode
.type i8237_set_mode, @function
i8237_set_mode:
/*
* i8237_set_mode(u8 channel, u8 mode) -> u8
*/
/* If (RDI > 3) then return -EINVAL */
cmp $3, %rdi
jg 1f
/* Set channel select bits */
mov %dil, %al
andb $3, %al
/* Set channel mode bits */
mov %sil, %dl
shlb $2, %dl
or %dl, %al
/* Write the mode then we are done */
outb %al, $0x0B
xor %rax, %rax
retq
1:
mov $-EINVAL, %rax
retq
/* -- Acquire the global lock -- */
lock_acquire:
lock btsl $0, lock(%rip)
jc .lock_spin
retq
.lock_spin:
testb $1, lock
jc .lock_spin
jmp lock_acquire
/* -- Release the global lock -- */
lock_release:
movb $0, lock(%rip)
retq
/* -- Main port setting logic (value needed in %RDI) -- */
.macro set_port port
call lock_acquire
push %rdi
/* Ensure the flip-flop is in a known state */
mov $0xFF, %al
out %al, $0x0C
/* Write the first 8 bits and shift */
mov %dil, %al
shl $8, %di
out %al, \port
/* Write the last 8 bits */
mov %dil, %al
out %al, \port
pop %rdi
call lock_release
retq
.endm
/* set_addr_0(u16 addr) */
set_addr_0:
set_port $DMA_ADDR_0
/* Success */
xor %rax, %rax
retq
/* set_addr_1(u16 addr) */
set_addr_1:
set_port $DMA_ADDR_1
/* Success */
xor %rax, %rax
retq
/* set_addr_2(u16 addr) */
set_addr_2:
set_port $DMA_ADDR_2
/* Success */
xor %rax, %rax
retq
/* set_addr_3(u16 addr) */
set_addr_3:
set_port $DMA_ADDR_3
/* Success */
xor %rax, %rax
retq
/* set_count_0(u16 count) */
set_count_0:
set_port $DMA_COUNT_0
/* Success */
xor %rax, %rax
retq
/* set_count_1(u16 count) */
set_count_1:
call lock_acquire
set_port $DMA_COUNT_1
call lock_release
/* Success */
xor %rax, %rax
retq
/* set_count_2(u16 count) */
set_count_2:
set_port $DMA_COUNT_2
/* Success */
xor %rax, %rax
retq
/* set_count_3(u16 count) */
set_count_3:
call lock_acquire
set_port $DMA_COUNT_3
/* Success */
xor %rax, %rax
retq
/* -- Global spinlock -- */
.section .bss
.align 64
lock:
.long 0
|