apollo3/
uart.rs

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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
// Licensed under the Apache License, Version 2.0 or the MIT License.
// SPDX-License-Identifier: Apache-2.0 OR MIT
// Copyright Tock Contributors 2022.

//! UART driver.

use core::cell::Cell;
use kernel::ErrorCode;

use kernel::hil;
use kernel::hil::uart;
use kernel::utilities::cells::OptionalCell;
use kernel::utilities::cells::TakeCell;
use kernel::utilities::registers::interfaces::{ReadWriteable, Readable, Writeable};
use kernel::utilities::registers::{register_bitfields, register_structs, ReadWrite};
use kernel::utilities::StaticRef;

const UART0_BASE: StaticRef<UartRegisters> =
    unsafe { StaticRef::new(0x4001_C000 as *const UartRegisters) };

pub const UART1_BASE: StaticRef<UartRegisters> =
    unsafe { StaticRef::new(0x4001_D000 as *const UartRegisters) };

register_structs! {
    pub UartRegisters {
        (0x000 => dr: ReadWrite<u32, DR::Register>),
        (0x004 => rsr: ReadWrite<u32, RSR::Register>),
        (0x008 => _reserved0),
        (0x018 => fr: ReadWrite<u32, FR::Register>),
        (0x01c => _reserved1),
        (0x020 => ilpr: ReadWrite<u32, ILPR::Register>),
        (0x024 => ibrd: ReadWrite<u32, IBRD::Register>),
        (0x028 => fbrd: ReadWrite<u32, FBRD::Register>),
        (0x02c => lcrh: ReadWrite<u32, LCRH::Register>),
        (0x030 => cr: ReadWrite<u32, CR::Register>),
        (0x034 => ifls: ReadWrite<u32, IFLS::Register>),
        (0x038 => ier: ReadWrite<u32, IER::Register>),
        (0x03c => ies: ReadWrite<u32, IES::Register>),
        (0x040 => mis: ReadWrite<u32, MIS::Register>),
        (0x044 => iec: ReadWrite<u32, IEC::Register>),
        (0x048 => @END),
    }
}

