0. env
IPQ601x
SPF11.5cs
1. 简介
BLSP(BAM Low-Speed Peripheral)
不同chip有不止一组的BLSP,每个BLSP又有多个端口供使用。
每个端口功能可以复用为:SPI 或者 I2C+UART
2. 需求及资料
2.1 需求
提供一个I2C接口用以操作外挂的设备。
在dts中添加一个设备节点,使用qca的i2c驱动即可,业务逻辑略。
2.2 资料
pins: GPIO69,70,
qup:blsp1-i2c (gpio69,70)
address:0x078b7000 (IPQ6018只有一组BLSP,这里随便选用了一组未使用的端口)
channel:16,17 (DMA channel)
IRQ:97
3. DTS实际配置及简述
- dtsi添加i2c设备节点的基本配置信息
vi qcom-ipq6018.dtsi
# SOC 下添加i2c设备节点基础配置信息
soc:soc {
...
i2c_1: i2c@78b7000 { /* BLSP1 QUP2 */
compatible = "qcom,i2c-qup-v2.2.1";
#address-cells = <1>;
#size-cells = <0>;
reg = <0x78b7000 0x600>;
interrupts = <GIC_SPI 97 IRQ_TYPE_LEVEL_HIGH>;
clocks = <&gcc GCC_BLSP1_AHB_CLK>,
<&gcc GCC_BLSP1_QUP3_I2C_APPS_CLK>;
clock-names = "iface", "core";
clock-frequency = <400000>;
dmas = <&blsp_dma 17>, <&blsp_dma 16>;
dma-names = "rx", "tx";
status = "disabled";
};
...
}
- dts中添加具体i2c设备节点的信息
vi xxx.dts
配置gpio信息、enable设备节点
&tlmm {
...
i2c_1_pins: i2c_1_pins {
mux {
pins = "gpio69", "gpio70";
function = "blsp1_i2c";
drive-strength = <8>;
bias-pull-down;
};
};
...
};
&i2c_1 {
pinctrl-0 = <&i2c_1_pins>;
pinctrl-names = "default";
status = "ok";
};