From owner-freebsd-arm@FreeBSD.ORG Sun May 18 18:08:53 2008 Return-Path: Delivered-To: freebsd-arm@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BDF09106564A; Sun, 18 May 2008 18:08:53 +0000 (UTC) (envelope-from michael@fuckner.net) Received: from dedihh.fuckner.net (dedihh.fuckner.net [81.209.183.161]) by mx1.freebsd.org (Postfix) with ESMTP id 6170A8FC27; Sun, 18 May 2008 18:08:52 +0000 (UTC) (envelope-from michael@fuckner.net) Received: from localhost (localhost [127.0.0.1]) by dedihh.fuckner.net (Postfix) with ESMTP id 1713561D71; Sun, 18 May 2008 20:08:51 +0200 (CEST) X-Virus-Scanned: amavisd-new at fuckner.net Received: from dedihh.fuckner.net ([127.0.0.1]) by localhost (dedihh.fuckner.net [127.0.0.1]) (amavisd-new, port 10024) with SMTP id c3Froy4B+Ab1; Sun, 18 May 2008 20:08:46 +0200 (CEST) Received: from x22.rebootking.de (e176144223.adsl.alicedsl.de [85.176.144.223]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by dedihh.fuckner.net (Postfix) with ESMTPSA id B1CF261CE2; Sun, 18 May 2008 20:08:46 +0200 (CEST) Message-ID: <483070A3.2020905@fuckner.net> Date: Sun, 18 May 2008 20:08:35 +0200 From: Michael Fuckner User-Agent: Thunderbird 2.0.0.14 (X11/20080503) MIME-Version: 1.0 To: Sam Leffler References: <482A9E8E.5050407@fuckner.net> <482C6504.1010209@freebsd.org> <482EA2D2.3020205@fuckner.net> <482EE849.7060508@freebsd.org> In-Reply-To: <482EE849.7060508@freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-arm@freebsd.org Subject: Re: Horstbox DVA-G3342SB with FreeBSD X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the StrongARM Processor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 May 2008 18:08:53 -0000 Good evening, >> Does this help? Do I have to put these settings into the hints-file? > > If you look in sys/arm/xscale/ixp425/ixp425_pci.c for the error message > you'll find a fixed mapping table for routing interrupts. Your board > appears to use irq's that are not in the table. If we assume you've > located the PCI bus properly then you might try adding entries for your > devices and see if they are probed correctly. Output from the booted Linux- can you tell me what to enter into PHYSADDR, KERNPHYSADDR and KERNVIRTADDR? /proc # cat /proc/iomem 00000000-03ffffff : System RAM 0001a000-001ab18f : Kernel text 001ac000-001d9f6b : Kernel data 48000000-4bffffff : PCI Memory Space 48000000-48000fff : 0000:00:0e.0 48001000-48001fff : 0000:00:0e.1 48002000-480020ff : 0000:00:0c.0 48002100-480021ff : 0000:00:0d.0 48002200-480022ff : 0000:00:0e.2 48002200-480022ff : ehci_hcd 50000000-51ffffff : IXP4XX-Flash.0 50000000-51ffffff : IXP4XXFlash c8000000-c800001f : serial c8001000-c8001fff : serial8250.0 /proc # cat /proc/ioports 00000000-0000ffff : PCI I/O Space 00001000-00001007 : 0000:00:0c.0 00001008-0000100f : 0000:00:0d.0 /proc # /proc # cat /proc/pci PCI devices found: Bus 0, device 12, function 0: Class 0280: PCI device 1397:2bd0 (rev 2). IRQ 24. Master Capable. Latency=16. Max Lat=16. I/O at 0x1000 [0x1007]. Non-prefetchable 32 bit memory at 0x48002000 [0x480020ff]. Bus 0, device 13, function 0: Class 0280: PCI device 1397:2bd0 (rev 2). IRQ 24. Master Capable. Latency=16. Max Lat=16. I/O at 0x1008 [0x100f]. Non-prefetchable 32 bit memory at 0x48002100 [0x480021ff]. Bus 0, device 14, function 0: Class 0c03: PCI device 1033:0035 (rev 67). IRQ 23. Master Capable. Latency=8. Non-prefetchable 32 bit memory at 0x48000000 [0x48000fff]. Bus 0, device 14, function 1: Class 0c03: PCI device 1033:0035 (rev 67). IRQ 23. Master Capable. Latency=8. Non-prefetchable 32 bit memory at 0x48001000 [0x48001fff]. Bus 0, device 14, function 2: Class 0c03: PCI device 1033:00e0 (rev 4). IRQ 23. Master Capable. Latency=68. Non-prefetchable 32 bit memory at 0x48002200 [0x480022ff]. I think I filled in the information into the file, but it doesn't seem to work. My very dirty hack in function ixp425_md_route_interrupt ixdp425_pci.c looks likt this: if (dev == 14) return 23; In HORST.hints file: hint.ohci.0.at="pci0" hint.ohci.0.irq=23 hint.ohci.0.addr="0x48000000" hint.ohci.1.at="pci0" hint.ohci.1.irq=23 hint.ohci.1.addr="0x48001000" hint.ehci.0.at="pci0" hint.ehci.0.irq=23 hint.ehci.0.addr="0x48002200" Result in dmesg: pci0: at device 12.0 (no driver attached) pci0: at device 13.0 (no driver attached) ohci0: irq 23 at device 14.0 on pci0 ohci0: Could not allocate irq pcib0: ohci0 called release_resource device_attach: ohci0 attach returned 6 ohci1: irq 23 at device 14.1 on pci0 ohci1: Could not allocate irq pcib0: ohci1 called release_resource device_attach: ohci1 attach returned 6 ehci0: mem 0x48002200-0x480022ff irq 23 at device 14.2 on pci0 pcib0: ehci0 called activate_resource ehci0: Could not map memory device_attach: ehci0 attach returned 6 >> npe0: on ixp0 >> npe0: [ITHREAD] >> npe0: remember to fix rx q setup >> npe0: Cannot find my PHY. >> device_attach: npe0 attach returned 6 >> npe1: on ixp0 >> npe1: [ITHREAD] >> npe1: remember to fix rx q setup >> miibus0: on npe1 >> rlphy0: PHY 1 on miibus0 >> rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto >> npe1: Ethernet address: 00:03:47:df:32:aa >> led_avila0: on ixp0 >> ixpclk0: [FILTER] >> Timecounter "IXP425 Timer" frequency 66666600 Hz quality 1000 >> Timecounters tick every 10.000 msec >> bootpc_init: wired to interface 'npe1' >> Sending DHCP Discover packet from interface npe1 (00:03:47:df:32:aa) >> npe1: link state changed to UP >> DHCP/BOOTP timeout for server 255.255.255.255 >> DHCP/BOOTP timeout for server 255.255.255.255 >> DHCP/BOOTP timeout for server 255.255.255.255 >> DHCP/BOOTP timeout for server 255.255.255.255 >> DHCP/BOOTP timeout for server 255.255.255.255 >> DHCP/BOOTP timeout for server 255.255.255.255 >> >> >> Now it looks better, it recognizes the NPE-C-network-card, but it >> doesn't seem to be usable. And I lost my USB-Chip on the way. SO no >> ethernet via npe nor my axe-based USB-Stick :( > > Have you sniffed to see if the BOOTP packets are being sent out properly > on npe1? > Nope, nothing can be seen. While loading kernel via TFTP I can see traffic with the :32:a8-MAC. > When you're all done you should have a config file + hints that gives > you a working board. If you send it we can add it to the tree. Could be a long way, since I am quite new to this. Regards, Michael From owner-freebsd-arm@FreeBSD.ORG Thu May 22 07:23:19 2008 Return-Path: Delivered-To: arm@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BCD95106566C; Thu, 22 May 2008 07:23:19 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost2.sentex.ca (smarthost2.sentex.ca [205.211.164.50]) by mx1.freebsd.org (Postfix) with ESMTP id 6E0608FC0C; Thu, 22 May 2008 07:23:19 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp1.sentex.ca (smtp1.sentex.ca [199.212.134.4]) by smarthost2.sentex.ca (8.14.2/8.14.2) with ESMTP id m4M7NIH9072726; Thu, 22 May 2008 03:23:18 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp1.sentex.ca (8.14.2/8.14.2) with ESMTP id m4M7NIEt080238; Thu, 22 May 2008 03:23:18 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 3B67473039; Thu, 22 May 2008 03:23:18 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20080522072318.3B67473039@freebsd-current.sentex.ca> Date: Thu, 22 May 2008 03:23:18 -0400 (EDT) X-Virus-Scanned: ClamAV 0.93/7040/Mon May 5 21:52:15 2008 clamav-milter version 0.93 on clamscanner2 X-Virus-Status: Clean Cc: Subject: [head tinderbox] failure on arm/arm X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the StrongARM Processor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 May 2008 07:23:19 -0000 TB --- 2008-05-22 07:00:00 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2008-05-22 07:00:00 - starting HEAD tinderbox run for arm/arm TB --- 2008-05-22 07:00:00 - cleaning the object tree TB --- 2008-05-22 07:00:30 - cvsupping the source tree TB --- 2008-05-22 07:00:30 - /usr/bin/csup -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/arm/arm/supfile TB --- 2008-05-22 07:00:37 - building world (CFLAGS=-O -pipe) TB --- 2008-05-22 07:00:37 - cd /src TB --- 2008-05-22 07:00:37 - /usr/bin/make -B buildworld >>> World build started on Thu May 22 07:00:40 UTC 2008 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries [...] ===> cddl/lib/libuutil (obj) ===> cddl/lib/libzfs (obj) ===> cddl/lib/libzpool (obj) ===> cddl/lib/drti (depend) rm -f .depend mkdep -f .depend -a -I/src/cddl/lib/drti/../../../sys/cddl/compat/opensolaris -I/src/cddl/lib/drti/../../../cddl/compat/opensolaris/include -I/src/cddl/lib/drti/../../../cddl/contrib/opensolaris/head -I/src/cddl/lib/drti/../../../cddl/contrib/opensolaris/lib/libctf/common -I/src/cddl/lib/drti/../../../cddl/contrib/opensolaris/lib/libdtrace/common -I/src/cddl/lib/drti/../../../sys/cddl/contrib/opensolaris/uts/common /src/cddl/lib/drti/../../../cddl/contrib/opensolaris/lib/libdtrace/common/drti.c /src/cddl/lib/drti/../../../cddl/contrib/opensolaris/lib/libdtrace/common/drti.c:33:24: error: sys/dtrace.h: No such file or directory mkdep: compile failed *** Error code 1 Stop in /src/cddl/lib/drti. *** Error code 1 Stop in /src/cddl/lib. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2008-05-22 07:23:18 - WARNING: /usr/bin/make returned exit code 1 TB --- 2008-05-22 07:23:18 - ERROR: failed to build world TB --- 2008-05-22 07:23:18 - tinderbox aborted TB --- 979.77 user 138.55 system 1397.27 real http://tinderbox.des.no/tinderbox-head-HEAD-arm-arm.full From owner-freebsd-arm@FreeBSD.ORG Thu May 22 08:56:58 2008 Return-Path: Delivered-To: arm@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D3280106567B; Thu, 22 May 2008 08:56:58 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost2.sentex.ca (smarthost2.sentex.ca [205.211.164.50]) by mx1.freebsd.org (Postfix) with ESMTP id 9AA968FC40; Thu, 22 May 2008 08:56:58 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp1.sentex.ca (smtp1.sentex.ca [199.212.134.4]) by smarthost2.sentex.ca (8.14.2/8.14.2) with ESMTP id m4M8uw2I077221; Thu, 22 May 2008 04:56:58 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp1.sentex.ca (8.14.2/8.14.2) with ESMTP id m4M8uw9i055600; Thu, 22 May 2008 04:56:58 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id E29D873039; Thu, 22 May 2008 04:56:57 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20080522085657.E29D873039@freebsd-current.sentex.ca> Date: Thu, 22 May 2008 04:56:57 -0400 (EDT) X-Virus-Scanned: ClamAV 0.93/7040/Mon May 5 21:52:15 2008 clamav-milter version 0.93 on clamscanner3 X-Virus-Status: Clean Cc: Subject: [head tinderbox] failure on arm/arm X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the StrongARM Processor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 May 2008 08:56:59 -0000 TB --- 2008-05-22 08:35:00 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2008-05-22 08:35:00 - starting HEAD tinderbox run for arm/arm TB --- 2008-05-22 08:35:00 - cleaning the object tree TB --- 2008-05-22 08:35:20 - cvsupping the source tree TB --- 2008-05-22 08:35:20 - /usr/bin/csup -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/arm/arm/supfile TB --- 2008-05-22 08:35:27 - building world (CFLAGS=-O -pipe) TB --- 2008-05-22 08:35:27 - cd /src TB --- 2008-05-22 08:35:27 - /usr/bin/make -B buildworld >>> World build started on Thu May 22 08:35:29 UTC 2008 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries [...] ===> cddl/lib/libzpool (obj) ===> cddl/lib/drti (depend) rm -f .depend mkdep -f .depend -a -I/src/cddl/lib/drti/../../../sys/cddl/compat/opensolaris -I/src/cddl/lib/drti/../../../cddl/compat/opensolaris/include -I/src/cddl/lib/drti/../../../cddl/contrib/opensolaris/head -I/src/cddl/lib/drti/../../../cddl/contrib/opensolaris/lib/libctf/common -I/src/cddl/lib/drti/../../../cddl/contrib/opensolaris/lib/libdtrace/common -I/src/cddl/lib/drti/../../../sys/cddl/contrib/opensolaris/uts/common /src/cddl/lib/drti/../../../cddl/contrib/opensolaris/lib/libdtrace/common/drti.c In file included from /src/cddl/lib/drti/../../../sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h:62, from /src/cddl/lib/drti/../../../cddl/contrib/opensolaris/lib/libdtrace/common/drti.c:33: /src/cddl/lib/drti/../../../sys/cddl/compat/opensolaris/sys/cyclic.h:37:29: error: sys/cyclic.h: No such file or directory mkdep: compile failed *** Error code 1 Stop in /src/cddl/lib/drti. *** Error code 1 Stop in /src/cddl/lib. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2008-05-22 08:56:57 - WARNING: /usr/bin/make returned exit code 1 TB --- 2008-05-22 08:56:57 - ERROR: failed to build world TB --- 2008-05-22 08:56:57 - tinderbox aborted TB --- 974.52 user 137.91 system 1316.98 real http://tinderbox.des.no/tinderbox-head-HEAD-arm-arm.full From owner-freebsd-arm@FreeBSD.ORG Sat May 24 12:53:22 2008 Return-Path: Delivered-To: freebsd-arm@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 95BB71065680 for ; Sat, 24 May 2008 12:53:22 +0000 (UTC) (envelope-from hecyro_71@yahoo.it) Received: from aa011msr.fastwebnet.it (aa011msr.fastwebnet.it [85.18.95.71]) by mx1.freebsd.org (Postfix) with ESMTP id 343038FC29 for ; Sat, 24 May 2008 12:53:22 +0000 (UTC) (envelope-from hecyro_71@yahoo.it) Received: from [28.241.179.29] (28.241.179.29) by aa011msr.fastwebnet.it (8.0.013.5) id 483216FE00A07013 for freebsd-arm@FreeBSD.org; Sat, 24 May 2008 14:42:06 +0200 Message-ID: From: "Simon from Italy" To: Date: Sat, 24 May 2008 14:42:02 +0200 X-Priority: 1 X-Mailer: Oxilog e-mailing 2 MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: quoted-printable X-Antivirus: avast! (VPS 080523-0, 23/05/2008), Outbound message X-Antivirus-Status: Clean Cc: Subject: Do you want to jump on my motorbyke? X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: hecyro_71@yahoo.it List-Id: Porting FreeBSD to the StrongARM Processor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 May 2008 12:53:22 -0000 Hello, i=92m italian boy=2E I have 36 years and I love to travel in motorbyke in Europe, beach or = mountain and camping, in my vacations=2E The past summers I have been on the beaches of Spain, France, Croatia, = Holland, but also Hungary, Switzerland, Austria, Belgium, Germany, = Slovenia, Poland, Republik Czech, Repubblik Slovanska, Lithuania, = Latvia...=20 I search a girl that she loves to travel in motorbyke and that she wants = to make from travel=92s partner in order to organize the next vacations.=20 Usually I make of the trance of vacations from 10 - 15 days and succeed = not to spend very.=20 My period for vacations is: 25/5 - 2/6 or 6/6 - 16/6 or 21/6 - 30/6 or 1/8 - 24/8 I=92m single and I search girl in order to amuse themselves and to = discover new worlds, new cultures, new people...=20 Do you want to jump on my motorbyke? Simon hecyro_71@yahoo.it ___________________________________________________________________________= ________________________________________________ Ciao, sono un ragazzo italiano=2E Ho 36 anni e amo trascorrere le vacanze girando in moto per l'Europa, = spiagge o montagna e campeggi=2E Le scorse estati sono stato sulle spiagge di Spagna, Francia, Croazia, = Olanda, Lituania, ma anche in Ungheria, Svizzera, Austria, Belgio, = Germania, Slovenia, Repubblica Ceca, Repubblica Slovacca, Polonia, = Lussemburgo, Lituania, Lettonia..=2E Cerco una ragazza, a cui piaccia la moto e che voglia fare da compagna di = viaggio per organizzare le prossime vacanze=2E Io ho le ferie in questi periodi: 25/5 - 2/6 o 6/6 - 16/6 o 21/6 - 30/6 o 1/8 - 24/8 Solitamente riesco a non spendere molto=2E Sono single e sto solo cercando una COMPAGNA DI VIAGGIO per divertirsi e = scoprire nuovi mondi, nuove culture, gente nuova..=2E Salti in sella? Simone hecyro_71@yahoo.it Message envoy=E9 par la version d'essai d'Oxilog e-mailing=2E Attention : La soci=E9t=E9 Oxilog n'est pas =E0 l'origine de l'envoi de ce message et = n'est pas responsable de son contenu=2E Pour toute demande ou r=E9clamation, veuillez contacter l'exp=E9diteur de = ce message.