Skip to content

Commit

Permalink
nxp: mimx9: Switch to using CCM Rev3 clock controller
Browse files Browse the repository at this point in the history
This commit introduces the necessary changes to the i.MX93
files required to make use of the CCM Rev3 driver.

Signed-off-by: Laurentiu Mihalcea <[email protected]>
  • Loading branch information
LaurentiuM1234 committed Jul 5, 2023
1 parent 4ad2dda commit 6e569bc
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 21 deletions.
18 changes: 7 additions & 11 deletions dts/arm64/nxp/nxp_mimx93_a55.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include <mem.h>
#include <freq.h>
#include <arm64/armv8-a.dtsi>
#include <zephyr/dt-bindings/clock/imx_ccm.h>
#include <zephyr/dt-bindings/clock/imx93_ccm.h>
#include <zephyr/dt-bindings/interrupt-controller/arm-gic.h>

/ {
Expand Down Expand Up @@ -70,15 +70,11 @@
};
};

ana_pll: ana_pll@44480000 {
compatible = "nxp,imx-ana";
reg = <0x44480000 DT_SIZE_K(64)>;
};

ccm: ccm@44450000 {
compatible = "nxp,imx-ccm";
reg = <0x44450000 DT_SIZE_K(64)>;
#clock-cells = <3>;
compatible = "nxp,imx-ccm-rev3";
reg = <0x44450000 DT_SIZE_K(64)>, // CCM base
<0x44480000 DT_SIZE_K(64)>; // PLL base
#clock-cells = <2>;
};

lpuart1: serial@44380000 {
Expand All @@ -87,7 +83,7 @@
interrupts = <GIC_SPI 19 IRQ_TYPE_LEVEL IRQ_DEFAULT_PRIORITY>;
interrupt-names = "irq_0";
interrupt-parent = <&gic>;
clocks = <&ccm IMX_CCM_LPUART_CLK 0x6c 24>;
clocks = <&ccm IMX93_CCM_LPUART1_CLOCK 24000000>;
status = "disabled";
};

Expand All @@ -97,7 +93,7 @@
interrupts = <GIC_SPI 20 IRQ_TYPE_LEVEL IRQ_DEFAULT_PRIORITY>;
interrupt-names = "irq_0";
interrupt-parent = <&gic>;
clocks = <&ccm IMX_CCM_LPUART_CLK 0x6c 24>;
clocks = <&ccm IMX93_CCM_LPUART2_CLOCK 24000000>;
status = "disabled";
};
};
16 changes: 16 additions & 0 deletions include/zephyr/dt-bindings/clock/imx93_ccm.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/*
* Copyright 2023 NXP
*
* SPDX-License-Identifier: Apache-2.0
*/

#ifndef ZEPHYR_INCLUDE_DT_BINDINGS_CLOCK_IMX93_CCM_H_
#define ZEPHYR_INCLUDE_DT_BINDINGS_CLOCK_IMX93_CCM_H_

/* note: the values of these defines need to match the indexes
* in the array of clocks for the clocks they represent.
*/
#define IMX93_CCM_LPUART1_CLOCK 0
#define IMX93_CCM_LPUART2_CLOCK 1

#endif /* ZEPHYR_INCLUDE_DT_BINDINGS_CLOCK_IMX93_CCM_H_ */
10 changes: 0 additions & 10 deletions soc/arm64/nxp_imx/mimx9/mmu_regions.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,6 @@ static const struct arm_mmu_region mmu_regions[] = {
DT_REG_SIZE_BY_IDX(DT_NODELABEL(gic), 1),
MT_DEVICE_nGnRnE | MT_P_RW_U_NA | MT_NS),

MMU_REGION_FLAT_ENTRY("CCM",
DT_REG_ADDR(DT_NODELABEL(ccm)),
DT_REG_SIZE(DT_NODELABEL(ccm)),
MT_DEVICE_nGnRnE | MT_P_RW_U_NA | MT_NS),

MMU_REGION_FLAT_ENTRY("ANA_PLL",
DT_REG_ADDR(DT_NODELABEL(ana_pll)),
DT_REG_SIZE(DT_NODELABEL(ana_pll)),
MT_DEVICE_nGnRnE | MT_P_RW_U_NA | MT_NS),

MMU_REGION_FLAT_ENTRY("UART2",
DT_REG_ADDR(DT_NODELABEL(lpuart2)),
DT_REG_SIZE(DT_NODELABEL(lpuart2)),
Expand Down

0 comments on commit 6e569bc

Please sign in to comment.