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
489
490
491
492
493
494
495
496
497
498
499
//! Build script support for the `imxrt-iomuxc` crate
//!
//! # Audience
//!
//! This crate is intended for i.MX RT IOMUXC crate developers. End users should not use this crate directly.
//!
//! # Generate type aliases
//!
//! Create type aliases for processor pads. Use a combination of [`PadRange`](struct.PadRange.html)
//! and [`write_pads()`](fn.write_pads.html) in a build script to generate your module. Then, `include!` it
//! in your crate.
//!
//! For example, a `build.rs` build script resembling
//!
//! ```no_run
//! // ~~ build.rs ~~
//! use imxrt_iomuxc_build as build;
//! use std::{env, fs, io, path::PathBuf};
//!
//! fn main() -> io::Result<()> {
//!     let out_dir = PathBuf::from(env::var("OUT_DIR").unwrap());
//!     let mut pads_rs = fs::File::create(out_dir.join("pads.rs"))?;
//!
//!     let emc = build::PadRange::new("EMC", 0..42);
//!     let ad_b0 = build::PadRange::new("AD_B0", 0..16);
//!     let ad_b1 = build::PadRange::new("AD_B1", 0..16);
//!     let b0 = build::PadRange::new("B0", 0..16);
//!     let b1 = build::PadRange::new("B1", 0..16);
//!     let sd_b0 = build::PadRange::new("SD_B0", 0..6);
//!     let sd_b1 = build::PadRange::new("SD_B1", 0..12);
//!
//!     build::write_pads(
//!         &mut pads_rs,
//!         vec![&emc, &ad_b0, &ad_b1, &b0, &b1, &sd_b0, &sd_b1],
//!     )?;
//!     Ok(())
//! }
//! ```
//!
//! would generate type aliases that could be included in your `lib.rs`
//!
//! ```ignore
//! // ~~ lib.rs ~~
//! include!(concat!(env!("OUT_DIR"), "/pads.rs"));
//! ```
//!
//! See the [`write_pads()`](fn.write_pads.html) function for details on the generated module.
//!
//! # Implement GPIO `Pin` traits
//!
//! For the type aliases created in [crate type aliases](#generate-type-aliases), you can implement
//! GPIO `Pin` traits by using [`ImplGpioPin`](struct.ImplGpioPin.html) and [`write_impl_gpio_pins()`](fn.write_impl_gpio_pins.html).
//!
//! ```no_run
//! # use imxrt_iomuxc_build as build;
//! # let ad_b0 = build::PadRange::new("AD_B0", 0..16);
//! # let ad_b1 = build::PadRange::new("AD_B1", 0..16);
//! # let b0 = build::PadRange::new("B0", 0..16);
//! # let b1 = build::PadRange::new("B1", 0..16);
//! # let mut pads_rs: Vec<u8> = Vec::new();
//! build::write_impl_gpio_pins(
//!     &mut pads_rs,
//!     vec![
//!         // GPIO1
//!         build::ImplGpioPin::from_range(&ad_b0, build::GpioRange::no_offset(1, 5)),
//!         build::ImplGpioPin::from_range(&ad_b1, build::GpioRange {
//!             module: 1,
//!             offset: 16,
//!             alt: 5,
//!         }),
//!         // GPIO2
//!         build::ImplGpioPin::from_range(&b0, build::GpioRange::no_offset(2, 5)),
//!         build::ImplGpioPin::from_range(&b1, build::GpioRange {
//!             module: 2,
//!             offset: 16,
//!             alt: 5,
//!         }),
//!     ],
//! ).unwrap();
//! ```

use std::io::{self, Write};
use std::ops::Range;

/// Defines a range of i.MX RT pads
///
/// ```
/// # use imxrt_iomuxc_build::PadRange;
/// let pad_range = PadRange::new("EMC", 0..42);
/// ```
///
/// In the example above, we assume
///
/// - the processor module defines a struct, `EMC`, available in the module's
///   `bases` module. It may be referenced within the module using
///   `use crate::processor_variant::bases::EMC`.
/// - the processor has 42 pads with the "EMC" prefix, numbered 0 through
///   41
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct PadRange {
    base: String,
    range: Range<usize>,
}

