GIC Programming on LS2088A

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

GIC Programming on LS2088A

870 次查看
burakunaltay
Contributor I

Currently I am trying to configure the Generic Interrupt Controller on a LS2088A board.  Since GIC registers are memory mapped and there is no document regarding the system memory map in LS2088A product page, could anyone provide me information about GIC base address in LS2088A boards ?

标签 (1)
标记 (3)
0 项奖励
1 回复

583 次查看
r8070z
NXP Employee
NXP Employee


Have a great day,

You can see the base address in the LS208xA dts file

https://github.com/torvalds/linux/blob/master/arch/arm64/boot/dts/freescale/fsl-ls208xa.dtsi

/ {

               compatible = "fsl,ls2080a";

               interrupt-parent = <&gic>;

               #address-cells = <2>;

               #size-cells = <2>;

               gic: interrupt-controller@6000000 {

                              compatible = "arm,gic-v3";

                              reg = <0x0 0x06000000 0 0x10000>, /* GIC Dist */

                                            <0x0 0x06100000 0 0x100000>, /* GICR (RD_base + SGI_base) */

                                            <0x0 0x0c0c0000 0 0x2000>, /* GICC */

                                            <0x0 0x0c0d0000 0 0x1000>, /* GICH */

                                            <0x0 0x0c0e0000 0 0x20000>; /* GICV */

-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

0 项奖励