register_bitfields![u32,
    DR [
        DATA OFFSET(0) NUMBITS(8) [],
        FEDATA OFFSET(8) NUMBITS(1) [],
        PEDATA OFFSET(9) NUMBITS(1) [],
        BEDATA OFFSET(10) NUMBITS(1) [],
        OEDATA OFFSET(11) NUMBITS(1) []
    ],
    RSR [
        FESTAT OFFSET(0) NUMBITS(1) [],
        PESTAT OFFSET(1) NUMBITS(1) [],
        BESTAT OFFSET(2) NUMBITS(1) [],
        OESTAT OFFSET(4) NUMBITS(1) []
    ],
    FR [
        CTS OFFSET(0) NUMBITS(1) [],
        DSR OFFSET(1) NUMBITS(1) [],
        DCD OFFSET(2) NUMBITS(1) [],
        BUSY OFFSET(3) NUMBITS(1) [],
        RXFE OFFSET(4) NUMBITS(1) [],
        TXFF OFFSET(5) NUMBITS(1) [],
        RXFF OFFSET(6) NUMBITS(1) [],
        TXFE OFFSET(7) NUMBITS(1) [],
        TXBUSY OFFSET(8) NUMBITS(1) []
    ],
    ILPR [
        ILPDVSR OFFSET(0) NUMBITS(8) []
    ],
    IBRD [
        DIVINT OFFSET(0) NUMBITS(16) []
    ],
    FBRD [
        DIVFRAC OFFSET(0) NUMBITS(6) []
    ],
    LCRH [
        BRK OFFSET(0) NUMBITS(1) [],
        PEN OFFSET(1) NUMBITS(1) [],
        EPS OFFSET(2) NUMBITS(1) [],
        STP2 OFFSET(3) NUMBITS(1) [],
        FEN OFFSET(4) NUMBITS(1) [],
        WLEN OFFSET(5) NUMBITS(2) [],
        SPS OFFSET(7) NUMBITS(1) []
    ],
    CR [
        UARTEN OFFSET(0) NUMBITS(1) [],
        SIREN OFFSET(1) NUMBITS(1) [],
        SIRLP OFFSET(2) NUMBITS(1) [],
        CLKEN OFFSET(3) NUMBITS(1) [],
        CLKSEL OFFSET(4) NUMBITS(2) [
            CLK_24MHZ = 0x1,
            CLK_12MHZ = 0x2,
            CLK_6MHZ = 0x3,
            CLK_3MHZ = 0x4
        ],
        LBE OFFSET(7) NUMBITS(1) [],
        TXE OFFSET(8) NUMBITS(1) [],
        RXE OFFSET(9) NUMBITS(1) [],
        DTR OFFSET(10) NUMBITS(1) [],
        RTS OFFSET(11) NUMBITS(1) [],
        OUT1 OFFSET(12) NUMBITS(1) [],
        OUT2 OFFSET(13) NUMBITS(1) [],
        RTSEN OFFSET(14) NUMBITS(1) [],
        CTSEN OFFSET(15) NUMBITS(1) []
    ],
    IFLS [
        TXIFLSEL OFFSET(0) NUMBITS(3) [],
        RXIFLSEL OFFSET(3) NUMBITS(3) []
    ],
    IER [
        TXCMPMIM OFFSET(0) NUMBITS(1) [],
        CTSMIM OFFSET(1) NUMBITS(1) [],
        DCDMIM OFFSET(2) NUMBITS(1) [],
        DSRMIM OFFSET(3) NUMBITS(1) [],
        RXIM OFFSET(4) NUMBITS(1) [],
        TXIM OFFSET(5) NUMBITS(1) [],
        RTIM OFFSET(6) NUMBITS(1) [],
        FEIM OFFSET(7) NUMBITS(1) [],
        PEIM OFFSET(8) NUMBITS(1) [],
        BEIM OFFSET(9) NUMBITS(1) [],
        OEIM OFFSET(10) NUMBITS(1) []
    ],
    IES [
        TXCMPMIS OFFSET(0) NUMBITS(1) [],
        CTSMIS OFFSET(1) NUMBITS(1) [],
        DCDMIS OFFSET(2) NUMBITS(1) [],
        DSRMIS OFFSET(3) NUMBITS(1) [],
        RXIS OFFSET(4) NUMBITS(1) [],
        TXIS OFFSET(5) NUMBITS(1) [],
        RTIS OFFSET(6) NUMBITS(1) [],
        FEIS OFFSET(7) NUMBITS(1) [],
        PEIS OFFSET(8) NUMBITS(1) [],
        BEIS OFFSET(9) NUMBITS(1) [],
        OEIS OFFSET(10) NUMBITS(1) []
    ],
    MIS [
        TXCMPMMIS OFFSET(0) NUMBITS(1) [],
        CTSMMIS OFFSET(1) NUMBITS(1) [],
        DCDMMIS OFFSET(2) NUMBITS(1) [],
        DSRMMIS OFFSET(3) NUMBITS(1) [],
        RXMIS OFFSET(4) NUMBITS(1) [],
        TXMIS OFFSET(5) NUMBITS(1) [],
        RTMIS OFFSET(6) NUMBITS(1) [],
        FEMIS OFFSET(7) NUMBITS(1) [],
        PEMIS OFFSET(8) NUMBITS(1) [],
        BEMIS OFFSET(9) NUMBITS(1) [],
        OEMIS OFFSET(10) NUMBITS(1) []
    ],
    IEC [
        TXCMPMMIC OFFSET(0) NUMBITS(1) [],
        CTSMMIC OFFSET(1) NUMBITS(1) [],
        DCDMMIC OFFSET(2) NUMBITS(1) [],
        DSRMMIC OFFSET(3) NUMBITS(1) [],
        RXIC OFFSET(4) NUMBITS(1) [],
        TXIC OFFSET(5) NUMBITS(1) [],
        RTIC OFFSET(6) NUMBITS(1) [],
        FEIC OFFSET(7) NUMBITS(1) [],
        PEIC OFFSET(8) NUMBITS(1) [],
        BEIC OFFSET(9) NUMBITS(1) [],
        OEMC OFFSET(10) NUMBITS(1) []
    ]
];

pub struct Uart<'a> {
    registers: StaticRef<UartRegisters>,
    clock_frequency: u32,
    tx_client: OptionalCell<&'a dyn hil::uart::TransmitClient>,
    rx_client: OptionalCell<&'a dyn hil::uart::ReceiveClient>,

    tx_buffer: TakeCell<'static, [u8]>,
    tx_len: Cell<usize>,
    tx_index: Cell<usize>,

    rx_buffer: TakeCell<'static, [u8]>,
    rx_len: Cell<usize>,
    rx_index: Cell<usize>,
}

#[derive(Copy, Clone)]
pub struct UartParams {
    pub baud_rate: u32,
}

