imix/power.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
// Licensed under the Apache License, Version 2.0 or the MIT License.
// SPDX-License-Identifier: Apache-2.0 OR MIT
// Copyright Tock Contributors 2022.
//! Implements a helper function for enabling/disabling power on the imix
//! submodules.
// On imix, submodules are powered on/off via power gate ICs. The MCU has an
// enable pin connected to each power gate. Setting an enable pin high or low
// turns on or off the corresponding submodule.
//
// For the RF233, NRF, and sensors, there is an additional IC which electrically
// connects/disconnects the I2C and SPI busses to the appropriate submodules,
// depending on their power state. This is because the busses can inadvertently
// supply power to the connected submodules. The correct behavior is all handled
// in hardware via the enable pins.
//
// For the RF233 and NRF, there are still some remaining GPIO pins that need to
// be configured when these submodules are turned off. These pins are not gated
// by a switch like the I2C and SPI busses are, so if the kernel does not
// explicitly pull them to ground, the submodule will be powered through the GPIO.
//
// This file exports `configure_submodules`, which hides the complexity
// of correctly turning the submodules on and off. It allows the caller to
// conveniently disable and enable the individual submodules at will.
use kernel::hil::Controller;
use sam4l::gpio::GPIOPin;
use sam4l::gpio::PeripheralFunction::{A, B, E};
use sam4l::gpio::{PeripheralFunction, Port};
struct DetachablePin {
pin: &'static GPIOPin<'static>,
function: Option<PeripheralFunction>,
}
impl DetachablePin {
fn detach(&self) {
self.pin.configure(None);
self.pin.enable_output();
self.pin.clear();
}
fn restore(&self) {
self.pin.configure(self.function);
}
}
struct Submodule<'a> {
gate_pin: &'static GPIOPin<'static>,
detachable_pins: &'a [DetachablePin],
}
impl Submodule<'_> {
fn power(&self, state: bool) {
self.gate_pin.enable_output();
match state {
true => {
for d in self.detachable_pins.iter() {
d.restore();
}
self.gate_pin.set();
}
false => {
self.gate_pin.clear();
for d in self.detachable_pins.iter() {
d.detach();
}
}
}
}
}
pub struct SubmoduleConfig {
pub rf233: bool,
pub nrf51422: bool,
pub sensors: bool,
pub trng: bool,
}
pub unsafe fn configure_submodules(
pa: &'static Port,
pb: &'static Port,
pc: &'static Port,
enabled_submodules: SubmoduleConfig,
) {
let rf233_detachable_pins = [
DetachablePin {
pin: &pa[08],
function: None,
},
DetachablePin {
pin: &pa[09],
function: None,
},
DetachablePin {
pin: &pa[10],
function: None,
},
];
let rf233 = Submodule {
gate_pin: &pc[18],
detachable_pins: &rf233_detachable_pins,
};
let nrf_detachable_pins = [
DetachablePin {
pin: &pb[07],
function: None,
},
DetachablePin {
pin: &pa[17],
function: None,
},
DetachablePin {
pin: &pa[18],
function: Some(A),
},
DetachablePin {
pin: &pc[07],
function: Some(B),
},
DetachablePin {
pin: &pc[08],
function: Some(E),
},
DetachablePin {
pin: &pc[09],
function: None,
},
];
let nrf = Submodule {
gate_pin: &pc[17],
detachable_pins: &nrf_detachable_pins,
};
let sensors = Submodule {
gate_pin: &pc[16],
detachable_pins: &[],
};
let trng = Submodule {
gate_pin: &pc[19],
detachable_pins: &[],
};
rf233.power(enabled_submodules.rf233);
nrf.power(enabled_submodules.nrf51422);
sensors.power(enabled_submodules.sensors);
trng.power(enabled_submodules.trng);
}