2006-05-30 14:56:14 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2006
|
|
|
|
* DENX Software Engineering <mk@denx.de>
|
|
|
|
*
|
|
|
|
* See file CREDITS for list of people who contributed to this
|
|
|
|
* project.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
|
2009-11-17 09:30:34 +00:00
|
|
|
#if defined(CONFIG_USB_OHCI_NEW) && \
|
|
|
|
defined(CONFIG_SYS_USB_OHCI_CPU_INIT) && \
|
|
|
|
defined(CONFIG_S3C24X0)
|
2006-05-30 14:56:14 +00:00
|
|
|
|
2009-11-17 09:30:34 +00:00
|
|
|
#include <asm/arch/s3c24x0_cpu.h>
|
2009-10-10 04:30:22 +00:00
|
|
|
#include <asm/io.h>
|
2006-05-30 14:56:14 +00:00
|
|
|
|
2009-10-10 04:30:22 +00:00
|
|
|
int usb_cpu_init(void)
|
|
|
|
{
|
|
|
|
struct s3c24x0_clock_power *clk_power = s3c24x0_get_base_clock_power();
|
|
|
|
struct s3c24x0_gpio *gpio = s3c24x0_get_base_gpio();
|
2006-05-30 14:56:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Set the 48 MHz UPLL clocking. Values are taken from
|
|
|
|
* "PLL value selection guide", 6-23, s3c2400_UM.pdf.
|
|
|
|
*/
|
2009-10-10 04:30:22 +00:00
|
|
|
writel((40 << 12) + (1 << 4) + 2, &clk_power->UPLLCON);
|
|
|
|
/* 1 = use pads related USB for USB host */
|
|
|
|
writel(readl(&gpio->MISCCR) | 0x8, &gpio->MISCCR);
|
2006-05-30 14:56:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Enable USB host clock.
|
|
|
|
*/
|
2009-10-10 04:30:22 +00:00
|
|
|
writel(readl(&clk_power->CLKCON) | (1 << 4), &clk_power->CLKCON);
|
2006-05-30 14:56:14 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-10-10 04:30:22 +00:00
|
|
|
int usb_cpu_stop(void)
|
2006-05-30 14:56:14 +00:00
|
|
|
{
|
2009-10-10 04:30:22 +00:00
|
|
|
struct s3c24x0_clock_power *clk_power = s3c24x0_get_base_clock_power();
|
2006-05-30 14:56:14 +00:00
|
|
|
/* may not want to do this */
|
2009-10-10 04:30:22 +00:00
|
|
|
writel(readl(&clk_power->CLKCON) & ~(1 << 4), &clk_power->CLKCON);
|
2006-05-30 14:56:14 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-10-10 04:30:22 +00:00
|
|
|
int usb_cpu_init_fail(void)
|
2006-05-30 14:56:14 +00:00
|
|
|
{
|
2009-10-10 04:30:22 +00:00
|
|
|
struct s3c24x0_clock_power *clk_power = s3c24x0_get_base_clock_power();
|
|
|
|
writel(readl(&clk_power->CLKCON) & ~(1 << 4), &clk_power->CLKCON);
|
2006-05-30 14:56:14 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-11-17 09:30:34 +00:00
|
|
|
#endif /* defined(CONFIG_USB_OHCI_NEW) && \
|
|
|
|
defined(CONFIG_SYS_USB_OHCI_CPU_INIT) && \
|
|
|
|
defined(CONFIG_S3C24X0) */
|