impl PadRange {
    /// Create a new pad range that defines type aliases for the pads
    /// base with `base`, and numbered over the provided range
    pub fn new(base: &str, range: Range<usize>) -> Self {
        PadRange {
            base: String::from(base),
            range,
        }
    }

    /// Returns a new `PadRange` that will skip the first `skipped` elements
    pub fn skip(&self, skipped: usize) -> Self {
        Self {
            base: self.base.clone(),
            range: (self.range.start + skipped..self.range.end),
        }
    }

    /// Returns a new `PadRange` that will only take the first `taken` elements
    pub fn take(&self, taken: usize) -> Self {
        Self {
            base: self.base.clone(),
            range: (self.range.start..self.range.start + taken),
        }
    }
}

/// Write type for all pad `ranges` to the provided writer, `out`
///
/// On success, `out` will contain a Rust module, `pads`, that has
/// public submodules. The submodules are named after the `PadRange` tags
/// (lower-case). The submodules will contain public type aliases that match
/// the processor pads.
pub fn write_pads<'a, W, I>(out: &mut W, ranges: I) -> io::Result<()>
where
    W: Write,
    I: IntoIterator<Item = &'a PadRange> + Clone,
{
    let modules = ranges.clone().into_iter().map(|range| {
        let types = std::iter::repeat(range.base.clone())
            .zip(range.range.clone())
            .map(|(base, n)| {
                let name = quote::format_ident!("{}_{:02}", base, n);
                let unsigned = quote::format_ident!("U{}", n);
                let base = quote::format_ident!("{}", base);
                quote::quote! {
                    pub type #name = Pad<#base, #unsigned>;
                }
            });
        let pad_members = std::iter::repeat(range.base.clone())
            .zip(range.range.clone())
            .map(|(base, n)| {
                let name = quote::format_ident!("{}_{:02}", base, n);
                let member = quote::format_ident!("p{:02}", n);
                quote::quote! {
                    pub #member: #name
                }
            });
        let pad_init = std::iter::repeat(range.base.clone())
            .zip(range.range.clone())
            .map(|(base, n)| {
                let name = quote::format_ident!("{}_{:02}", base, n);
                let member = quote::format_ident!("p{:02}", n);
                quote::quote! {
                    #member: <#name>::new()
                }
            });

        let erase_pad = range.range.clone().map(|n| {
            let member = quote::format_ident!("p{:02}", n);
            quote::quote! {self.#member.erase()}
        });
        let base = range.base.to_lowercase();
        let name = quote::format_ident!("{}", base);
        let doc = format!("Pads with the prefix '{}'", range.base);
        let len = range.range.end - range.range.start;
        let erased_doc = format!("Erased pads with the prefix '{}'", range.base);
        quote::quote! {
            #[doc = #doc]
            pub mod #name {
                use crate::{ErasedPad, Pad, consts::*};
                use super::super::bases::*;
                #(#types)*

                #[doc = #doc]
                pub struct Pads {
                    #(#pad_members),*
                }

                #[doc = #erased_doc]
                ///
                /// Use [`Pads::erase()`](struct.Pads.html#method.erase) to get an `ErasedPads` instance.
                pub type ErasedPads = [ErasedPad; #len];

                impl Pads {
                    /// Take all pads from this group
                    ///
                    /// # Safety
                    ///
                    /// You may safely call this once to acquire all of the pads. Subsequent calls
                    /// may return pads that are mutably aliased elsewhere. Consider calling `new()`
                    /// at the start of your program.
                    ///
                    /// Know that the top-level [`Pads::new()`](../struct.Pads.html#method.new) will call this `new()`.
                    pub const unsafe fn new() -> Pads {
                        Pads {
                            #(#pad_init),*
                        }
                    }

                    /// Erase all of the pads
                    ///
                    /// The return type is an array, where the index indicates the pad offset
                    /// from the start of the group. For example, `AD_B0_03` would be referenced
                    /// as `erased_pads[3]`.
                    ///
                    /// See [`ErasedPad`](../struct.ErasedPad.html) for more information.
                    pub fn erase(self) -> ErasedPads {
                        [
                            #(#erase_pad),*
                        ]
                    }
                }
            }
        }
    });
    let module_names: Vec<_> = ranges
        .into_iter()
        .map(|range| quote::format_ident!("{}", range.base.to_lowercase()))
        .collect();
    let module_pad_members = module_names.clone().into_iter().map(|name| {
        quote::quote! {
            pub #name: #name::Pads
        }
    });
    let module_pads_init = module_names.clone().into_iter().map(|name| {
        quote::quote! {
            #name: <#name::Pads>::new()
        }
    });
    let module_pads_erase_members = module_names.clone().into_iter().map(|name| {
        quote::quote! {
            pub #name: #name::ErasedPads
        }
    });
    let module_pads_erase = module_names.into_iter().map(|name| {
        quote::quote! {
            #name: self.#name.erase()
        }
    });
    let module = quote::quote! {
        /// Contains all of the pads
        ///
        /// This module is auto-generated by the `imxrt-iomuxc-build` crate. See
        /// that crate for more information.
        mod pads {
            #![allow(non_camel_case_types)] // Conform with reference manual
            #(#modules)*

            /// All of the pads
            ///
            /// # Convention
            ///
            /// The members of `Pads` are additional structs that provide pads as
            /// objects. The `p` prefix of each pad denotes "pad."
            pub struct Pads {
                #(#module_pad_members),*
            }

            /// All of the pads, with all types erased
            ///
            /// # Convention
            ///
            /// The members of `ErasedPads` are arrays that provide erased pads
            /// as objects. Pads are grouped by their prefix, like `ad_b0`. The array
            /// index corresponds to the final pad identifier.
            ///
            /// Use [`Pads::erase()`](struct.Pads.html#method.erase) to get an `ErasedPads`.
            pub struct ErasedPads {
                #(#module_pads_erase_members),*
            }

            impl Pads {
                /// Take all of the pads
                ///
                /// # Safety
                ///
                /// You may safely call this once to acquire all of the pads. Subsequent calls
                /// may return pads that are mutably aliased elsewhere. Consider calling `new()`
                /// at the start of your program.
                pub const unsafe fn new() -> Pads {
                    Pads {
                        #(#module_pads_init),*
                    }
                }

                /// Erase the types of all pads
                ///
                /// See [`ErasedPad`](struct.ErasedPad.html) for more information.
                pub fn erase(self) -> ErasedPads {
                    ErasedPads {
                        #(#module_pads_erase),*
                    }
                }
            }
        }
    };

    write!(out, "{}", module)?;
    Ok(())
}

#[derive(Debug, Clone, PartialEq, Eq)]
struct GpioPinDetail {
    /// Super module of the pad name: `ad_b0`
    pad_module: String,
    /// The pad name: `AD_B0_00`
    name: String,
    /// The pad alt
    alt: u32,
    /// The GPIO module
    gpio_module: u32,
    /// The GPIO offset
    gpio_offset: u32,
}

/// A type that describes how to `impl gpio::Pin` for a series of pads
///
/// The following usage
///
/// ```
/// use imxrt_iomuxc_build as build;
/// use build::{ImplGpioPin, GpioRange, PadRange};
///
/// let ad_b0 = PadRange::new("AD_B0", 0..4);
/// // States that the four AD_B0 pads are driven by GPIO3_IO8 through GPIO03_IO12
/// ImplGpioPin::from_range(&ad_b0, GpioRange {
///     module: 3,
///     offset: 8,
///     alt: 5,
/// });
/// ```
///
/// will, when paired with [`write_impl_gpio_pins()`](fn.write_impl_gpio_pins.html),
/// generate Rust code that resembles
///
/// ```ignore
/// impl crate::gpio::Pin for ad_b0::AD_B0_00 {
///     const ALT: u32 = 5;
///     type Module = U3;
///     type Offset = U8;
/// }
///
/// impl crate::gpio::Pin for ad_b0::AD_B0_01 {
///     const ALT: u32 = 5;
///     type Module = U3;
///     type Offset = U9;
/// }
///
/// impl crate::gpio::Pin for ad_b0::AD_B0_02 {
///     const ALT: u32 = 5;
///     type Module = U3;
///     type Offset = U11;
/// }
///
/// impl crate::gpio::Pin for ad_b0::AD_B0_03 {
///     const ALT: u32 = 5;
///     type Module = U3;
///     type Offset = U11;
/// }
/// ```
#[derive(Debug)]
pub struct ImplGpioPin(Vec<GpioPinDetail>);

/// Defines a GPIO range
///
/// `GpioRange` defines the starting values for a GPIO pin sequence. See
/// [`ImplGpioPin`](struct.ImplGpioPin.html) for usages.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct GpioRange {
    /// The GPIO module
    ///
    /// `GPIO2` would be described by `2`.
    pub module: u32,
    /// The GPIO offset
    ///
    /// `GPIO3_IO24` would be described by `24`
    pub offset: u32,
    /// The GPIO alternave
    ///
    /// The `alt` value should apply for *every* GPIO described by the range
    pub alt: u32,
}