impl Uart<'_> {
    // unsafe bc of UART0_BASE usage, called twice would alias location
    pub fn new_uart_0() -> Self {
        Self {
            registers: UART0_BASE,
            clock_frequency: 24_000_000,
            tx_client: OptionalCell::empty(),
            rx_client: OptionalCell::empty(),
            tx_buffer: TakeCell::empty(),
            tx_len: Cell::new(0),
            tx_index: Cell::new(0),
            rx_buffer: TakeCell::empty(),
            rx_len: Cell::new(0),
            rx_index: Cell::new(0),
        }
    }

    // unsafe bc of UART0_BASE usage, called twice would alias location
    pub fn new_uart_1() -> Self {
        Self {
            registers: UART1_BASE,
            clock_frequency: 24_000_000,
            tx_client: OptionalCell::empty(),
            rx_client: OptionalCell::empty(),
            tx_buffer: TakeCell::empty(),
            tx_len: Cell::new(0),
            tx_index: Cell::new(0),
            rx_buffer: TakeCell::empty(),
            rx_len: Cell::new(0),
            rx_index: Cell::new(0),
        }
    }

    fn set_baud_rate(&self, baud_rate: u32) {
        let regs = self.registers;

        let baud_clk = 16 * baud_rate;
        let integer_divisor = self.clock_frequency / baud_clk;
        let intermediate_long = (self.clock_frequency * 64) / baud_clk;
        let fraction_divisor_long = intermediate_long - (integer_divisor * 64);

        regs.ibrd.write(IBRD::DIVINT.val(integer_divisor));
        regs.fbrd.write(FBRD::DIVFRAC.val(fraction_divisor_long));
    }

    fn enable_tx_interrupt(&self) {
        let regs = self.registers;

        // Set TX FIFO to fire at 0
        regs.ifls.modify(IFLS::TXIFLSEL.val(0));

        regs.ier.modify(IER::TXIM::SET + IER::TXCMPMIM::SET);
    }

    fn disable_tx_interrupt(&self) {
        let regs = self.registers;

        regs.ier.modify(IER::TXIM::CLEAR + IER::TXCMPMIM::CLEAR);
        regs.iec.modify(IEC::TXIC::SET + IEC::TXCMPMMIC::SET);
    }

    fn enable_rx_interrupt(&self) {
        let regs = self.registers;

        // Set RX FIFO to fire at 1
        regs.ifls.modify(IFLS::RXIFLSEL.val(1));

        regs.ier.modify(IER::RXIM::SET + IER::RTIM::SET);
    }

    fn disable_rx_interrupt(&self) {
        let regs = self.registers;

        regs.ier.modify(IER::RXIM::CLEAR + IER::RTIM::CLEAR);
        regs.iec.modify(IEC::RXIC::SET + IEC::RTIC::SET);
    }

    fn tx_progress(&self) {
        let regs = self.registers;
        let idx = self.tx_index.get();
        let len = self.tx_len.get();

        if idx < len {
            // If we are going to transmit anything, we first need to enable the
            // TX interrupt. This ensures that we will get an interrupt, where
            // we can either call the callback from, or continue transmitting
            // bytes.
            self.enable_tx_interrupt();

            // Read from the transmit buffer and send bytes to the UART hardware
            // until either the buffer is empty or the UART hardware is full.
            self.tx_buffer.map(|tx_buf| {
                let tx_len = len - idx;

                for i in 0..tx_len {
                    if regs.fr.is_set(FR::TXFF) {
                        break;
                    }
                    let tx_idx = idx + i;
                    regs.dr.write(DR::DATA.val(tx_buf[tx_idx] as u32));
                    self.tx_index.set(tx_idx + 1)
                }
            });
        }
    }

    fn rx_progress(&self) {
        let regs = self.registers;
        let idx = self.rx_index.get();
        let len = self.rx_len.get();

        if idx < len {
            // Read from the transmit buffer and send bytes to the UART hardware
            // until either the buffer is empty or the UART hardware is full.
            self.rx_buffer.map(|rx_buf| {
                let rx_len = len - idx;

                for i in 0..rx_len {
                    if regs.fr.is_set(FR::RXFE) {
                        break;
                    }

                    let rx_idx = idx + i;
                    let charecter = regs.dr.read(DR::DATA);

                    rx_buf[rx_idx] = charecter as u8;

                    self.rx_index.set(rx_idx + 1)
                }
            });
        }

        if self.rx_index.get() < self.rx_len.get() {
            // Enable interrupts to get future events
            self.enable_rx_interrupt();
        }
    }

    pub fn handle_interrupt(&self) {
        let regs = self.registers;
        let irq = regs.ies.extract();

        if irq.is_set(IES::TXCMPMIS) {
            // TXRIS Interrupt
            self.disable_tx_interrupt();

            if self.tx_index.get() >= self.tx_len.get() {
                // We sent everything to the UART hardware, now from an
                // interrupt callback we can issue the callback.

                // Disable the UART
                if self.rx_buffer.is_none() {
                    regs.cr.modify(CR::UARTEN::CLEAR);
                }
                regs.cr.modify(CR::TXE::CLEAR);

                self.tx_client.map(|client| {
                    self.tx_buffer.take().map(|tx_buf| {
                        client.transmitted_buffer(tx_buf, self.tx_len.get(), Ok(()));
                    });
                });
            } else {
                // We have more to transmit, so continue in tx_progress().
                self.tx_progress();
            }
        }

        if irq.is_set(IES::RTIS) {
            self.disable_rx_interrupt();

            self.rx_progress();

            if self.rx_index.get() >= self.rx_len.get() {
                // Disable the UART
                if self.tx_buffer.is_none() {
                    regs.cr.modify(CR::UARTEN::CLEAR);
                }
                regs.cr.modify(CR::RXE::CLEAR);

                self.rx_client.map(|client| {
                    self.rx_buffer.take().map(|rx_buf| {
                        client.received_buffer(
                            rx_buf,
                            self.rx_len.get(),
                            Ok(()),
                            uart::Error::None,
                        );
                    });
                });
            }
        }
    }

    pub fn transmit_sync(&self, bytes: &[u8]) {
        let regs = self.registers;
        for b in bytes.iter() {
            while regs.fr.is_set(FR::TXFF) {}
            regs.dr.write(DR::DATA.val(*b as u32));
        }
    }
}

