From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754908AbcBBQFk (ORCPT ); Tue, 2 Feb 2016 11:05:40 -0500 Received: from mout.kundenserver.de ([217.72.192.73]:61403 "EHLO mout.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752156AbcBBQFj (ORCPT ); Tue, 2 Feb 2016 11:05:39 -0500 From: Arnd Bergmann To: linux-arm-kernel@lists.infradead.org Cc: Andre Przywara , Matthias Brugger , Maxime Ripard , Chen-Yu Tsai , linux-sunxi@googlegroups.com, Catalin Marinas , Will Deacon , linux-kernel@vger.kernel.org Subject: Re: [PATCH 04/11] arm64: Introduce Allwinner SoC config option Date: Tue, 02 Feb 2016 17:04:56 +0100 Message-ID: <6587581.Opm4UCG8SA@wuerfel> User-Agent: KMail/4.11.5 (Linux/3.16.0-10-generic; KDE/4.11.5; x86_64; ; ) In-Reply-To: <56B0CBA8.3020804@arm.com> References: <1454348370-3816-1-git-send-email-andre.przywara@arm.com> <56B0C95B.4040500@gmail.com> <56B0CBA8.3020804@arm.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Provags-ID: V03:K0:2yDDUkQpQdAj1uilm8F46J7N8+8sgjaw2ShJKGbfc0NZ0E4A5Ps JT0OuwoTCSdXQeQtaoycHzP1y86nLJHw0IpHcCJlHN5NO2ciGnzr1Hzj7NRce0CMZqcMNoC RewyIwsk9zkEiwIElrXh1ojLWOqs2VM42qEgP7kF40iGZqWQrj7DqaaC6PZp2YZUtROO/Q2 /gvg8JewATeGLkwnqHkdw== X-UI-Out-Filterresults: notjunk:1;V01:K0:m7Y3o29Mo8U=:Dz1zVD6ELLbh/tAQFK2179 eLZUQQlDKt7jTO8HZzk5Uii+x08/X3mXhRzB/mm+AmYM75Ifya8cwUsA4DcGDLR6kmFLmH4LE 0c1x85ZFmcZcTyJN/e0QVDVkouz7ED5x3IG7jOdMh78sFY3pnbOElOFZIQcQ6nMc1doUAW1sI flSaPudEuNnX5pCQ2ZDr7zJeNMsY1/AMkEtqlJiaQCgpqSDMFEeqztXmiatSrOzg2ONIRnyrF edAgWkffBMzBSoeCKu4FL8NBwa+BQc1lgMBA1ITMQo+p1h1KSOiqJ3ZZd64ScX+2HwlBuH2tf 1EQGKF4cTlqhvULGuCV60RPURm6GFov3e45y2xg3lSI8W++//3ywfplfoXuDe73oe/qZSTDAo X6EJeiBU9jnl5P+FXh9SY692pFBfOjByxxlRWAf7c/cXzW+2bFRkDMSL83MFjWplz/mzqzxU8 Zim7jDWxV3n8NBwm8obXMHPzVSfubmxrtddef5oW+tE16sNMSMMIL86wshI6IIqVQsriXuf9C bvBj8jWupokDfI82PEtjjVKwFiszTCL1ZVvEMYHjJliSM5K3573T/Wmc9WTxKNxk/9SKZfKgY IdtUe1mqUFYHZJxkEdWzPtY6jGlpO9TQu9dID4Lh8/BoMjJJHePnXUJaqAlyghY+yii7yaDP7 EWlHVK+TwVw+qsar+KtcSbNcuEgY7M6EzVNwfnttKNN4fPdJBP/6oSP33ZXtgzbE88kqNC5Dz G0OowTsqyFOHSXv6 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tuesday 02 February 2016 15:30:48 Andre Przywara wrote: > Hi, > > On 02/02/16 15:20, Matthias Brugger wrote: > > > > > > On 01/02/16 18:39, Andre Przywara wrote: > >> To prepare for the Allwinner A64 SoC support, introduce a config > >> option to allow compiling Allwinner (aka. sunxi) specific drivers > >> for the arm64 architecture as well. > >> This patch just defines the ARCH_SUNXI symbol to allow Allwinner > >> specific drivers to be selected during kernel configuration. > >> Since the MMC driver is quite essential for Linux to be useful, select > >> it by default. > >> > > > > This mostly depends on the board you have. The rootfs could be on the > > flash, on nfs or even on a usb stick. > > Yeah, could be. It's just that all boards I know of so far have either > SD card or eMMC. > Maybe it's better put in defconfig. Yes, definitely. The current patch also causes a Kconfig warning when a user disables CONFIG_MMC, as that a dependency for MMC_SUNXI. There are tons of other options that users need to select to have a usable system, no need to treat this one special. Arnd