impl GpioRange {
    /// Convenience for creating a `GpioRange` with no offset
    pub fn no_offset(module: u32, alt: u32) -> Self {
        GpioRange {
            module,
            alt,
            offset: 0,
        }
    }
}

impl ImplGpioPin {
    /// Define a GPIO implementation from a range that describes the GPIO pattern
    pub fn from_range(range: &PadRange, gpio: GpioRange) -> Self {
        let pad_module = range.base.to_lowercase();
        let names = range
            .range
            .clone()
            .map(|id| format!("{}_{:02}", range.base, id));
        ImplGpioPin(
            names
                .enumerate()
                .map(|(idx, name)| GpioPinDetail {
                    pad_module: pad_module.clone(),
                    name,
                    alt: gpio.alt,
                    gpio_module: gpio.module,
                    gpio_offset: idx as u32 + gpio.offset,
                })
                .collect(),
        )
    }
}

/// Write the `impl gpio::Pin for Pad` implementations for all provided `ImplGpioPin` descriptions
///
/// # Requirements
///
/// Assumes that the pads exist and are reachable through their modules, using `use crate::processor_variant::pads::*`.
/// See [`write_pads()`](fn.write_pads.html) for more information.
pub fn write_impl_gpio_pins<W, I>(out: &mut W, impl_gpio_pins: I) -> io::Result<()>
where
    W: Write,
    I: IntoIterator<Item = ImplGpioPin>,
{
    let impls = impl_gpio_pins.into_iter().flat_map(|impl_gpio| {
        impl_gpio.0.into_iter().map(|detail| {
            let pad_module = quote::format_ident!("{}", detail.pad_module);
            let gpio_module = quote::format_ident!("U{}", detail.gpio_module);
            let name = quote::format_ident!("{}", detail.name);
            let gpio_offset = quote::format_ident!("U{}", detail.gpio_offset);
            let alt = detail.alt;

            let doc_alt = format!("ALT{}", alt);
            let doc_module = format!("GPIO{}", detail.gpio_module);
            let doc_offset = format!("IO{:02}", detail.gpio_offset);
            let doc = format!("{}_{} - {}", doc_module, doc_offset, doc_alt);
            quote::quote! {
                #[doc = #doc]
                impl crate::gpio::Pin for #pad_module::#name {
                    #[doc = #doc_alt]
                    const ALT: u32 = #alt;
                    #[doc = #doc_module]
                    type Module = #gpio_module;
                    #[doc = #doc_offset]
                    type Offset = #gpio_offset;
                }
            }
        })
    });

    let module = quote::quote! {
        mod impl_gpio_pins {
            use crate::consts::*;
            use super::pads::*;
            #(#impls)*
        }
    };
    write!(out, "{}", module)
}

#[cfg(test)]
mod tests {
    use super::PadRange;

    #[test]
    fn test_pad_range_skip() {
        assert_eq!(
            PadRange::new("FOO", 0..5).skip(2),
            PadRange::new("FOO", 2..5)
        );
    }

    #[test]
    fn test_pad_range_take() {
        assert_eq!(
            PadRange::new("FOO", 0..5).take(3),
            PadRange::new("FOO", 0..3)
        );
    }
}