impl hil::uart::Configure for Uart<'_> {
    fn configure(&self, params: hil::uart::Parameters) -> Result<(), ErrorCode> {
        let regs = self.registers;

        // Disable UART
        regs.cr
            .write(CR::UARTEN::CLEAR + CR::RXE::CLEAR + CR::TXE::CLEAR);

        // Enable the clocks
        regs.cr.modify(CR::CLKEN::SET + CR::CLKSEL::CLK_24MHZ);

        // Set the baud rate
        self.set_baud_rate(params.baud_rate);

        // Setup the UART
        regs.cr.modify(CR::RTSEN::CLEAR + CR::CTSEN::CLEAR);
        // Enalbe FIFO
        regs.lcrh.write(LCRH::FEN::SET);
        // Set 8 data bits, no parity, 1 stop bit and no flow control
        regs.lcrh.modify(LCRH::WLEN.val(3) + LCRH::FEN::SET);

        // Disable interrupts
        regs.ier.set(0x00);
        regs.iec.set(0xFF);

        Ok(())
    }
}

impl<'a> hil::uart::Transmit<'a> for Uart<'a> {
    fn set_transmit_client(&self, client: &'a dyn hil::uart::TransmitClient) {
        self.tx_client.set(client);
    }

    fn transmit_buffer(
        &self,
        tx_data: &'static mut [u8],
        tx_len: usize,
    ) -> Result<(), (ErrorCode, &'static mut [u8])> {
        if tx_len == 0 || tx_len > tx_data.len() {
            Err((ErrorCode::SIZE, tx_data))
        } else if self.tx_buffer.is_some() {
            Err((ErrorCode::BUSY, tx_data))
        } else {
            // Save the buffer so we can keep sending it.
            self.tx_buffer.replace(tx_data);
            self.tx_len.set(tx_len);
            self.tx_index.set(0);

            // Enable the UART
            self.registers.cr.modify(CR::UARTEN::SET + CR::TXE::SET);

            self.tx_progress();
            Ok(())
        }
    }

    fn transmit_abort(&self) -> Result<(), ErrorCode> {
        Err(ErrorCode::FAIL)
    }

    fn transmit_word(&self, _word: u32) -> Result<(), ErrorCode> {
        Err(ErrorCode::FAIL)
    }
}

impl<'a> hil::uart::Receive<'a> for Uart<'a> {
    fn set_receive_client(&self, client: &'a dyn hil::uart::ReceiveClient) {
        self.rx_client.set(client);
    }

    fn receive_buffer(
        &self,
        rx_buffer: &'static mut [u8],
        rx_len: usize,
    ) -> Result<(), (ErrorCode, &'static mut [u8])> {
        if rx_len == 0 || rx_len > rx_buffer.len() {
            Err((ErrorCode::SIZE, rx_buffer))
        } else {
            // Save the buffer so we can keep sending it.
            self.rx_buffer.replace(rx_buffer);
            self.rx_len.set(rx_len);
            self.rx_index.set(0);

            // Enable the UART
            self.registers.cr.modify(CR::UARTEN::SET + CR::RXE::SET);

            self.rx_progress();
            Ok(())
        }
    }

    fn receive_abort(&self) -> Result<(), ErrorCode> {
        Err(ErrorCode::FAIL)
    }

    fn receive_word(&self) -> Result<(), ErrorCode> {
        Err(ErrorCode::FAIL)
    }
}