From owner-p4-projects@FreeBSD.ORG Sun Jul 12 16:07:25 2009 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id BF1C11065670; Sun, 12 Jul 2009 16:07:24 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7F56A106566B for ; Sun, 12 Jul 2009 16:07:24 +0000 (UTC) (envelope-from syl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5315A8FC23 for ; Sun, 12 Jul 2009 16:07:24 +0000 (UTC) (envelope-from syl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n6CG7Oct017800 for ; Sun, 12 Jul 2009 16:07:24 GMT (envelope-from syl@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n6CG7NDo017798 for perforce@freebsd.org; Sun, 12 Jul 2009 16:07:23 GMT (envelope-from syl@FreeBSD.org) Date: Sun, 12 Jul 2009 16:07:23 GMT Message-Id: <200907121607.n6CG7NDo017798@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to syl@FreeBSD.org using -f From: Sylvestre Gallon To: Perforce Change Reviews Cc: Subject: PERFORCE change 165967 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Jul 2009 16:07:27 -0000 http://perforce.freebsd.org/chv.cgi?CH=165967 Change 165967 by syl@syl_atuin on 2009/07/12 16:06:47 Import a skeleton driver for the usb device contained by the samsung s3c24xx. Thanks to wim vandeputte (hackabe1.org) to sponsoring me with a gta02 freerunner. Add one entry in usbdevs for my USB steeny++ Affected files ... .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/controller/s3c24xxdci.c#1 add .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/controller/s3c24xxdci_gta02.c#1 add .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usbdevs#7 edit .. //depot/projects/soc2009/syl_usb/src/sys/modules/Makefile#7 edit .. //depot/projects/soc2009/syl_usb/src/sys/modules/usb/Makefile#4 edit .. //depot/projects/soc2009/syl_usb/src/sys/modules/usb/s3c24xxdci/Makefile#1 add Differences ... ==== //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usbdevs#7 (text+ko) ==== @@ -607,6 +607,7 @@ vendor SOHOWARE 0x15e8 SOHOware vendor UMAX 0x1606 UMAX Data Systems vendor INSIDEOUT 0x1608 Inside Out Networks +vendor PJRC 0x160c PJRC vendor GOODWAY 0x1631 Good Way Technology vendor ENTREGA 0x1645 Entrega vendor ACTIONTEC 0x1668 Actiontec Electronics @@ -1976,6 +1977,9 @@ /* P.I. Engineering products */ product PIENGINEERING PS2USB 0x020b PS2 to Mac USB Adapter +/* PJRC */ +product PJRC TEENSY++ 0x478 TEENSY++ USB Device + /* Planex Communications products */ product PLANEX GW_US11H 0x14ea GW-US11H WLAN product PLANEX2 GW_US11S 0x3220 GW-US11S WLAN ==== //depot/projects/soc2009/syl_usb/src/sys/modules/Makefile#7 (text+ko) ==== ==== //depot/projects/soc2009/syl_usb/src/sys/modules/usb/Makefile#4 (text+ko) ==== @@ -26,7 +26,7 @@ # SUBDIR = usb -SUBDIR += ehci musb ohci uhci uss820dci ${_at91dci} ${_atmegadci} +SUBDIR += ehci musb ohci uhci uss820dci ${_at91dci} ${_atmegadci} ${_s3c24xxdci} SUBDIR += rum uath upgt ural zyd ${_urtw} SUBDIR += uhid ukbd ums udbp ufm SUBDIR += ucom u3g uark ubsa ubser uchcom ucycom ufoma uftdi ugensa uipaq ulpt \ @@ -42,6 +42,7 @@ .if ${MACHINE_ARCH} == "arm" _at91dci= at91dci _atmegadci= atmegadci +_s3c24xxdci= s3c24xxdci .endif .if ${MACHINE_ARCH} == "i386"