From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Kemnade Subject: Re: [PATCH v3 2/3] ARM: dts: add Netronix E60K02 board common file Date: Fri, 11 Oct 2019 09:41:48 +0200 Message-ID: <20191011094148.1376430e@aktux> References: <20191010192357.27884-1-andreas@kemnade.info> <20191010192357.27884-3-andreas@kemnade.info> <20191011065609.6irap7elicatmsgg@pengutronix.de> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <20191011065609.6irap7elicatmsgg@pengutronix.de> Sender: linux-kernel-owner@vger.kernel.org To: Marco Felsch Cc: robh+dt@kernel.org, mark.rutland@arm.com, shawnguo@kernel.org, s.hauer@pengutronix.de, kernel@pengutronix.de, festevam@gmail.com, linux-imx@nxp.com, manivannan.sadhasivam@linaro.org, andrew.smirnov@gmail.com, marex@denx.de, angus@akkea.ca, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, j.neuschaefer@gmx.net, Discussions about the Letux Kernel List-Id: devicetree@vger.kernel.org On Fri, 11 Oct 2019 08:56:09 +0200 Marco Felsch wrote: > Hi Andreas, > > On 19-10-10 21:23, Andreas Kemnade wrote: > > The Netronix board E60K02 can be found some several Ebook-Readers, > > at least the Kobo Clara HD and the Tolino Shine 3. The board > > is equipped with different SoCs requiring different pinmuxes. > > > > For now the following peripherals are included: > > - LED > > - Power Key > > - Cover (gpio via hall sensor) > > - RC5T619 PMIC (the kernel misses support for rtc and charger > > subdevices). > > - Backlight via lm3630a > > - Wifi sdio chip detection (mmc-powerseq and stuff) > > > > It is based on vendor kernel but heavily reworked due to many > > changed bindings. > > > > Signed-off-by: Andreas Kemnade > > --- > > Changes in v3: > > - better led name > > - correct memory size > > - comments about missing devices > > > > Changes in v2: > > - reordered, was 1/3 > > - moved pinmuxes to their actual users, not the parents > > of them > > - removed some already-disabled stuff > > - minor cleanups > > You won't change the muxing, so a this dtsi can be self contained? > So you want me to put a big #if defined(MX6SLL) [...] pinctrl_i2c1: i2c1grp { fsl,pins = < MX6SLL_PAD_I2C1_SCL__I2C1_SCL 0x4001f8b1 MX6SLL_PAD_I2C1_SDA__I2C1_SDA 0x4001f8b1 >; }; #elif (MX6SL) [...] pinctrl_i2c1: i2c1grp { fsl,pins = < MX6SL_PAD_I2C1_SCL__I2C1_SCL 0x4001f8b1 MX6SL_PAD_I2C1_SDA__I2C1_SDA 0x4001f8b1 >; }; #endif in the dtsi? Regards, Andreas