From 781e3e3b1ec225df379915f745fc18ca52b73fbd Mon Sep 17 00:00:00 2001 From: Marcin Bukat Date: Tue, 6 Sep 2011 12:38:08 +0000 Subject: rk27xx - implement driver for usb controller in rk27xx. This does not quite work now because of the way how controller and our usb stack are implemented. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30441 a1c6a512-1295-4272-9138-f99709370657 --- firmware/target/arm/rk27xx/usb-rk27xx.c | 59 +++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 firmware/target/arm/rk27xx/usb-rk27xx.c (limited to 'firmware/target/arm/rk27xx/usb-rk27xx.c') diff --git a/firmware/target/arm/rk27xx/usb-rk27xx.c b/firmware/target/arm/rk27xx/usb-rk27xx.c new file mode 100644 index 0000000000..2eb6bed480 --- /dev/null +++ b/firmware/target/arm/rk27xx/usb-rk27xx.c @@ -0,0 +1,59 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id$ + * + * Copyright (C) 2011 by Marcin Bukat + * + * 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 software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ****************************************************************************/ + +#include "config.h" +#include "cpu.h" +#include "string.h" +#include "usb.h" +#include "usb_drv.h" +#include "usb_core.h" +#include "usb-target.h" +#include "system.h" +#include "system-target.h" + +int usb_status = USB_EXTRACTED; + +void usb_drv_usb_detect_event() +{ + usb_status_event(USB_INSERTED); +} + +void usb_init_device(void) +{ +} + +void usb_attach(void) +{ + usb_enable(true); +} + +bool usb_plugged(void) +{ + return true; +} + +void usb_enable(bool on) +{ + if(on) + usb_core_init(); + else + usb_core_exit(); +} -- cgit v1.2.3