From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Date: Wed, 15 Apr 2015 21:00:42 +0100 Subject: [U-Boot] [PATCH 08/10] sunxi: Add basic A33 basic support In-Reply-To: <1429027621-19252-8-git-send-email-hdegoede@redhat.com> References: <1429027621-19252-1-git-send-email-hdegoede@redhat.com> <1429027621-19252-8-git-send-email-hdegoede@redhat.com> Message-ID: <1429128042.5660.33.camel@hellion.org.uk> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Tue, 2015-04-14 at 18:06 +0200, Hans de Goede wrote: > From: Vishnu Patekar A quick comment on what "basic" here means, i.e. "prcm, rsb, clocks as per sun6i", etc would be good. > > Signed-off-by: Vishnu Patekar > Signed-off-by: Hans de Goede Did you make non-trivial mods or is this S-o-b just a passing it along one? (In the latter case I won't bother to review deeply myself unless you want me to) > @@ -103,6 +107,10 @@ static void usb_phy_write(struct sunxi_usbc_hcd *sunxi_usbc, int addr, > int j = 0, usbc_bit = 0; > void *dest = sunxi_usbc_get_io_base(0) + SUNXI_USB_CSR; > > +#ifdef CONFIG_MACH_SUN8I_A33 > + writel(0, dest); > +#endif Some undocumented/commented magic? Ian