From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Warren Date: Tue, 1 Mar 2016 10:30:17 -0700 Subject: [U-Boot] [PATCHv2 2/2] Add support the Avionic Design Meerkat COM and Kein Baseboard In-Reply-To: <1456819409-26418-2-git-send-email-julian@jusst.de> References: <1456819409-26418-1-git-send-email-julian@jusst.de> <1456819409-26418-2-git-send-email-julian@jusst.de> Message-ID: <56D5D1A9.9090708@wwwdotorg.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 03/01/2016 01:03 AM, Julian Scheel wrote: > Add support for platforms based on the Meerkat COM module. Includes support > for the minimal reference platform called Kein Baseboard, which in fact is > sufficient to run most existing Meerkat carriers. > > Signed-off-by: Julian Scheel > --- > Changes in v2: > - Rename config options to TARGET_KEIN_BASEBOARD > - Remove unnecessary CONFIG options from kein-baseboard.h > - Remove bad as3722 gpio manipulations on pcie init I think that point didn't actually happen: > diff --git a/board/avionic-design/common/meerkat.c b/board/avionic-design/common/meerkat.c > +int tegra_pcie_board_init(void) > + err = as3722_gpio_configure(pmic, 1, AS3722_GPIO_OUTPUT_VDDH | > + AS3722_GPIO_INVERT); > + if (err < 0) { > + error("failed to configure GPIO#1 as output: %d\n", err); > + return err; > + } > + > + err = as3722_gpio_direction_output(pmic, 2, 1); > + if (err < 0) { > + error("failed to set GPIO#2 high: %d\n", err); > + return err; > + } Aside from that, the series, Acked-by: Stephen Warren