diff options
author | Vishnu Patekar <vishnupatekar0510@gmail.com> | 2015-03-01 23:47:48 +0530 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2015-05-04 16:51:51 +0200 |
commit | 8c3dacff1409109e3697ed60df0e7c93d1309a93 (patch) | |
tree | 25f0eb800ffc377abfb949dc96b94fe3b06c90bf /drivers/video | |
parent | ffc0ae0c70decbe5a91001cbe97e0a511bdf6e88 (diff) | |
download | u-boot-imx-8c3dacff1409109e3697ed60df0e7c93d1309a93.zip u-boot-imx-8c3dacff1409109e3697ed60df0e7c93d1309a93.tar.gz u-boot-imx-8c3dacff1409109e3697ed60df0e7c93d1309a93.tar.bz2 |
sunxi: Add basic A33 basic support
Enable full support for the A33 SoC including display, otg-usb, etc.
Signed-off-by: Vishnu Patekar <vishnupatekar0510@gmail.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Acked-by: Ian Campbell <ijc@hellion.org.uk>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/sunxi_display.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/video/sunxi_display.c b/drivers/video/sunxi_display.c index 2ee1056..1163ecf 100644 --- a/drivers/video/sunxi_display.c +++ b/drivers/video/sunxi_display.c @@ -947,6 +947,9 @@ static void sunxi_drc_init(void) (struct sunxi_ccm_reg *)SUNXI_CCM_BASE; /* On sun6i the drc must be clocked even when in pass-through mode */ +#ifdef CONFIG_MACH_SUN8I_A33 + setbits_le32(&ccm->ahb_reset1_cfg, 1 << AHB_RESET_OFFSET_SAT); +#endif setbits_le32(&ccm->ahb_reset1_cfg, 1 << AHB_RESET_OFFSET_DRC0); clock_set_de_mod_clock(&ccm->iep_drc0_clk_cfg, 300000000); #endif |