aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/brcm63xx/dts/nb6-ser-r0.dts
blob: c0182f33e124d1fef177d53a62eb2a7c41674a61 (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
/dts-v1/;

#include "bcm6362.dtsi"

#include <dt-bindings/input/input.h>

/ {
	model = "SFR neufbox 6 (Sercomm)";
	compatible = "sfr,nb6-ser-r0", "brcm,bcm6362";

	chosen {
		bootargs = "root=/dev/mtdblock2 rootfstype=squashfs,jffs2 noinitrd console=ttyS0,115200";
	};

	gpio-keys-polled {
		compatible = "gpio-keys-polled";
		#address-cells = <1>;
		#size-cells = <0>;
		poll-interval = <20>;
		debounce-interval = <60>;

		service {
			label = "service";
			gpios = <&gpio0 10 1>;
			linux,code = <BTN_0>;
		};
		wlan {
			label = "wlan";
			gpios = <&gpio0 12 1>;
			linux,code = <KEY_WLAN>;
		};
		reset {
			label = "reset";
			gpios = <&gpio0 24 1>;
			linux,code = <KEY_RESTART>;
		};
		wps {
			label = "wps";
			gpios = <&gpio0 25 1>;
			linux,code = <KEY_WPS_BUTTON>;
		};
	};

	switch {
		compatible = "realtek,rtl8367";
		gpio-sda = <&gpio0 18 0>;
		gpio-sck = <&gpio0 20 0>;

		realtek,extif0 = <1 5 1 1 1 1 1 1 2>;
	};
};

&hsspi {
	status = "ok";

	flash@0 {
		compatible = "jedec,spi-nor";
		spi-max-frequency = <20000000>;
		spi-tx-bus-width = <2>;
		spi-rx-bus-width = <2>;
		reg = <0>;

		#address-cells = <1>;
		#size-cells = <1>;

		linux,part-probe = "bcm63xxpart";

		cfe@0 {
			reg = <0x000000 0x010000>;
			label = "cfe";
			read-only;
		};

		linux@10000 {
			reg = <0x010000 0xfe0000>;
			label = "linux";
		};

		nvram@ff0000 {
			reg = <0xff0000 0x010000>;
			label = "nvram";
		};
	};
};
may want to enable this. Note: vi is not Unicode-capable. If your terminal combines several 8-bit bytes into one character (as in Unicode mode), this will not work properly. config BUSYBOX_CONFIG_FEATURE_VI_COLON bool "Enable \":\" colon commands (no \"ex\" mode)" default y depends on BUSYBOX_CONFIG_VI help Enable a limited set of colon commands for vi. This does not provide an "ex" mode. config BUSYBOX_CONFIG_FEATURE_VI_YANKMARK bool "Enable yank/put commands and mark cmds" default y depends on BUSYBOX_CONFIG_VI help This will enable you to use yank and put, as well as mark in busybox vi. config BUSYBOX_CONFIG_FEATURE_VI_SEARCH bool "Enable search and replace cmds" default y depends on BUSYBOX_CONFIG_VI help Select this if you wish to be able to do search and replace in busybox vi. config BUSYBOX_CONFIG_FEATURE_VI_USE_SIGNALS bool "Catch signals" default y depends on BUSYBOX_CONFIG_VI help Selecting this option will make busybox vi signal aware. This will make busybox vi support SIGWINCH to deal with Window Changes, catch Ctrl-Z and Ctrl-C and alarms. config BUSYBOX_CONFIG_FEATURE_VI_DOT_CMD bool "Remember previous cmd and \".\" cmd" default y depends on BUSYBOX_CONFIG_VI help Make busybox vi remember the last command and be able to repeat it. config BUSYBOX_CONFIG_FEATURE_VI_READONLY bool "Enable -R option and \"view\" mode" default y depends on BUSYBOX_CONFIG_VI help Enable the read-only command line option, which allows the user to open a file in read-only mode. config BUSYBOX_CONFIG_FEATURE_VI_SETOPTS bool "Enable set-able options, ai ic showmatch" default y depends on BUSYBOX_CONFIG_VI help Enable the editor to set some (ai, ic, showmatch) options. config BUSYBOX_CONFIG_FEATURE_VI_SET bool "Support for :set" default y depends on BUSYBOX_CONFIG_VI help Support for ":set". config BUSYBOX_CONFIG_FEATURE_VI_WIN_RESIZE bool "Handle window resize" default y depends on BUSYBOX_CONFIG_VI help Make busybox vi behave nicely with terminals that get resized. config BUSYBOX_CONFIG_FEATURE_VI_OPTIMIZE_CURSOR bool "Optimize cursor movement" default y depends on BUSYBOX_CONFIG_VI help This will make the cursor movement faster, but requires more memory and it makes the applet a tiny bit larger. config BUSYBOX_CONFIG_FEATURE_ALLOW_EXEC bool "Allow vi and awk to execute shell commands" default y depends on BUSYBOX_CONFIG_VI || BUSYBOX_CONFIG_AWK help Enables vi and awk features which allows user to execute shell commands (using system() C call). endmenu