Searched +full:stm32f4 +full:- +full:bxcan (Results 1 – 4 of 4) sorted by relevance
1 // SPDX-License-Identifier: GPL-2.011 compatible = "st,stm32f4-bxcan";14 interrupt-names = "tx", "rx0", "rx1", "sce";22 compatible = "st,stm32f4-gcan", "syscon";28 compatible = "st,stm32-dsi";31 clock-names = "pclk", "ref";33 reset-names = "apb";
2 * Copyright 2015 - Maxime Coquelin <mcoquelin.stm32@gmail.com>4 * This file is dual-licensed: you can use it either under the terms22 * MA 02110-1301 USA48 #include "../armv7-m.dtsi"49 #include <dt-bindings/clock/stm32fx-clock.h>50 #include <dt-bindings/mfd/stm32f4-rcc.h>53 #address-cells = <1>;54 #size-cells = <1>;57 clk_hse: clk-hse {58 #clock-cells = <0>;[all …]
2 * Copyright 2015 - Maxime Coquelin <mcoquelin.stm32@gmail.com>4 * This file is dual-licensed: you can use it either under the terms43 #include "../armv7-m.dtsi"44 #include <dt-bindings/clock/stm32fx-clock.h>45 #include <dt-bindings/mfd/stm32f7-rcc.h>48 #address-cells = <1>;49 #size-cells = <1>;52 clk_hse: clk-hse {53 #clock-cells = <0>;54 compatible = "fixed-clock";[all …]
1 // SPDX-License-Identifier: GPL-2.03 // bxcan.c - STM32 Basic Extended CAN controller driver16 #include <linux/can/rx-offload.h>152 u32 mcr; /* 0x00 - primary control */153 u32 msr; /* 0x04 - primary status */154 u32 tsr; /* 0x08 - transmit status */155 u32 rf0r; /* 0x0c - FIFO 0 */156 u32 rf1r; /* 0x10 - FIFO 1 */157 u32 ier; /* 0x14 - interrupt enable */158 u32 esr; /* 0x18 - error status */[all …]