From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 6502AC433F5 for ; Thu, 21 Apr 2022 16:48:22 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 3815983EBB; Thu, 21 Apr 2022 18:48:20 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=denx.de Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=denx.de; s=phobos-20191101; t=1650559700; bh=3Bm0NHqERZDDMMpPIb/oGDZ7lndbzKunFsImGylQAGU=; h=Date:From:To:Cc:Subject:In-Reply-To:References:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: From; b=Ar2f1VuJ9FzkTaDT3Hl96qNMu1cNWbdEbxloyRN/HWvecgXhsd6YTdwWivMVSkV9O ecy6bQnLaEtUMlgRjjGvzpJPey7fl/6AjcUqp5ZfLwijAsi7zyHseE6m45vt8FxNwb PUxW6vl3IkfJB74OzyK7KuBlQNSsEaWccRaw3srh2e1tRRxDivepqLFvemsFxOwbn3 mOJWgDZ/tLKzOVuCEhgHylq6PDcL7RCRTAj6GO70k7OHOkdORKyDWtD9Jmf/c+yBUI RF2TT2YkaZWToLwwlDCwNbota+gJt30gFyrscZodBLfC1Hpxxb+L59OmDVEnhrcgaX Z/Vb7CAxvU3mw== Received: from mail.denx.de (unknown [IPv6:2a01:238:438b:c500:173d:9f52:ddab:ee01]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: pro@denx.de) by phobos.denx.de (Postfix) with ESMTPSA id B008383E9D; Thu, 21 Apr 2022 18:48:18 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=denx.de; s=phobos-20191101; t=1650559698; bh=3Bm0NHqERZDDMMpPIb/oGDZ7lndbzKunFsImGylQAGU=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=sM0/NNxuts4Yw19Hc6DkkJ8/YcFicYaE3qz1bgOE+5BCyoILM3HHKj1hQ2ElkIK7o u2KFoMdoZDuzMk4sMpqlagAbzqWieRH3Hp1lQz2FXugoA4zEnvH5ojdvFdwl4yWS+D Y7t3rI87Gh/wOctrfri2ruNQ2p39lxhDoUoL2rOFHXspYpfzJgR9TA86WSLAtDTcis n0e/ZCaL9qLkfsMHXv/UV/kEV4ItWAWa7XrXFCcfqNjS3MR9QFUoHTzP7Bnbre8hf2 qaV7Lo0nzQ/jXAv/ojz8VRQgMi6TmM3lZ7pJ9Apqw0MxM1R0rFvJbpf0GdZyykie8m SG8GDzSXqIxqw== MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Thu, 21 Apr 2022 18:48:18 +0200 From: pro@denx.de To: Stefano Babic , u-boot@lists.denx.de Cc: Andre Przywara , Christian Hewitt , Fabio Estevam , Frieder Schrempf , Heiko Schocher , Jagan Teki , Konstantin Porotchkin , Matthias Schiffer , Matthias Winker , Michal Simek , "NXP i.MX U-Boot Team" , Navin Sankar Velliangiri , Neil Armstrong , Oleh Kravchenko , Simon Glass , Sinthu Raja , "Ying-Chun Liu (PaulLiu)" Subject: Re: [PATCH v3] bosch: Add initial board support for ACC In-Reply-To: References: <20220419144414.844050-1-pro@denx.de> Message-ID: X-Sender: pro@denx.de User-Agent: Roundcube Webmail/1.3.6 X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.5 at phobos.denx.de X-Virus-Status: Clean Hi Stefano, On 2022-04-21 16:53, Stefano Babic wrote: > Hi Philip, > > Ci is still broken: > > On 19.04.22 16:44, Philip Oberfichtner wrote: >> The Bosch ACC (Air Center Control) Board is based on the i.MX6D. >> [...] >> +/* Ethernet */ >> +#ifdef CONFIG_FEC_MXC >> +#define CONFIG_FEC_MXC_PHYADDR 0 >> +#define CONFIG_FEC_XCV_TYPE RMII > > Reason is this one. > > I wonder myself why this is required - I set this a lot of time > *before* the switch to DM, but then the connection type is set in DT > and this is not required anymore. Are you sure you need it ? Thanks for the hint. Will be removed in V4. Best regards, Philip > > Regards, > Stefano > >> +#endif >> + >> +/* SPL */ >> +#ifdef CONFIG_SPL >> +#include "imx6_spl.h" >> + >> +#ifdef CONFIG_SPL_BUILD >> +#define CONFIG_SYS_FSL_USDHC_NUM 2 >> + >> +#ifdef CONFIG_SYS_BOOT_EMMC >> + >> +/* Boot from eMMC */ >> +#define CONFIG_SYS_FSL_ESDHC_ADDR 1 >> + >> +#else >> + >> +/* Boot from SD-card */ >> +# define CONFIG_SYS_FSL_ESDHC_ADDR 0 >> + >> +#endif >> + >> +#endif >> +#endif >> + >> +#define CONFIG_EHCI_HCD_INIT_AFTER_RESET >> +#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | >> PORT_PTS_PTW) >> +#define CONFIG_MXC_USB_FLAGS 0 >> +#define CONFIG_USB_MAX_CONTROLLER_COUNT 1 /* Enabled USB controller >> number */ >> + >> +#endif /* __IMX6Q_ACC_H */ -- ===================================================================== DENX Software Engineering GmbH, Managing Director: Wolfgang Denk HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989-22 Fax: +49-8142-66989-80 Email: pro@denx.de =====================================================================