mirror of
				https://xff.cz/git/u-boot/
				synced 2025-10-31 18:35:42 +01:00 
			
		
		
		
	Import the dts files from Linux 4.17 and enable CONFIG_OF_CONTROL. Signed-off-by: Chris Packham <judge.packham@gmail.com> Signed-off-by: Stefan Roese <sr@denx.de>
		
			
				
	
	
		
			64 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0
 | |
| /*
 | |
|  * Device Tree file for LaCie 2Big Network v2
 | |
|  *
 | |
|  * Copyright (C) 2014
 | |
|  *
 | |
|  * Andrew Lunn <andrew@lunn.ch>
 | |
|  *
 | |
|  * Based on netxbig_v2-setup.c,
 | |
|  * Copyright (C) 2010 Simon Guinot <sguinot@lacie.com>
 | |
|  *
 | |
| */
 | |
| 
 | |
| /dts-v1/;
 | |
| 
 | |
| #include "kirkwood.dtsi"
 | |
| #include "kirkwood-6281.dtsi"
 | |
| #include "kirkwood-netxbig.dtsi"
 | |
| 
 | |
| / {
 | |
| 	model = "LaCie 2Big Network v2";
 | |
| 	compatible = "lacie,net2big_v2", "lacie,netxbig", "marvell,kirkwood-88f6281", "marvell,kirkwood";
 | |
| 
 | |
| 	memory {
 | |
| 		device_type = "memory";
 | |
| 		reg = <0x00000000 0x10000000>;
 | |
| 	};
 | |
| 
 | |
| 	fan {
 | |
| 		compatible = "gpio-fan";
 | |
| 		alarm-gpios = <&gpio0 25 GPIO_ACTIVE_LOW>;
 | |
| 	};
 | |
| };
 | |
| 
 | |
| ®ulators {
 | |
| 	regulator@2 {
 | |
| 		compatible = "regulator-fixed";
 | |
| 		reg = <2>;
 | |
| 		regulator-name = "hdd1power";
 | |
| 		regulator-min-microvolt = <5000000>;
 | |
| 		regulator-max-microvolt = <5000000>;
 | |
| 		enable-active-high;
 | |
| 		regulator-always-on;
 | |
| 		regulator-boot-on;
 | |
| 		gpio = <&gpio0 17 GPIO_ACTIVE_HIGH>;
 | |
| 	};
 | |
| 
 | |
| 	clocks {
 | |
| 	       g762_clk: g762-oscillator {
 | |
| 			 compatible = "fixed-clock";
 | |
| 			 #clock-cells = <0>;
 | |
| 			 clock-frequency = <32768>;
 | |
| 	       };
 | |
| 	};
 | |
| };
 | |
| 
 | |
| &i2c0 {
 | |
| 	g762@3e {
 | |
| 		compatible = "gmt,g762";
 | |
| 		reg = <0x3e>;
 | |
| 		clocks = <&g762_clk>;
 | |
| 	};
 | |
| };
 |