forked from M-Labs/artiq-zynq
expose i2c to kernels
This commit is contained in:
parent
91ed035bef
commit
36d8ffec3b
|
@ -22,6 +22,13 @@ device_db = {
|
||||||
"module": "artiq.coredevice.dma",
|
"module": "artiq.coredevice.dma",
|
||||||
"class": "CoreDMA"
|
"class": "CoreDMA"
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"i2c_switch": {
|
||||||
|
"type": "local",
|
||||||
|
"module": "artiq.coredevice.i2c",
|
||||||
|
"class": "PCA9548"
|
||||||
|
},
|
||||||
|
|
||||||
# led? are common to all variants
|
# led? are common to all variants
|
||||||
"led0": {
|
"led0": {
|
||||||
"type": "local",
|
"type": "local",
|
||||||
|
|
|
@ -0,0 +1,39 @@
|
||||||
|
use libboard_zynq;
|
||||||
|
|
||||||
|
static mut I2C_BUS: Option<libboard_zynq::i2c::I2c> = None;
|
||||||
|
|
||||||
|
pub extern fn start(_busno: i32) {
|
||||||
|
unsafe {
|
||||||
|
(&mut I2C_BUS).as_mut().unwrap().start().expect("I2C start failed")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub extern fn restart(_busno: i32) {
|
||||||
|
unsafe {
|
||||||
|
(&mut I2C_BUS).as_mut().unwrap().restart().expect("I2C restart failed")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub extern fn stop(_busno: i32) {
|
||||||
|
unsafe {
|
||||||
|
(&mut I2C_BUS).as_mut().unwrap().stop().expect("I2C stop failed")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub extern fn write(_busno: i32, data: i32) -> bool {
|
||||||
|
unsafe {
|
||||||
|
(&mut I2C_BUS).as_mut().unwrap().write(data as u8).expect("I2C write failed")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub extern fn read(_busno: i32, ack: bool) -> i32 {
|
||||||
|
unsafe {
|
||||||
|
(&mut I2C_BUS).as_mut().unwrap().read(ack).expect("I2C read failed") as i32
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn init() {
|
||||||
|
let mut i2c = libboard_zynq::i2c::I2c::i2c0();
|
||||||
|
i2c.init().expect("I2C bus initialization failed");
|
||||||
|
unsafe { I2C_BUS = Some(i2c) };
|
||||||
|
}
|
|
@ -9,6 +9,7 @@ use alloc::vec;
|
||||||
|
|
||||||
use crate::eh_artiq;
|
use crate::eh_artiq;
|
||||||
use crate::rtio;
|
use crate::rtio;
|
||||||
|
use crate::i2c;
|
||||||
use super::rpc::{rpc_send, rpc_send_async, rpc_recv};
|
use super::rpc::{rpc_send, rpc_send_async, rpc_recv};
|
||||||
use super::dma;
|
use super::dma;
|
||||||
use super::cache;
|
use super::cache;
|
||||||
|
@ -100,6 +101,13 @@ pub fn resolve(required: &[u8]) -> Option<u32> {
|
||||||
api!(cache_get = cache::get),
|
api!(cache_get = cache::get),
|
||||||
api!(cache_put = cache::put),
|
api!(cache_put = cache::put),
|
||||||
|
|
||||||
|
// i2c
|
||||||
|
api!(i2c_start = i2c::start),
|
||||||
|
api!(i2c_restart = i2c::restart),
|
||||||
|
api!(i2c_stop = i2c::stop),
|
||||||
|
api!(i2c_write = i2c::write),
|
||||||
|
api!(i2c_read = i2c::read),
|
||||||
|
|
||||||
// Double-precision floating-point arithmetic helper functions
|
// Double-precision floating-point arithmetic helper functions
|
||||||
// RTABI chapter 4.1.2, Table 2
|
// RTABI chapter 4.1.2, Table 2
|
||||||
api!(__aeabi_dadd),
|
api!(__aeabi_dadd),
|
||||||
|
|
|
@ -43,6 +43,7 @@ mod logger;
|
||||||
mod mgmt;
|
mod mgmt;
|
||||||
mod analyzer;
|
mod analyzer;
|
||||||
mod irq;
|
mod irq;
|
||||||
|
mod i2c;
|
||||||
|
|
||||||
fn init_gateware() {
|
fn init_gateware() {
|
||||||
// Set up PS->PL clocks
|
// Set up PS->PL clocks
|
||||||
|
@ -177,6 +178,9 @@ pub fn main_core0() {
|
||||||
|
|
||||||
init_gateware();
|
init_gateware();
|
||||||
info!("detected gateware: {}", identifier_read(&mut [0; 64]));
|
info!("detected gateware: {}", identifier_read(&mut [0; 64]));
|
||||||
|
|
||||||
|
i2c::init();
|
||||||
|
|
||||||
let cfg = match Config::new() {
|
let cfg = match Config::new() {
|
||||||
Ok(cfg) => cfg,
|
Ok(cfg) => cfg,
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
|
|
Loading…
Reference in New Issue