commit
0d3f732fd2
@ -0,0 +1,92 @@ |
||||
# This is an example file to generate boot.scr - a boot script for U-Boot |
||||
# Generate boot.scr: |
||||
# ./tools/mkimage -c none -A arm -T script -d autoboot.cmd boot.scr |
||||
# |
||||
# It requires a list of environment variables to be defined before load: |
||||
# platform dependent: boardname, fdtfile, console |
||||
# system dependent: mmcbootdev, mmcbootpart, mmcrootdev, mmcrootpart, rootfstype |
||||
# |
||||
setenv fdtaddr "40800000" |
||||
setenv initrdname "uInitrd" |
||||
setenv initrdaddr "42000000" |
||||
setenv loaddtb "load mmc ${mmcbootdev}:${mmcbootpart} ${fdtaddr} ${fdtfile}" |
||||
setenv loadinitrd "load mmc ${mmcbootdev}:${mmcbootpart} ${initrdaddr} ${initrdname}" |
||||
setenv loadkernel "load mmc ${mmcbootdev}:${mmcbootpart} '${kerneladdr}' '${kernelname}'" |
||||
setenv kernel_args "setenv bootargs ${console} root=/dev/mmcblk${mmcrootdev}p${mmcrootpart} rootfstype=${rootfstype} rootwait ${opts}" |
||||
|
||||
#### Routine: check_dtb - check that target.dtb exists on boot partition |
||||
setenv check_dtb " |
||||
if test -e mmc '${mmcbootdev}':'${mmcbootpart}' '${fdtfile}'; then |
||||
run loaddtb; |
||||
setenv fdt_addr ${fdtaddr}; |
||||
else |
||||
echo Warning! Booting without DTB: '${fdtfile}'!; |
||||
setenv fdt_addr; |
||||
fi;" |
||||
|
||||
#### Routine: check_ramdisk - check that uInitrd exists on boot partition |
||||
setenv check_ramdisk " |
||||
if test -e mmc '${mmcbootdev}':'${mmcbootpart}' '${initrdname}'; then |
||||
echo "Found ramdisk image."; |
||||
run loadinitrd; |
||||
setenv initrd_addr ${initrdaddr}; |
||||
else |
||||
echo Warning! Booting without RAMDISK: '${initrdname}'!; |
||||
setenv initrd_addr -; |
||||
fi;" |
||||
|
||||
#### Routine: boot_fit - check that env $boardname is set and boot proper config of ITB image |
||||
setenv setboot_fit " |
||||
if test -e '${boardname}'; then |
||||
setenv fdt_addr ; |
||||
setenv initrd_addr ; |
||||
setenv kerneladdr 0x42000000; |
||||
setenv kernelname Image.itb; |
||||
setenv itbcfg \#'${boardname}'; |
||||
setenv imgbootcmd bootm; |
||||
else |
||||
echo Warning! Variable: \$boardname is undefined!; |
||||
fi" |
||||
|
||||
#### Routine: setboot_uimg - prepare env to boot uImage |
||||
setenv setboot_uimg " |
||||
setenv kerneladdr 0x40007FC0; |
||||
setenv kernelname uImage; |
||||
setenv itbcfg ; |
||||
setenv imgbootcmd bootm; |
||||
run check_dtb; |
||||
run check_ramdisk;" |
||||
|
||||
#### Routine: setboot_zimg - prepare env to boot zImage |
||||
setenv setboot_zimg " |
||||
setenv kerneladdr 0x40007FC0; |
||||
setenv kernelname zImage; |
||||
setenv itbcfg ; |
||||
setenv imgbootcmd bootz; |
||||
run check_dtb; |
||||
run check_ramdisk;" |
||||
|
||||
#### Routine: boot_img - boot the kernel after env setup |
||||
setenv boot_img " |
||||
run loadkernel; |
||||
run kernel_args; |
||||
'${imgbootcmd}' '${kerneladdr}${itbcfg}' '${initrd_addr}' '${fdt_addr}';" |
||||
|
||||
#### Routine: autoboot - choose proper boot path |
||||
setenv autoboot " |
||||
if test -e mmc 0:${mmcbootpart} Image.itb; then |
||||
echo Found kernel image: Image.itb; |
||||
run setboot_fit; |
||||
run boot_img; |
||||
elif test -e mmc 0:${mmcbootpart} zImage; then |
||||
echo Found kernel image: zImage; |
||||
run setboot_zimg; |
||||
run boot_img; |
||||
elif test -e mmc 0:${mmcbootpart} uImage; then |
||||
echo Found kernel image: uImage; |
||||
run setboot_uimg; |
||||
run boot_img; |
||||
fi;" |
||||
|
||||
#### Execute the defined autoboot macro |
||||
run autoboot |
@ -0,0 +1,10 @@ |
||||
setenv kernelname zImage; |
||||
setenv boot_kernel "setenv bootargs \"${console} root=/dev/mmcblk${mmcrootdev}p${mmcrootpart} rootfstype=${rootfstype} rootwait ${opts}\"; |
||||
load mmc ${mmcbootdev}:${mmcbootpart} 0x40007FC0 '${kernelname}'; |
||||
if load mmc ${mmcbootdev}:${mmcbootpart} 40800000 ${fdtfile}; then |
||||
bootz 0x40007FC0 - 40800000; |
||||
else |
||||
echo Warning! Booting without DTB: '${fdtfile}'!; |
||||
bootz 0x40007FC0 -; |
||||
fi;" |
||||
run boot_kernel; |
@ -0,0 +1,78 @@ |
||||
/**
|
||||
* samsung_usb_phy.c - DesignWare USB3 (DWC3) PHY handling file |
||||
* |
||||
* Copyright (C) 2015 Samsung Electronics |
||||
* |
||||
* Author: Joonyoung Shim <jy0922.shim@samsung.com> |
||||
* |
||||
* SPDX-License-Identifier: GPL-2.0 |
||||
*/ |
||||
|
||||
#include <common.h> |
||||
#include <asm/arch/power.h> |
||||
#include <asm/arch/xhci-exynos.h> |
||||
|
||||
void exynos5_usb3_phy_init(struct exynos_usb3_phy *phy) |
||||
{ |
||||
u32 reg; |
||||
|
||||
/* Reset USB 3.0 PHY */ |
||||
writel(0x0, &phy->phy_reg0); |
||||
|
||||
clrbits_le32(&phy->phy_param0, |
||||
/* Select PHY CLK source */ |
||||
PHYPARAM0_REF_USE_PAD | |
||||
/* Set Loss-of-Signal Detector sensitivity */ |
||||
PHYPARAM0_REF_LOSLEVEL_MASK); |
||||
setbits_le32(&phy->phy_param0, PHYPARAM0_REF_LOSLEVEL); |
||||
|
||||
|
||||
writel(0x0, &phy->phy_resume); |
||||
|
||||
/*
|
||||
* Setting the Frame length Adj value[6:1] to default 0x20 |
||||
* See xHCI 1.0 spec, 5.2.4 |
||||
*/ |
||||
setbits_le32(&phy->link_system, |
||||
LINKSYSTEM_XHCI_VERSION_CONTROL | |
||||
LINKSYSTEM_FLADJ(0x20)); |
||||
|
||||
/* Set Tx De-Emphasis level */ |
||||
clrbits_le32(&phy->phy_param1, PHYPARAM1_PCS_TXDEEMPH_MASK); |
||||
setbits_le32(&phy->phy_param1, PHYPARAM1_PCS_TXDEEMPH); |
||||
|
||||
setbits_le32(&phy->phy_batchg, PHYBATCHG_UTMI_CLKSEL); |
||||
|
||||
/* PHYTEST POWERDOWN Control */ |
||||
clrbits_le32(&phy->phy_test, |
||||
PHYTEST_POWERDOWN_SSP | |
||||
PHYTEST_POWERDOWN_HSP); |
||||
|
||||
/* UTMI Power Control */ |
||||
writel(PHYUTMI_OTGDISABLE, &phy->phy_utmi); |
||||
|
||||
/* Use core clock from main PLL */ |
||||
reg = PHYCLKRST_REFCLKSEL_EXT_REFCLK | |
||||
/* Default 24Mhz crystal clock */ |
||||
PHYCLKRST_FSEL(FSEL_CLKSEL_24M) | |
||||
PHYCLKRST_MPLL_MULTIPLIER_24MHZ_REF | |
||||
PHYCLKRST_SSC_REFCLKSEL(0) | |
||||
/* Force PortReset of PHY */ |
||||
PHYCLKRST_PORTRESET | |
||||
/* Digital power supply in normal operating mode */ |
||||
PHYCLKRST_RETENABLEN | |
||||
/* Enable ref clock for SS function */ |
||||
PHYCLKRST_REF_SSP_EN | |
||||
/* Enable spread spectrum */ |
||||
PHYCLKRST_SSC_EN | |
||||
/* Power down HS Bias and PLL blocks in suspend mode */ |
||||
PHYCLKRST_COMMONONN; |
||||
|
||||
writel(reg, &phy->phy_clk_rst); |
||||
|
||||
/* giving time to Phy clock to settle before resetting */ |
||||
udelay(10); |
||||
|
||||
reg &= ~PHYCLKRST_PORTRESET; |
||||
writel(reg, &phy->phy_clk_rst); |
||||
} |
@ -0,0 +1,16 @@ |
||||
/* include/samsung-usb-phy-uboot.h
|
||||
* |
||||
* Copyright (c) 2015 Samsung Electronics |
||||
* |
||||
* USB3 (DWC3) PHY uboot init |
||||
* |
||||
* SPDX-License-Identifier: GPL-2.0+ |
||||
*/ |
||||
|
||||
#ifndef __SAMSUNG_USB_PHY_UBOOT_H_ |
||||
#define __SAMSUNG_USB_PHY_UBOOT_H_ |
||||
|
||||
#include <asm/arch/xhci-exynos.h> |
||||
|
||||
void exynos5_usb3_phy_init(struct exynos_usb3_phy *phy); |
||||
#endif /* __SAMSUNG_USB_PHY_UBOOT_H_ */ |
Loading…
Reference in new issue