1*fac71e4eSEmmanuel VadotFreescale L2 Cache Controller 2*fac71e4eSEmmanuel Vadot 3*fac71e4eSEmmanuel VadotL2 cache is present in Freescale's QorIQ and QorIQ Qonverge platforms. 4*fac71e4eSEmmanuel VadotThe cache bindings explained below are Devicetree Specification compliant 5*fac71e4eSEmmanuel Vadot 6*fac71e4eSEmmanuel VadotRequired Properties: 7*fac71e4eSEmmanuel Vadot 8*fac71e4eSEmmanuel Vadot- compatible : Should include one of the following: 9*fac71e4eSEmmanuel Vadot "fsl,b4420-l2-cache-controller" 10*fac71e4eSEmmanuel Vadot "fsl,b4860-l2-cache-controller" 11*fac71e4eSEmmanuel Vadot "fsl,bsc9131-l2-cache-controller" 12*fac71e4eSEmmanuel Vadot "fsl,bsc9132-l2-cache-controller" 13*fac71e4eSEmmanuel Vadot "fsl,c293-l2-cache-controller" 14*fac71e4eSEmmanuel Vadot "fsl,mpc8536-l2-cache-controller" 15*fac71e4eSEmmanuel Vadot "fsl,mpc8540-l2-cache-controller" 16*fac71e4eSEmmanuel Vadot "fsl,mpc8541-l2-cache-controller" 17*fac71e4eSEmmanuel Vadot "fsl,mpc8544-l2-cache-controller" 18*fac71e4eSEmmanuel Vadot "fsl,mpc8548-l2-cache-controller" 19*fac71e4eSEmmanuel Vadot "fsl,mpc8555-l2-cache-controller" 20*fac71e4eSEmmanuel Vadot "fsl,mpc8560-l2-cache-controller" 21*fac71e4eSEmmanuel Vadot "fsl,mpc8568-l2-cache-controller" 22*fac71e4eSEmmanuel Vadot "fsl,mpc8569-l2-cache-controller" 23*fac71e4eSEmmanuel Vadot "fsl,mpc8572-l2-cache-controller" 24*fac71e4eSEmmanuel Vadot "fsl,p1010-l2-cache-controller" 25*fac71e4eSEmmanuel Vadot "fsl,p1011-l2-cache-controller" 26*fac71e4eSEmmanuel Vadot "fsl,p1012-l2-cache-controller" 27*fac71e4eSEmmanuel Vadot "fsl,p1013-l2-cache-controller" 28*fac71e4eSEmmanuel Vadot "fsl,p1014-l2-cache-controller" 29*fac71e4eSEmmanuel Vadot "fsl,p1015-l2-cache-controller" 30*fac71e4eSEmmanuel Vadot "fsl,p1016-l2-cache-controller" 31*fac71e4eSEmmanuel Vadot "fsl,p1020-l2-cache-controller" 32*fac71e4eSEmmanuel Vadot "fsl,p1021-l2-cache-controller" 33*fac71e4eSEmmanuel Vadot "fsl,p1022-l2-cache-controller" 34*fac71e4eSEmmanuel Vadot "fsl,p1023-l2-cache-controller" 35*fac71e4eSEmmanuel Vadot "fsl,p1024-l2-cache-controller" 36*fac71e4eSEmmanuel Vadot "fsl,p1025-l2-cache-controller" 37*fac71e4eSEmmanuel Vadot "fsl,p2010-l2-cache-controller" 38*fac71e4eSEmmanuel Vadot "fsl,p2020-l2-cache-controller" 39*fac71e4eSEmmanuel Vadot "fsl,t2080-l2-cache-controller" 40*fac71e4eSEmmanuel Vadot "fsl,t4240-l2-cache-controller" 41*fac71e4eSEmmanuel Vadot and "cache". 42*fac71e4eSEmmanuel Vadot- reg : Address and size of L2 cache controller registers 43*fac71e4eSEmmanuel Vadot- cache-size : Size of the entire L2 cache 44*fac71e4eSEmmanuel Vadot- interrupts : Error interrupt of L2 controller 45*fac71e4eSEmmanuel Vadot- cache-line-size : Size of L2 cache lines 46*fac71e4eSEmmanuel Vadot 47*fac71e4eSEmmanuel VadotExample: 48*fac71e4eSEmmanuel Vadot 49*fac71e4eSEmmanuel Vadot L2: l2-cache-controller@20000 { 50*fac71e4eSEmmanuel Vadot compatible = "fsl,bsc9132-l2-cache-controller", "cache"; 51*fac71e4eSEmmanuel Vadot reg = <0x20000 0x1000>; 52*fac71e4eSEmmanuel Vadot cache-line-size = <32>; // 32 bytes 53*fac71e4eSEmmanuel Vadot cache-size = <0x40000>; // L2,256K 54*fac71e4eSEmmanuel Vadot interrupts = <16 2 1 0>; 55*fac71e4eSEmmanuel Vadot }; 56