aboutsummaryrefslogtreecommitdiff
path: root/arch/arm64/boot/dts/pxa1908.dtsi
blob: dd9a824f6f84fce536445f994f4f25d54f2ab88e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
/*
 *  Copyright (C) 2013 Marvell Technology Group Ltd.
 *  Author: Chao Xie <chao.xie@marvell.com>
 *          Dongjiu Geng <djgeng@marvell.com>
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2 as
 *  publishhed by the Free Software Foundation.
 */

/include/ "skeleton.dtsi"
#include "pxa1908-pinfunc.h"
#include "pxa1908-pm.h"
#include "../../../../include/dt-bindings/clock/marvell-pxa1U88.h"
#include <dt-bindings/clock/marvell-audio-map.h>
#include "../../../../include/dt-bindings/interrupt-controller/irq.h"
#include "../../../../include/dt-bindings/usb/mv_usb.h"

/ {
	interrupt-parent = <&gic>;
	#address-cells = <1>;
	#size-cells = <1>;

	aliases {
		serial0 = &uart2;
		serial1 = &uart0;
		serial2 = &uart1;
		i2c0 = &twsi0;
		i2c1 = &twsi1;
		i2c2 = &twsi2;
		i2c3 = &twsi3;
		mv_sc2_ccic0 = &ccic1;
		mv_sc2_ccic1 = &ccic2;
		mv_sc2_mmu0 = &sc2mmu1;
		mv_sc2_camera0 = &mcam0;
		mv_sc2_camera1 = &mcam1;
	};

	cpus {
		#address-cells = <2>;
		#size-cells = <0>;

		cpu@0 {
			device_type = "cpu";
			compatible = "arm,armv8";
			reg = <0 0>;
			enable-method = "mcpm";
		};
		cpu@1 {
			device_type = "cpu";
			compatible = "arm,armv8";
			reg = <0 1>;
			enable-method = "mcpm";
		};
		cpu@2 {
			device_type = "cpu";
			compatible = "arm,armv8";
			reg = <0 2>;
			enable-method = "mcpm";
		};
		cpu@3 {
			device_type = "cpu";
			compatible = "arm,armv8";
			reg = <0 3>;
			enable-method = "mcpm";
		};
	};

	mcpm {
		compatible      = "arm,mcpm";
		method          = "smc";
		cpu_off         = <0x85000001>;
		cpu_on          = <0x85000002>;
	};

	gic: interrupt-controller@d1df8000 {
		compatible = "arm,cortex-a7-gic";
		interrupt-controller;
		#interrupt-cells = <3>;
		reg = <0xd1df9000 0x1000>,
		      <0xd1dfa000 0x2000>;
		power-domain = "always-on";
	};

	generic-timer {
		compatible = "arm,armv8-timer";
		/* PPI secure/nonsecure IRQ, active low level-sensitive */
		interrupts = <1 13 0x308>,
			     <1 14 0x308>;
		clock-frequency = <26000000>;
	};

	soc {
		#address-cells = <1>;
		#size-cells = <1>;
		compatible = "simple-bus";
		interrupt-parent = <&gic>;
		ranges;

		reset {
			compatible = "marvell,pxa-reset";
			/* RTC Backup Registers 0 that store erasable data */
			reg = <0xd4080000 0xc8>,
			      <0xd4050000 0x1024>,
			      <0xd4010014 0x4>;
		};
		devfreq-ddr {  /* DDR memory controller */
			compatible = "marvell,devfreq-ddr";
			reg = <0xc0100000 0x880>;
			interrupts = <0 43 0x4>;
			clocks = <&soc_clocks PXA1U88_CLK_DDR>;
			marvell,qos;
			status = "disabled";
		};

		smmu {
			compatible = "arm,mmu-400";
			reg = <0xc0010000 0x10000>;
			#global-interrupts = <1>;

			/* we need a context intr
			/* unless there is error
			 */
			interrupts = <0 78 4>,
				     <0 78 4>;
			mmu-masters = <&ion 0x0>;
			status = "disabled";
		};

		axi@d4200000 {	/* AXI */
			compatible = "mrvl,axi-bus", "simple-bus";
			#address-cells = <1>;
			#size-cells = <1>;
			reg = <0xd4200000 0x00200000>;
			ranges;

			pd_isp: pd_sc2@d4282800 {
				compatible = "marvell,power-domain-common-isp-v3";
				reg = <0xd4282800 0x1000>;
				clocks = <&soc_clocks PXA1U88_CLK_SC2_AHB_CLK>;
				clock-names = "SC2AHBCLK";
				lpm-qos = <PM_QOS_CPUIDLE_BLOCK_DDR>;
			};

			usbphy: usbphy@d4207000 {
				compatible = "marvell,usb2-phy-28lp";
				reg = <0xd4207000 0x200>;
				marvell,udc-name = "mv-udc";
				marvell,ehci-name = "pxa-u2oehci";
				marvell,otg-name = "mv-otg";
				marvell,phy-name = "mv-usb-phy";
				marvell,pll-lock-bypass;
				clocks = <&soc_clocks PXA1U88_CLK_USB>;
				status = "disabled";
			};

			udc: udc@d4208100 {
				compatible = "marvell,mv-udc";
				reg = <0xd4208100 0x200>;
				interrupts = <0 44 0x4>;
				marvell,udc-name = "mv-udc";
				marvell,udc-mode = <MV_USB_MODE_OTG>;
				marvell,extern-attr = <0>;
				marvell,otg-force-a-bus-req;
				lpm-qos = <PM_QOS_CPUIDLE_BLOCK_AXI>;
				clocks = <&soc_clocks PXA1U88_CLK_USB>;
				status = "disabled";
			};

			ehci: ehci@d4208100 {
				compatible = "marvell,pxa-u2oehci";
				reg = <0xd4208100 0x200>;
				marvell,ehci-name = "pxa-u2oehci";
				marvell,udc-mode = <MV_USB_MODE_OTG>;
				marvell,extern-attr = <0>;
				marvell,otg-force-a-bus-req;
				interrupts = <0 44 0x4>;
				clocks = <&soc_clocks PXA1U88_CLK_USB>;
				status = "disabled";
			};

			otg: otg@d4208100 {
				compatible = "marvell,mv-otg";
				reg = <0xd4208100 0x200>;
				interrupts = <0 44 0x4>;
				marvell,udc-name = "mv-udc";
				marvell,ehci-name = "pxa-u2oehci";
				marvell,otg-name = "mv-otg";
				marvell,udc-mode = <MV_USB_MODE_OTG>;
				marvell,extern-attr = <0>;
				marvell,otg-force-a-bus-req;
				marvell,otg-force-a-vbus-vld;
				lpm-qos = <PM_QOS_CPUIDLE_BLOCK_AXI>;
				clocks = <&soc_clocks PXA1U88_CLK_USB>;
				status = "disabled";
			};

			gpu: gpu@C0400000 {
				compatible = "marvell,gpu";
				reg = <0xC0400000 0x1000>;
				interrupts = <0 8 0x4>;
				marvell,3d-clk-freq-combine =
						 <156000 156000>,
						 <312000 312000>,
						 <416000 312000>,
						 <624000 416000>,
						 <705000 624000>;
				marvell,sh-clk-freq-combine =
						 <156000 156000>,
						 <312000 312000>,
						 <416000 312000>,
						 <624000 416000>;
				status = "disabled";
			};

			gpu2d: gpu2d@d420c000 {
				compatible = "marvell,gpu2d";
				reg = <0xd420c000 0x1000>;
				interrupts = <0 72 0x4>;
				marvell,2d-clk-freq-combine =
						 <156000 156000>,
						 <312000 312000>,
						 <416000 624000>;
				status = "disabled";
			};

			coda7542: coda7542@d420d000 {
				compatible = "mrvl,mmp-coda7542";
				reg = <0xd420d000 0x1000>,
				      <0x0 0>;
				interrupts = <0 25 0x4>;
				status = "disabled";
			};

			intc: wakeupgen@d4282000 {
				compatible = "mrvl,mmp-intc-wakeupgen";
				reg = <0xd4282000 0x1000>,
				      <0xd4282800 0x12c>;
				mrvl,intc-nr-irqs = <96>;
				mrvl,intc-gbl-mask = <0x228 0x3
						     0x238 0x3
						     0x248 0x3
						     0x258 0x3>;
				mrvl,intc-for-cp = <0 31 32>;
				mrvl,intc-wake-clr = <9  (1 << 3)
						      39 (1 << 0 | 1 << 1 | 1 << 6)>;
				status = "disabled";
			};

			sdh2: sdh@d4281000 {
				compatible = "marvell,pxav3-mmc-v2";
				reg = <0xd4281000 0x120>;
				interrupts = <0 39 0x4>;
				clocks = <&soc_clocks PXA1U88_CLK_SDH2
					  &soc_clocks PXA1U88_CLK_SDH_AXI
					  &soc_clocks PXA1U88_CLK_SDH2_DUMMY
					  &soc_clocks PXA1U88_CLK_CPU
					  &soc_clocks PXA1U88_CLK_DDR
					  >;
				clock-names = "sdh-base-clk", "sdh-axi-clk", "sdh-fclk-tuned", "cpu", "ddr";
				lpm-qos = <PM_QOS_CPUIDLE_BLOCK_AXI>;
				status = "disabled";
			};

			sdh0: sdh@d4280000 {
				compatible = "marvell,pxav3-mmc-v2";
				reg = <0xd4280000 0x120>;
				interrupts = <0 39 0x4>;
				clocks = <&soc_clocks PXA1U88_CLK_SDH0
					  &soc_clocks PXA1U88_CLK_SDH_AXI
					  &soc_clocks PXA1U88_CLK_SDH0_DUMMY
					  &soc_clocks PXA1U88_CLK_CPU
					  &soc_clocks PXA1U88_CLK_DDR
					  >;
				clock-names = "sdh-base-clk", "sdh-axi-clk", "sdh-fclk-tuned", "cpu", "ddr";
				lpm-qos = <PM_QOS_CPUIDLE_BLOCK_AXI>;
				status = "disabled";
			};

			sdh1: sdh@d4280800 {
				compatible = "marvell,pxav3-mmc-v2";
				reg = <0xd4280800 0x120>;
				interrupts = <0 39 0x4>;
				clocks = <&soc_clocks PXA1U88_CLK_SDH1
					  &soc_clocks PXA1U88_CLK_SDH_AXI
					  &soc_clocks PXA1U88_CLK_SDH1_DUMMY
					  &soc_clocks PXA1U88_CLK_CPU
					  &soc_clocks PXA1U88_CLK_DDR
					  >;
				clock-names = "sdh-base-clk", "sdh-axi-clk", "sdh-fclk-tuned", "cpu", "ddr";
				lpm-qos = <PM_QOS_CPUIDLE_BLOCK_AXI>;
				status = "disabled";
			};

			asram: asram@d12a0000 {
				compatible = "mmio-sram";
				reg = <0xd12a0000 0x10000>;
				status = "disabled";
			};

			adma0: adma@d128d800 {
				compatible = "marvell,adma-1.0";
				reg = <0xD128D800 0x100>;
				interrupts = <0 82 0x4>;
				#dma-cells = <1>;
				asram = <&asram>;
				status = "disabled";
			};

			dsi: dsi@d420b800 {
				compatible = "marvell,mmp-dsi";
				reg = <0xd420b800 0x1ec>;
				interrupts = <0 53 0x4>;
				status = "disabled";
			};

			vdma: vdma@d4209000 {
				compatible = "marvell,mmp-vdma";
				reg = <0xd4209000 0x850>, <0xd420b000 0x3d0>;
				status = "disabled";
			};

			apical: apical@d420b400 {
				compatible = "marvell,mmp-apical";
				reg = <0xd420b400 0x400>, <0xd420b000 0x3d0>;
				status = "disabled";
			};

			disp: disp@d420b000 {
				compatible = "marvell,mmp-disp";
				reg = <0xd420b000 0x3d0>;
				lpm-qos = <PM_QOS_CPUIDLE_BLOCK_DDR>;
				interrupts = <0 41 0x4>;
				status = "disabled";
			};

			fb0: fbbase {
				compatible = "marvell,mmp-fb";
				status = "disabled";
			};

			fb1: fboverlay {
				compatible = "marvell,mmp-fb-overlay";
				status = "disabled";
			};

			devfreq-vpu {
				compatible = "marvell,devfreq-vpu";
				marvell,vpu-id = <0>;
				clocks = <&soc_clocks PXA1U88_CLK_VPU
					  &soc_clocks PXA1U88_CLK_VPUBUS>;
				clock-names = "vpu-fclk", "vpu-bclk";
				marvell,mmp-clk-freq-combine =
						<156000 156000>,
						<208000 208000>,
						<312000 312000>,
						<416000 416000>,
						<528000 416000>;
				marvell,qos;
				vpu-governor = "simple_ondemand";
				status = "disabled";
			};

			debug: debug@d42a0000 {
				compatible = "marvell,mmp-debug";
				reg = <0xd42a0000 0x800>;
				version = <2>;
				interrupts = <0 62 0x4>;
				/*
				 * 0x0: No mode enabled
				 * 0x1: Enable interrupt mode
				 * 0x2: Enable data abort mode
				 * 0x3: Enable interrupt and data abort modes;
				 */
				detection_modes = <0x3>;
			};

			ccic1: ccic@d420a000 {
				   compatible = "marvell,mmp-sc2ccic";
				   reg = <0xd420a000 0x2ff>;
				   reg-names = "ccic-regs";
				   dma-burst = <256>;
				   mclk-src = <3>;
				   mclk-div = <13>;
				   interrupts = <0 42 0x4>;
				   ahb_enable = <1>;
				   clocks =	<&soc_clocks PXA1U88_CLK_SC2_PHY4LN_CLK_EN>,
							<&soc_clocks PXA1U88_CLK_SC2_CSI_CLK>,
							<&soc_clocks PXA1U88_CLK_SC2_4X_CLK>,
							<&soc_clocks PXA1U88_CLK_SC2_AHB_CLK>;
				   clock-names =  "SC2DPHYCLK", "SC2CSICLK",
					   "SC24XCLK", "SC2AHBCLK";
				   status = "disable";
			};

			ccic2: ccic@d420a800 {
				   compatible = "marvell,mmp-sc2ccic";
				   reg = <0xd420a800 0x2ff>;
				   reg-names = "ccic-regs";
				   dma-burst = <64>;
				   mclk-src = <3>;
				   mclk-div = <13>;
				   interrupts = <0 77 0x4>;
				   ahb_enable = <1>;
				   clocks = 	<&soc_clocks PXA1U88_CLK_SC2_PHY2LN_CLK_EN>,
							<&soc_clocks PXA1U88_CLK_SC2_CSI_CLK>,
							<&soc_clocks PXA1U88_CLK_SC2_4X_CLK>,
							<&soc_clocks PXA1U88_CLK_SC2_AHB_CLK>;
				   clock-names =  "SC2DPHYCLK", "SC2CSICLK",
							"SC24XCLK", "SC2AHBCLK";
				   status = "disable";
			};

			sc2mmu1: sc2mmu@d420F000 {
				 compatible = "marvell,mmp-sc2mmu";
				 reg = <0xd420F000 0x2ff>;
				 reg-names = "mmu-regs";
				 interrupts = <0 15 0x4>;
				 version = <1>;
				 status = "disable";
			};

			b52isp: b52isp@0xC0200000 {
				compatible = "ovt,single-pipeline ISP(Lite)";
				reg = <0xC0200000 0xFFFFF>;
				reg-name = "b52isp-regs";
				interrupts = <0 11 0x4>;
				fclk-name = "ISP-CLK";
				marvell,power-domain = <&pd_isp>;
				clocks = <&soc_clocks PXA1U88_CLK_SC2_AXI_CLK>,
						<&soc_clocks PXA1U88_CLK_ISP_CORE_CLK_EN>,
						<&soc_clocks PXA1U88_CLK_ISP_PIPE_CLK>,
						<&soc_clocks PXA1U88_CLK_SC2_AHB_CLK>;
				clock-names = "SC2AXICLK", "ISPCORECLK", "ISPPIPECLK",
								"SC2AHBCLK";
				status = "disabled";
			};
		};

		apb@d4000000 {	/* APB */
			compatible = "mrvl,apb-bus", "simple-bus";
			#address-cells = <1>;
			#size-cells = <1>;
			reg = <0xd4000000 0x00200000>;
			ranges;

			pdma0: pdma@d4000000 {
				compatible = "marvell,pdma-1.0";
				reg = <0xd4000000 0x10000>;
				interrupts = <0 47 0x4>;
				#dma-cells= <2>;
				#dma-channels = <30>;
				#dma-channels-tz = <30>;
				lpm-qos = <PM_QOS_CPUIDLE_BLOCK_AXI>;
				status = "disabled";
			};

			timer0: timer@d4014000 {
				compatible = "marvell,mmp-timer";
				reg = <0xd4014000 0xc8>;
				marvell,timer-id = <0>;
				marvell,timer-fastclk-frequency = <3250000>;
				marvell,timer-apb-frequency = <26000000>;
				marvell,timer-has-shadow;

				counter0 {
					compatible = "marvell,timer-counter-clkevt";
					interrupts = <0 13 0x4>;
					marvell,timer-counter-id = <0>;
					marvell,timer-counter-cpu = <0>;
					marvell,timer-counter-frequency = <32768>;
				};

				counter1 {
					compatible = "marvell,timer-counter-clkevt";
					interrupts = <0 14 0x4>;
					marvell,timer-counter-id = <1>;
					marvell,timer-counter-cpu = <1>;
					marvell,timer-counter-frequency = <32768>;
				};

				counter2 {
					compatible = "marvell,timer-counter-clksrc";
					marvell,timer-counter-id = <2>;
					marvell,timer-counter-frequency = <32768>;
				};
			};

			timer1: timer@d4016000 {
				compatible = "marvell,mmp-timer";
				reg = <0xd4016000 0xc8>;
				marvell,timer-id = <1>;
				marvell,timer-fastclk-frequency = <3250000>;
				marvell,timer-apb-frequency = <26000000>;
				marvell,timer-has-shadow;

				counter0 {
					compatible = "marvell,timer-counter-clkevt";
					interrupts = <0 29 0x4>;
					marvell,timer-counter-id = <0>;
					marvell,timer-counter-cpu = <2>;
					marvell,timer-counter-frequency = <32768>;
				};

				counter1 {
					compatible = "marvell,timer-counter-clkevt";
					interrupts = <0 30 0x4>;
					marvell,timer-counter-id = <1>;
					marvell,timer-counter-cpu = <3>;
					marvell,timer-counter-frequency = <32768>;
				};

				counter2 {
					compatible = "marvell,timer-counter-delay";
					marvell,timer-counter-id = <2>;
					marvell,timer-counter-frequency = <3250000>;
				};
			};

			timer2: timer@d401f000 {
				compatible = "marvell,mmp-timer";
				reg = <0xd401f000 0xc8>;
				marvell,timer-id = <2>;
				marvell,timer-fastclk-frequency = <3250000>;
				marvell,timer-apb-frequency = <26000000>;
				marvell,timer-has-shadow;

				counter0 {
					compatible = "marvell,timer-counter-clkevt";
					interrupts = <0 64 0x4>;
					marvell,timer-counter-id = <0>;
					marvell,timer-counter-broadcast;
					marvell,timer-counter-frequency = <32768>;
				};
			};

			uart0: uart@d4017000 {
				compatible = "mrvl,mmp-uart";
				reg = <0xd4017000 0x1000>;
				interrupts = <0 27 0x4>;
				dmas = <&pdma0 21 1
					&pdma0 22 1>;
				dma-names = "rx", "tx";
				lpm-qos = <PM_QOS_CPUIDLE_BLOCK_AXI>;
				clocks = <&soc_clocks PXA1U88_CLK_UART0>;
			};

			uart1: uart@d4018000 {
				compatible = "mrvl,mmp-uart";
				reg = <0xd4018000 0x1000>;
				interrupts = <0 28 0x4>;
				dmas = <&pdma0 23 1
					&pdma0 24 1>;
				dma-names = "rx", "tx";
				lpm-qos = <PM_QOS_CPUIDLE_BLOCK_AXI>;
				clocks = <&soc_clocks PXA1U88_CLK_UART1>;
			};

			uart2: uart@d4036000 {
				compatible = "mrvl,mmp-uart";
				reg = <0xd4036000 0x1000>;
				interrupts = <0 59 0x4>;
				dmas = <&pdma0 4 1
					&pdma0 5 1>;
				dma-names = "rx", "tx";
				lpm-qos = <PM_QOS_CPUIDLE_BLOCK_AXI>;
				clocks = <&soc_clocks PXA1U88_CLK_UART2>;
			};

			pwm4: pwm@d401ac00 {
				compatible = "marvell,pxa25x-pwm";
				reg = <0xd401ac00 0x10>;
				#pwm-cells = <2>;
				clocks = <&soc_clocks PXA1U88_CLK_PWM3>;
				status = "okay";
			};

			gpio: gpio@d4019000 {
				compatible = "marvell,mmp-gpio";
				#address-cells = <1>;
				#size-cells = <1>;
				reg = <0xd4019000 0x800>;
				gpio-controller;
				#gpio-cells = <2>;
				interrupts = <0 49 0x4>;
				clocks = <&soc_clocks PXA1U88_CLK_GPIO>;
				interrupt-names = "gpio_mux";
				interrupt-controller;
				#interrupt-cells = <2>;
				ranges;

				gcb0: gpio@d4019000 {
					reg-offset = <0x0>;
					gpio-range = <&pmx 0 55 32>;
				};

				gcb1: gpio@d4019004 {
					reg-offset = <0x4>;
					gpio-ranges = <&pmx 0 87 23>;
				};

				gcb2: gpio@d4019008 {
					reg-offset = <0x8>;
					gpio-ranges = <&pmx 3 110 29>;
				};

				gcb3: gpio@d4019100 {
					reg-offset = <0x100>;
					gpio-ranges = <&pmx 0 139 3  &pmx 28 52 1>;
				};
			};

			edgewakeup: edgewakeup@d4019800 {
				compatible = "mrvl,mmp-edge-wakeup";
				reg = <0xd4019800 0x10>;
				status = "disabled";
			};

			rtc: rtc@d4010000 {
				compatible = "mrvl,mmp-rtc";
				reg = <0xd4010000 0x100>;
				interrupts = <0 5 0x4>,<0 6 0x4>;
				interrupt-names = "rtc 1Hz", "rtc alarm";
				clocks = <&soc_clocks PXA1U88_CLK_RTC>;
			};

			keypad: keypad@d4012000 {
				compatible = "marvell,pxa27x-keypad";
				reg = <0xd4012000 0x4c>;
				lpm-qos = <PM_QOS_CPUIDLE_BLOCK_DDR>;
				interrupts = <0 9 0x4>;
				clocks = <&soc_clocks PXA1U88_CLK_KPC>;
				status = "disabled";
			};

			sspa0: sspa@d128dc00 {
				compatible = "mrvl,mmp-sspa-dai";
				reg = <0xd128dc00 0x100>;
				dmas = <&adma0 1
					&adma0 0>;
				dma-names = "rx", "tx";
				asram = <&asram>;
				platform_driver_name = "tdma_platform";
				clocks = <&audio_map_clocks AUDIO_CLK_SSPA0>;
				status = "disabled";
			};

			map: map@d1200000 {
				compatible = "marvell,mmp-map";
				marvell,map-lite;
				reg = <0xd1230000 0x80
					0xd1200000 0x8000>;
				audio_reg = <128>;
				bit_sram = <3>;
				bit_apb = <2>;
				pll_sel = <0>;
				power_ctrl = <2>;
				clocks = <&audio_map_clocks AUDIO_CLK_MAP>;
				status = "disabled";
			};

			pmx: pinmux@d401e000 {
				compatible = "pinconf-single";
				reg = <0xd401e000 0x330>;
				#address-cells = <1>;
				#size-cells = <1>;
				#gpio-range-cells = <3>;
				ranges;

				pinctrl-single,register-width = <32>;
				pinctrl-single,function-mask = <7>;

				range: gpio-range {
					#pinctrl-single,gpio-range-cells = <3>;
				};
			};

			twsi0: i2c@d4011000 {
				compatible = "mrvl,mmp-twsi";
				#address-cells = <1>;
				#size-cells = <0>;
				reg = <0xd4011000 0x64>;
				interrupts = <0 7 IRQ_TYPE_LEVEL_HIGH>;
				clocks = <&soc_clocks PXA1U88_CLK_TWSI0>;
				lpm-qos = <PM_QOS_CPUIDLE_BLOCK_DDR>;

				mrvl,i2c-fast-mode;
				/*
				 *ilcr: fast mode b17~9=0x23, 390k
				 *      standard mode b8~0=0x9f, 97k
				 *iwcr: b5~0=b01010 recommended value from spec
				 */
				marvell,i2c-ilcr = <0x82c469f>;
				marvell,i2c-iwcr = <0x142a>;
				marvell,i2c-enable-bus-rst;

				status = "disabled";
			};

			twsi1: i2c@d4010800 {
				compatible = "mrvl,mmp-twsi";
				#address-cells = <1>;
				#size-cells = <0>;
				reg = <0xd4010800 0x64>;
				interrupts = <0 33 IRQ_TYPE_LEVEL_HIGH>;
				clocks = <&soc_clocks PXA1U88_CLK_TWSI1>;
				lpm-qos = <PM_QOS_CPUIDLE_BLOCK_DDR>;

				mrvl,i2c-fast-mode;
				marvell,i2c-ilcr = <0x82c469f>;
				marvell,i2c-iwcr = <0x142a>;
				marvell,i2c-enable-bus-rst;

				status = "disabled";
			};

			twsi2: i2c@d4037000 {
				compatible = "mrvl,mmp-twsi";
				#address-cells = <1>;
				#size-cells = <0>;
				interrupts = <0 54 IRQ_TYPE_LEVEL_HIGH>;
				clocks = <&soc_clocks PXA1U88_CLK_TWSI2>;
				lpm-qos = <PM_QOS_CPUIDLE_BLOCK_DDR>;

				/* RIPC3 */
				reg = <0xd4037000 0x64>,
				      <0xd403d300 0x4>;
				mrvl,i2c-fast-mode;
				marvell,i2c-ilcr = <0x82c469f>;
				marvell,i2c-iwcr = <0x142a>;
				marvell,i2c-enable-bus-rst;

				marvell,i2c-always-on;
				status = "disabled";
			};

			twsi3: i2c@d4013800 {
				compatible = "mrvl,mmp-twsi";
				#address-cells = <1>;
				#size-cells = <0>;
				reg = <0xd4013800 0x64>;
				interrupts = <0 93 IRQ_TYPE_LEVEL_HIGH>;
				clocks = <&soc_clocks PXA1U88_CLK_TWSI3>;
				lpm-qos = <PM_QOS_CPUIDLE_BLOCK_DDR>;

				mrvl,i2c-fast-mode;
				/*
				 *ilcr: fast mode b17~9=0x23, 390k
				 *      standard mode b8~0=0x9f, 97k
				 *iwcr: b5~0=b01010 recommended value from spec
				 */
				marvell,i2c-ilcr = <0x82c469f>;
				marvell,i2c-iwcr = <0x142a>;
				marvell,i2c-enable-bus-rst;

				status = "disabled";
			};

			thermal: thermal@d4013300 {
				compatible = "marvell,pxa28nm-thermal";
				reg = <0xd4013300 0x1C>;
				interrupts = <0 60 0x4>;
				clocks = <&soc_clocks PXA1U88_CLK_THERMAL>;
				clock-names = "ts_clk";
				status = "disabled";
			};

			coresight: coresight@d4100000 {
				compatible = "marvell,coresight";
				clocks = <&soc_clocks PXA1U88_CLK_DBGCLK>,
					 <&soc_clocks PXA1U88_CLK_TRACECLK>;
				clock-names = "DBGCLK","TRACECLK";
				status = "disabled";
				#address-cells = <1>;
				#size-cells = <1>;
				reg = <0xd4100000 0x100000>;
				ranges;

				dbg: dbg@0xd4110000 {
					compatible = "marvell,coresight-dbg";
					reg = <0xd4110000 0x8000>;
				};

				cti: cti@0xd4118000 {
					compatible = "marvell,coresight-cti";
				        reg = <0xd4118000 0x4000>;
				};

				etm: etm@0xd411c000 {
					compatible = "marvell,coresight-etm";
				        reg = <0xd411c000 0x4000>;
				};

				letb: letb@0xd410a000 {
					compatible = "marvell,coresight-letb";
				        reg = <0xd410a000 0x4000>;
				};
			};

			watchdog: watchdog@d4080000 {
				compatible = "marvell,mmp-wdt";
				reg = <0xd4080000 0xff>,
				      <0xd4050000 0x1024>;
				status = "disabled";
			};

			swjtag: swjtag@d4013100 {
				compatible = "marvell,sw-jtag";
				reg = <0xd4013100 0x10>;
				status = "disabled";
			};

			acipc: acipc@d401d000 {
				compatible = "marvell,mmp-acipc";
				reg = <0xd401d000 0x100>;
				interrupts = <0 16 0x4>,<0 17 0x4>,<0 18 0x4>;
				interrupt-names = "IPC_AP_DATAACK", "IPC_AP_SET_CMD", "IPC_AP_SET_MSG";
				clocks = <&soc_clocks PXA1U88_CLK_IPC_RST>;
				status = "disabled";
			};

			seh: seh@d4080000 {
				compatible = "marvell,seh";
				reg = <0xd4080000 0x100>, <0xd403d300 0x4>;
				interrupts = <0 32 0x4>;
				interrupt-names = "CP_TIMER2_3";
				clocks = <&soc_clocks PXA1U88_CLK_AICER>;
				watchdog-type = <1>; /* soc timer */
				timer-num = <2>; /* timer num */
				match-num = <0>; /* match num */
				status = "disabled";
			};

			cp-load {
				compatible = "marvell,cp_load";
				cp-type = <3>; /* pxa1908 */
				lpm-qos = <PM_QOS_CPUIDLE_BLOCK_AXI>;
				remap-smc-funcid = <0xd0002001>;
				status = "disabled";
			};
		};
	};

	regs_addr {
		#address-cells = <1>;
		#size-cells = <1>;
		ranges;

		mpmu: pmu@d4050000 {
			compatible = "marvell,mmp-pmu-mpmu";
			reg = <0xd4050000 0x3004>;
		};

		apmu: pmu@d4282800 {
			compatible = "marvell,mmp-pmu-apmu";
			reg = <0xd4282800 0x1c0>;
		};

		apbc: pmu@d4015000 {
			compatible = "marvell,mmp-pmu-apbc";
			reg = <0xd4015000 0x74>;
		};

		ciu: ciu@d4282c00 {
			compatible = "marvell,mmp-ciu";
			reg = <0xd4282c00 0x1ac>;
		};

		dmcu: dmcu@c0100000 {
			compatible = "marvell,mmp-dmcu";
			reg = <0xc0100000 0x880>;
		};

		wdtrtc: wdtrtc@d4010000 {
			compatible = "marvell,mmp-wdt-rtc";
			reg = <0xd4010000 0x100>;
		};

		wdt: wdt@d4080000 {
			compatible = "marvell,mmp-watchdog";
			reg = <0xd4080000 0xff>;
		};

		apbs: apbs@d4090000 {
			compatible = "marvell,mmp-apb-spare";
			reg = <0xd4090000 0x154>;
		};
	};

	soc_clocks: clocks{
		compatible = "marvell,pxa1U88-clock";
		reg = <0xd4050000 0x1000>,
		      <0xd4282800 0x400>,
		      <0xd4015000 0x1000>,
		      <0xd403b000 0x1000>,
		      <0xd4090000 0x1000>,
		      <0xd4282c00 0x400>;
		reg-names = "mpmu", "apmu", "apbc", "apbcp", "apbs", "ciu";
		#clock-cells = <1>;
        };

	mmp_m3_1: apsenhb {
		compatible = "marvell,mmp-m3";
		ipver = <2>;
		status = "disabled";
	};

	mmp_m3_2: cm3senhb {
		compatible = "marvell,mmp-m3";
		ipver = <2>;
		status = "disabled";
	};

	audio_map_clocks: clock{
		compatible = "marvell,audio-map-clock";
		reg = <0xd4282800 0x400>,
		      <0xd4090000 0x1000>,
		      <0xd1200000 0x8000>,
		      <0xd1230000 0x100>;
		reg-names = "apmu", "apbs", "map", "dspaux";
		#clock-cells = <1>;
		map = <&map>;
	};

	amipc {
		compatible = "marvell,mmp-amipc";
		reg = <0xC9420000 0x4000>;
		reg-name = "dmachain";
		interrupts = <0 95 0x4>;
		status = "okay";
	};

	touch: vnc {
		compatible = "vnc-ts";
	};

	ion: ion {
		compatible = "marvell,pxa-ion";
		#stream-id-cells = <1>;
		status = "disabled";
	};

	mcam0: mcam@0 {
		compatible = "marvell,mv_sc2_camera";
		clocks = <&soc_clocks PXA1U88_CLK_SC2_AXI_CLK>,
				<&soc_clocks PXA1U88_CLK_SC2_MCLK>;
		clock-names = "SC2AXICLK", "SC2MCLK";
		lpm-qos = <PM_QOS_CPUIDLE_BLOCK_AXI>;
		status = "disabled";
		reg = <0x0 0x0>;
	};

	mcam1: mcam@1 {
		compatible = "marvell,mv_sc2_camera";
		clocks = <&soc_clocks PXA1U88_CLK_SC2_AXI_CLK>,
				<&soc_clocks PXA1U88_CLK_SC2_MCLK>;
		clock-names = "SC2AXICLK", "SC2MCLK";
		lpm-qos = <PM_QOS_CPUIDLE_BLOCK_AXI>;
		status = "disabled";
		reg = <0x1 0x0>;
	};

	soc-camera@0 {
		compatible = "soc-camera-pdrv";
		status = "disabled";
		reg = <0x0 0x0>;
	};

	soc-camera@1 {
		compatible = "soc-camera-pdrv";
		status = "disabled";
		reg = <0x1 0x0>;
	};

	soc-camera@2 {
		compatible = "soc-camera-pdrv";
		status = "disabled";
		reg = <0x2 0x0>;
	};

	soc-camera@3 {
		compatible = "soc-camera-pdrv";
		status = "disabled";
		reg = <0x3 0x0>;
	};

	plat_cam {
		compatible = "marvell,platform-cam";
		status = "disabled";
	};
	b52isp_sc2_csi0 {
		compatible = "marvell,ccicv2";
		cciv2_type = <0>;
		csi_id = <0>;
		status = "disabled";
	};
	b52isp_sc2_csi1 {
		compatible = "marvell,ccicv2";
		cciv2_type = <0>;
		csi_id = <1>;
		status = "disabled";
	};
	b52isp_sc2_dma0 {
		compatible = "marvell,ccicv2";
		cciv2_type = <1>;
		dma_id = <0>;
		status = "disabled";
	};
	b52isp_sc2_dma1 {
		compatible = "marvell,ccicv2";
		cciv2_type = <1>;
		dma_id = <1>;
		status = "disabled";
	};

	sd8x-rfkill {
		compatible = "mrvl,sd8x-rfkill";
		status = "disabled";
	};

	tzdd {
		compatible = "pxa-tzdd";
		status = "disabled";
		lpm-qos =  <PM_QOS_CPUIDLE_BLOCK_AXI>;
	};

	iml: iml@7ffffe0{
		compatible = "marvell,mmp-iml";
		reg = <0x07ffffe0 0x10>, <0xd403d200 0x10>, <0xd403b038 0x10>, <0xd4282d24 0x4>;
		interrupts = <0 56 0x4>;
		interrupt-names = "IPC_MSA_DATA";
		remap = <0 26 6>;
		dmas = <&pdma0 0xFF 0>;
		dma-names =  "iml-dma";
		status = "disabled";
	};
	mmplog {
		compatible = "marvell,mmplog-heap";
		status = "disabled";
	};

	pmu {
		compatible = "arm,armv8-pmuv3";
		interrupts = <0 84 4>,
			     <0 85 4>,
			     <0 86 4>,
			     <0 87 4>;
	};
};