]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - arch/arm/boot/dts/imx6q-utilite-pro.dts
ARM: dts: imx6q-cm-fx6: fix the operation points
[mirror_ubuntu-eoan-kernel.git] / arch / arm / boot / dts / imx6q-utilite-pro.dts
CommitLineData
1ad257d1
CS
1/*
2 * Copyright 2013 CompuLab Ltd.
3 * Copyright 2016 Christopher Spinrath
4 *
5 * Based on the devicetree distributed with the vendor kernel for the
6 * Utilite Pro:
7 * Copyright 2013 CompuLab Ltd.
8 * Author: Valentin Raevsky <valentin@compulab.co.il>
9 *
10 * This file is dual-licensed: you can use it either under the terms
11 * of the GPL or the X11 license, at your option. Note that this dual
12 * licensing only applies to this file, and not this project as a
13 * whole.
14 *
15 * a) This file is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License as
17 * published by the Free Software Foundation; either version 2 of the
18 * License, or (at your option) any later version.
19 *
20 * This file is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * Or, alternatively,
26 *
27 * b) Permission is hereby granted, free of charge, to any person
28 * obtaining a copy of this software and associated documentation
29 * files (the "Software"), to deal in the Software without
30 * restriction, including without limitation the rights to use,
31 * copy, modify, merge, publish, distribute, sublicense, and/or
32 * sell copies of the Software, and to permit persons to whom the
33 * Software is furnished to do so, subject to the following
34 * conditions:
35 *
36 * The above copyright notice and this permission notice shall be
37 * included in all copies or substantial portions of the Software.
38 *
39 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
40 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
41 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
42 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
43 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
44 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
45 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
46 * OTHER DEALINGS IN THE SOFTWARE.
47 */
48
49#include <dt-bindings/input/input.h>
50#include "imx6q-cm-fx6.dts"
51
52/ {
53 model = "CompuLab Utilite Pro";
54 compatible = "compulab,utilite-pro", "compulab,cm-fx6", "fsl,imx6q";
55
56 aliases {
57 ethernet1 = &eth1;
58 rtc0 = &em3027;
59 rtc1 = &snvs_rtc;
60 };
61
62 gpio-keys {
63 compatible = "gpio-keys";
64 pinctrl-names = "default";
65 pinctrl-0 = <&pinctrl_gpio_keys>;
66
67 power {
68 label = "Power Button";
69 gpios = <&gpio1 29 GPIO_ACTIVE_LOW>;
70 linux,code = <KEY_POWER>;
71 gpio-key,wakeup;
72 };
73 };
74};
75
76&hdmi {
77 ddc-i2c-bus = <&i2c2>;
78 status = "okay";
79};
80
81&i2c1 {
82 pinctrl-names = "default";
83 pinctrl-0 = <&pinctrl_i2c1>;
84 status = "okay";
85
86 eeprom@50 {
87 compatible = "at24,24c02";
88 reg = <0x50>;
89 pagesize = <16>;
90 };
91
92 em3027: rtc@56 {
93 compatible = "emmicro,em3027";
94 reg = <0x56>;
95 };
96};
97
98&i2c2 {
99 pinctrl-names = "default";
100 pinctrl-0 = <&pinctrl_i2c2>;
101 status = "okay";
102};
103
104&iomuxc {
105 pinctrl_gpio_keys: gpio_keysgrp {
106 fsl,pins = <
107 MX6QDL_PAD_ENET_TXD1__GPIO1_IO29 0x1b0b0
108 >;
109 };
110
111 pinctrl_i2c1: i2c1grp {
112 fsl,pins = <
113 MX6QDL_PAD_EIM_D21__I2C1_SCL 0x4001b8b1
114 MX6QDL_PAD_EIM_D28__I2C1_SDA 0x4001b8b1
115 >;
116 };
117
118 pinctrl_i2c2: i2c2grp {
119 fsl,pins = <
120 MX6QDL_PAD_KEY_COL3__I2C2_SCL 0x4001b8b1
121 MX6QDL_PAD_KEY_ROW3__I2C2_SDA 0x4001b8b1
122 >;
123 };
124
125 pinctrl_uart2: uart2grp {
126 fsl,pins = <
127 MX6QDL_PAD_GPIO_7__UART2_TX_DATA 0x1b0b1
128 MX6QDL_PAD_GPIO_8__UART2_RX_DATA 0x1b0b1
129 MX6QDL_PAD_SD4_DAT5__UART2_RTS_B 0x1b0b1
130 MX6QDL_PAD_SD4_DAT6__UART2_CTS_B 0x1b0b1
131 >;
132 };
133};
134
135&pcie {
136 pcie@0,0 {
137 reg = <0x000000 0 0 0 0>;
138 #address-cells = <3>;
139 #size-cells = <2>;
140
141 /* non-removable i211 ethernet card */
142 eth1: intel,i211@pcie0,0 {
143 reg = <0x010000 0 0 0 0>;
144 };
145 };
146};
147
148&uart2 {
149 pinctrl-names = "default";
150 pinctrl-0 = <&pinctrl_uart2>;
151 uart-has-rtscts;
152 status = "okay";
153};