Hello Every Body,<br><br>Wish u very happy new Year.<br><br>I am still stucked in usb console in u-boot.<br><br>I implemented usb controller driver inside drivers/usb/ for s3c2440
from open moko site and applied the changes in the u-boot required for
usbdcore_s3c2440.c.And in the udc_init() function i added the gpio
configuration as per usb device in my smdk2440 board.<br><br>But still the interrupt is not being generating yet when i am
connecting the cable from&nbsp; host to target..According to open moko,they
added a small piece of code inside cpu/arm920t/interrupt.c&nbsp; i.e<br><br>void s3c2440_irq(void)<br>
{<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; printf(&quot;\ns3c2440_irq\n&quot;);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; S3C24X0_INTERRUPT * irq = S3C24X0_GetBase_INTERRUPT();<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; u_int32_t intpnd = irq-&gt;INTPND;<br>#ifdef CONFIG_USB_DEVICE<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (intpnd &amp; BIT_USBD) {<br>

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; s3c2440_udc_irq();<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; irq-&gt;SRCPND = BIT_USBD;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; irq-&gt;INTPND = BIT_USBD;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>#endif /* USB_DEVICE */<br>}<br><br>And calling the function inside include/common.h as<br>

<br>#define ARM920_IRQ_CALLBACK&nbsp;&nbsp;&nbsp;&nbsp; s3c2440_irq<br>&nbsp;<br>The &quot;ARM920_IRQ_CALLBACK&quot; macro is being called inside cpu/arm920t/interrupts.c in do_irq() function as<br><br>#if defined (ARM920_IRQ_CALLBACK)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ARM920_IRQ_CALLBACK();<br>

<br>All the above i implemented ,but still i am not able to go next step.<br><br><br>So pls guide me further since m new to this usb<br><br>And one more question,did any body has done this usb console&nbsp; wrt smdk2440?<br><br>
Thanks in advance<br><br>Arjun<br>