From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kevin Hilman Date: Fri, 13 May 2016 18:07:52 +0200 Subject: [U-Boot] [PATCH 1/2] mmc: Add Amlogic Meson driver In-Reply-To: (Carlo Caione's message of "Fri, 13 May 2016 15:53:35 +0200") References: <1463056902-8533-1-git-send-email-carlo@caione.org> <1463056902-8533-2-git-send-email-carlo@caione.org> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Carlo Caione writes: > On Fri, May 13, 2016 at 3:46 PM, Kevin Hilman wrote: >> Carlo Caione writes: >> >>> From: Carlo Caione >>> >>> This is a port / rewrite of the Amlogic driver shipped whithin the >>> Amlogic SDK for the Meson GXBaby (S905) SoC. >>> >>> Signed-off-by: Carlo Caione >> >> [...] >> >>> +static const struct udevice_id meson_mmc_match[] = { >>> + { .compatible = "amlogic,meson-mmc" }, >>> + { /* sentinel */ } >> >> IIUC, this controller is different between meson8* and gxbb. If that's >> the case, this compatible should probably be more specific. > > Yes, this is a point I raised also on lkml when I submitted the MMC > driver for the Meson8b. > Since the registers mapping is different I assume that this is the > case. Just to be sure, given that you are the only one with a > datasheet for the GXBB, can you confirm that? I took a quick look and just compared the register layouts between s805 and s905 and indeed they are quite different. Kevin