aboutsummaryrefslogtreecommitdiffstats
path: root/docs/conf.py
Commit message (Expand)AuthorAgeFilesLines
* docs: fix broken versionAldo Cortesi2016-10-211-3/+3
* The final piece: netlib -> mitproxy.netAldo Cortesi2016-10-201-4/+1
* netlib.version -> mitmproxy.versionAldo Cortesi2016-10-201-3/+3
* docs: link to correct tagMaximilian Hils2016-10-161-5/+16
* docs: improve external source links, tweak code docsAldo Cortesi2016-10-161-15/+14
* docs: cleanups improvements and fighting sphinxAldo Cortesi2016-10-161-1/+44
* docs: minor formatting/cleanupsAldo Cortesi2016-09-301-30/+1
* Fold mitmproxy.version and pathod.version into netlib.versionAldo Cortesi2016-06-121-3/+3
* docs: adjust theme override inclusionAldo Cortesi2016-06-071-5/+2
* Migrate pathod docs to SphinxAldo Cortesi2016-06-071-2/+8
* Docs and examples to top levelAldo Cortesi2016-02-181-0/+219
* move mitmproxyMaximilian Hils2016-02-151-219/+0
* fix #823Maximilian Hils2016-02-101-3/+3
* adjust to netlib request changes + docsMaximilian Hils2015-09-261-0/+3
* docs++Maximilian Hils2015-09-061-1/+2
* docs++Maximilian Hils2015-09-051-1/+1
* rewrite basic docs for readthedocsMaximilian Hils2015-09-041-0/+215
olor: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
/dts-v1/;

#include "bcm6358.dtsi"

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

/ {
	model = "D-Link DVA-G3810BN/TL";
	compatible = "d-link,dva-g3810bn/tl", "brcm,bcm6358";

	chosen {
		bootargs = "rootfstype=squashfs,jffs2 noinitrd console=ttyS0,115200";
		stdout-path = "serial0:115200n8";
	};

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

		reset {
			label = "reset";
			gpios = <&pinctrl 34 1>;
			linux,code = <KEY_RESTART>;
			debounce-interval = <60>;
		};
	};

	leds {
		compatible = "gpio-leds";

		voip {
			label = "DVAG3810BN::voip";
			gpios = <&pinctrl 1 0>;
		};
		power {
			label = "DVAG3810BN::power";
			gpios = <&pinctrl 4 0>;
			default-state = "on";
		};
		stop {
			label = "DVAG3810BN::stop";
			gpios = <&pinctrl 5 0>;
		};
		dsl {
			label = "DVAG3810BN::dsl";
			gpios = <&pinctrl 22 1>;
		};
		inet {
			label = "DVAG3810BN::internet";
			gpios = <&pinctrl 23 1>;
		};
	};
};

&pflash {
	status = "ok";

	partitions {
		compatible = "fixed-partitions";
		#address-cells = <1>;
		#size-cells = <1>;

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

		linux@10000 {
			label = "linux";
			reg = <0x010000 0x7e0000>;
			compatible = "brcm,bcm963xx-imagetag";
		};

		nvram@7f0000 {
			label = "nvram";
			reg = <0x7f0000 0x010000>;
		};
	};
};

&uart0 {
	status = "ok";
};