From owner-freebsd-arm@FreeBSD.ORG Sun Jun 14 17:45:43 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BCC717C1 for ; Sun, 14 Jun 2015 17:45:43 +0000 (UTC) (envelope-from mihai.carabas@gmail.com) Received: from mail-wi0-x235.google.com (mail-wi0-x235.google.com [IPv6:2a00:1450:400c:c05::235]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49AC98D0 for ; Sun, 14 Jun 2015 17:45:43 +0000 (UTC) (envelope-from mihai.carabas@gmail.com) Received: by wibdq8 with SMTP id dq8so56844546wib.1 for ; Sun, 14 Jun 2015 10:45:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=BvZOXu3Pdbdfpi9G/fgKRDkdqXjMXwm/x5jk4xQ0vRg=; b=hgw9qVtlxdb6TIBVu9GqAmEcAA8QXLaB9ly+Kfstnfp/3LxaC1McHQaPj0iSZ0FOqR TR4Wx4qFZ/Wqq2vmK9vedjqAQNOkA8lwST+iek/LylIk+QZajyy/Gv39dC0uajmSY+CG 9GeT5IcdWxvBlISg88g+ct+6INdkIGwuCrGm0V320ZJsFQUijBxD06erJyWYJjcFhZZW 0TSJHniuqFOYSOi8YZjWHy1kQhCY8Jw1p4RcA6R10tCTtfXuDimAC/geCyEbunxuaCMu MGCp4J+0ewsn7vwBSMVDvwp9o0YJuDTHmYKN8Ko09OerE9sRNzu7gAbsRvoOERYPbmtG kxLQ== MIME-Version: 1.0 X-Received: by 10.180.75.8 with SMTP id y8mr24574756wiv.31.1434303941755; Sun, 14 Jun 2015 10:45:41 -0700 (PDT) Received: by 10.28.21.134 with HTTP; Sun, 14 Jun 2015 10:45:41 -0700 (PDT) In-Reply-To: References: Date: Sun, 14 Jun 2015 20:45:41 +0300 Message-ID: Subject: Re: porting freebsd-arm on FastModels - CortexA15 From: Mihai Carabas To: freebsd-arm@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Jun 2015 17:45:43 -0000 Hello, On Sat, Jun 13, 2015 at 4:59 PM, Mihai Carabas wrote: > Hello, > > My name is Mihai Carabas and I am a GSoC student this year on porting > bhyve over ARM. Right now I'm working on booting FreeBSD ARM on an > CortexA15 emulated platform running with FastModels. > > I have two problems until now: > > a) I used the DTS from sys/gnu/dts/arm/vexpress-v2p-ca15-tc1.dts and I > build the FDT directly in the kernel. I have a problem with the address > calculated for the serial0 console. > > The DTB parser selects the first range from the bus: > 228 >------->-------ranges = <0 0 0 0x08000000 0x04000000>, > 229 >------->------->------- <1 0 0 0x14000000 0x04000000>, > 230 >------->------->------- <2 0 0 0x18000000 0x04000000>, > 231 >------->------->------- <3 0 0 0x1c000000 0x04000000>, > 232 >------->------->------- <4 0 0 0x0c000000 0x04000000>, > 233 >------->------->------- <5 0 0 0x10000000 0x04000000>; > > The valid range for this platform is the entry starting with 3 (the > console is mapped at address 0x1c090000). But the parser ellects the first > range. > > The console is declared like this (as a child to iofpga root node): > 68 >------->-------iofpga@3,00000000 { > 69 >------->------->-------compatible = "arm,amba-bus", "simple-bus"; > 70 >------->------->-------#address-cells = <1>; > 71 >------->------->-------#size-cells = <1>; > 72 >------->------->-------ranges = <0 3 0 0x200000>; > ........ > 156 >------->------->-------v2m_serial0: uart@090000 { > 157 >------->------->------->-------compatible = "arm,pl011", > "arm,primecell"; > 158 >------->------->------->-------reg = <0x090000 0x1000>; > 159 >------->------->------->-------interrupts = <5>; > 160 >------->------->------->-------clocks = <&v2m_oscclk2>, <&smbclk>; > 161 >------->------->------->-------clock-names = "uartclk", "apb_pclk"; > 162 >------->------->-------}; > > As you can see the iofgpa selects the chip number 3, which is ok, but the > final address computed by the FreeBSD parser isn't. Any thoughts on this? > I've found the issue with DTS parsing (a bug in the FDT parsing I guess). The ranges value contains the address of the child node (the first value: 0 in this case), the address of the parent (3 0 - the parent address-cells is 2) and the size of the range for the child node (0x200000). The problem appears at the parent, because it has two values. If we analyze the "fdt_get_range" from sys/dev/fdt/fdt_common.c we will see the following line: par_bus_addr = fdt_data_get((void *)rangesptr, par_addr_cells); All seems ok (par_addr_cells is 2), but par_bus_addr is of type u_long, which means unsigned long and a length of 32bits and can't accomodate the two values in the parent address space. 415 u_long 416 fdt_data_get(void *data, int cells) 417 { 418 419 >-------if (cells == 1) 420 >------->-------return (fdt32_to_cpu(*((uint32_t *)data))); 421 422 >-------return (fdt64_to_cpu(*((uint64_t *)data))); If we look at fdt64_to_cpu: 29 static inline uint64_t fdt64_to_cpu(uint64_t x) 30 { 31 >-------return (EXTRACT_BYTE(0) << 56) | (EXTRACT_BYTE(1) << 48) | (EXTRACT_BYTE(2) << 40) | (EXTRACT_BYTE(3) << 32) 32 >------->-------| (EXTRACT_BYTE(4) << 24) | (EXTRACT_BYTE(5) << 16) | (EXTRACT_BYTE(6) << 8) | EXTRACT_BYTE(7); 33 } It returns a 64bit variable which doesn't fit in the u_long par_bus_addr and the compiler selects only the least significant bits, meaning "0". The "3" is left out and this is why the parsing code doesn't select the third chip from the bus. What would be the best resolution for this? Replacing all the u_longs with uint64_t in the fdt_common? Thank you, Mihai From owner-freebsd-arm@FreeBSD.ORG Sun Jun 14 18:39:49 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7ED286E2 for ; Sun, 14 Jun 2015 18:39:49 +0000 (UTC) (envelope-from tim@kientzle.com) Received: from monday.kientzle.com (kientzle.com [142.254.26.11]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6004961E for ; Sun, 14 Jun 2015 18:39:48 +0000 (UTC) (envelope-from tim@kientzle.com) Received: (from root@localhost) by monday.kientzle.com (8.14.4/8.14.4) id t5EIKrrY064458 for freebsd-arm@freebsd.org; Sun, 14 Jun 2015 18:20:53 GMT (envelope-from tim@kientzle.com) Received: from [192.168.2.100] (192.168.1.101 [192.168.1.101]) by kientzle.com with SMTP id uuhhf3rmv2uddxzpuagyidfhvs; for freebsd-arm@freebsd.org; Sun, 14 Jun 2015 18:20:53 +0000 (UTC) (envelope-from tim@kientzle.com) From: Tim Kientzle Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Subject: Broken U-Boot packages? Message-Id: Date: Sun, 14 Jun 2015 11:20:49 -0700 To: freebsd-arm Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2098\)) X-Mailer: Apple Mail (2.2098) X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Jun 2015 18:39:49 -0000 Has anyone else had success building images with the U-Boot *packages*? I=E2=80=99m updating Crochet to use U-Boot from ports/packages for RPI = and Beaglebone, but I get non-bootable images (generally with U-boot = failing to identify the disk partitioning) when I use the package. = Here=E2=80=99s what I=E2=80=99ve tried so far: * RPi built with U-Boot from package - non-bootable * RPi built with U-Boot port compiled locally - works * Beaglebone Black with U-Boot from package - non-bootable Today I hope to try booting an old white Beaglebone and building the = u-boot-beaglebone port locally to see if that follows the pattern. For the record, my ports tree is up-to-date and I=E2=80=99m installing = the packages onto a recent FreeBSD-CURRENT amd64 VM via: $ pkg install sysutils/u-boot-rpi Cheers, Tim From owner-freebsd-arm@FreeBSD.ORG Sun Jun 14 20:04:56 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 770CE65C for ; Sun, 14 Jun 2015 20:04:56 +0000 (UTC) (envelope-from mihai.carabas@gmail.com) Received: from mail-wg0-x22b.google.com (mail-wg0-x22b.google.com [IPv6:2a00:1450:400c:c00::22b]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 036A2C64 for ; Sun, 14 Jun 2015 20:04:56 +0000 (UTC) (envelope-from mihai.carabas@gmail.com) Received: by wgez8 with SMTP id z8so54611981wge.0 for ; Sun, 14 Jun 2015 13:04:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=O+b07TCw8OOUobHeBYhsYzytUKMCBV0gzZw2uX7HhhQ=; b=W54ppu8AgBw2KyQitB7GLG11G6czMu7Z6343gZYCb10IgYWg7WvtsbHs43REYhZ8ms IeJa49IEnk1LGhWBEIddJcDzdVvoncf4EQpUMcYBPAzOS9Y81SQ3qGQzYr+n9ZZeHRN4 cf7pWbKAuyPVvoNbe42J7xI1ZBhD88Kgogn2YQQg5rcUc405PbR2p8e/GwB5W+ctsuDt Vb78d/YIgvN9fdch0g7bjPmbkzOSpDNZP4HUdU9atB+FbAEm2pzlCal8S62IyNIjLURF PFxW0194dhCcbY2aDcLCHePv9zggynmW/xhIdYL1mlM9QC2IUikPkW4WSRuHnGaJr2aG xLBw== MIME-Version: 1.0 X-Received: by 10.180.91.40 with SMTP id cb8mr25076830wib.64.1434312294577; Sun, 14 Jun 2015 13:04:54 -0700 (PDT) Received: by 10.28.21.134 with HTTP; Sun, 14 Jun 2015 13:04:54 -0700 (PDT) In-Reply-To: References: Date: Sun, 14 Jun 2015 23:04:54 +0300 Message-ID: Subject: Re: porting freebsd-arm on FastModels - CortexA15 From: Mihai Carabas To: freebsd-arm@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Jun 2015 20:04:56 -0000 On Sun, Jun 14, 2015 at 8:45 PM, Mihai Carabas wrote: > Hello, > > On Sat, Jun 13, 2015 at 4:59 PM, Mihai Carabas > wrote: > >> Hello, >> >> My name is Mihai Carabas and I am a GSoC student this year on porting >> bhyve over ARM. Right now I'm working on booting FreeBSD ARM on an >> CortexA15 emulated platform running with FastModels. >> >> I have two problems until now: >> >> a) I used the DTS from sys/gnu/dts/arm/vexpress-v2p-ca15-tc1.dts and I >> build the FDT directly in the kernel. I have a problem with the address >> calculated for the serial0 console. >> >> The DTB parser selects the first range from the bus: >> 228 >------->-------ranges = <0 0 0 0x08000000 0x04000000>, >> 229 >------->------->------- <1 0 0 0x14000000 0x04000000>, >> 230 >------->------->------- <2 0 0 0x18000000 0x04000000>, >> 231 >------->------->------- <3 0 0 0x1c000000 0x04000000>, >> 232 >------->------->------- <4 0 0 0x0c000000 0x04000000>, >> 233 >------->------->------- <5 0 0 0x10000000 0x04000000>; >> >> The valid range for this platform is the entry starting with 3 (the >> console is mapped at address 0x1c090000). But the parser ellects the first >> range. >> >> The console is declared like this (as a child to iofpga root node): >> 68 >------->-------iofpga@3,00000000 { >> 69 >------->------->-------compatible = "arm,amba-bus", "simple-bus"; >> 70 >------->------->-------#address-cells = <1>; >> 71 >------->------->-------#size-cells = <1>; >> 72 >------->------->-------ranges = <0 3 0 0x200000>; >> ........ >> 156 >------->------->-------v2m_serial0: uart@090000 { >> 157 >------->------->------->-------compatible = "arm,pl011", >> "arm,primecell"; >> 158 >------->------->------->-------reg = <0x090000 0x1000>; >> 159 >------->------->------->-------interrupts = <5>; >> 160 >------->------->------->-------clocks = <&v2m_oscclk2>, <&smbclk>; >> 161 >------->------->------->-------clock-names = "uartclk", "apb_pclk"; >> 162 >------->------->-------}; >> >> As you can see the iofgpa selects the chip number 3, which is ok, but the >> final address computed by the FreeBSD parser isn't. Any thoughts on this? >> > > I've found the issue with DTS parsing (a bug in the FDT parsing I guess). > The ranges value contains the address of the child node (the first value: 0 > in this case), the address of the parent (3 0 - the parent address-cells is > 2) and the size of the range for the child node (0x200000). > > The problem appears at the parent, because it has two values. If we > analyze the "fdt_get_range" from sys/dev/fdt/fdt_common.c we will see the > following line: > par_bus_addr = fdt_data_get((void *)rangesptr, par_addr_cells); > > All seems ok (par_addr_cells is 2), but par_bus_addr is of type u_long, > which means unsigned long and a length of 32bits and can't accomodate the > two values in the parent address space. > > 415 u_long > 416 fdt_data_get(void *data, int cells) > 417 { > 418 > 419 >-------if (cells == 1) > 420 >------->-------return (fdt32_to_cpu(*((uint32_t *)data))); > 421 > 422 >-------return (fdt64_to_cpu(*((uint64_t *)data))); > > If we look at fdt64_to_cpu: > 29 static inline uint64_t fdt64_to_cpu(uint64_t x) > 30 { > 31 >-------return (EXTRACT_BYTE(0) << 56) | (EXTRACT_BYTE(1) << 48) | > (EXTRACT_BYTE(2) << 40) | (EXTRACT_BYTE(3) << 32) > 32 >------->-------| (EXTRACT_BYTE(4) << 24) | (EXTRACT_BYTE(5) << 16) | > (EXTRACT_BYTE(6) << 8) | EXTRACT_BYTE(7); > 33 } > > It returns a 64bit variable which doesn't fit in the u_long par_bus_addr > and the compiler selects only the least significant bits, meaning "0". The > "3" is left out and this is why the parsing code doesn't select the third > chip from the bus. > > What would be the best resolution for this? Replacing all the u_longs with > uint64_t in the fdt_common? > > I found another issue in regions_to_avail function: end variable is vm_paddr_t which is typedef at uint32_t. The problem is when having start at 0x80000000 and the size of the memory 0x80000000 (2G) than the end variable which is start + size becomes 0 (overflow). Can we shrink down end by 1? this seems to solve the problem. From owner-freebsd-arm@FreeBSD.ORG Sun Jun 14 20:42:46 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 96BCA101 for ; Sun, 14 Jun 2015 20:42:46 +0000 (UTC) (envelope-from e.moe@rcn.com) Received: from smtp.rcn.com (smtp.rcn.com [69.168.97.78]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6137874B for ; Sun, 14 Jun 2015 20:42:45 +0000 (UTC) (envelope-from e.moe@rcn.com) X_CMAE_Category: , , X-CNFS-Analysis: v=2.0 cv=AsRsLZBP c=1 sm=1 a=kLIaxcRmAfIWWG5Fo3VFTQ==:17 a=IkcTkHD0fZMA:10 a=OA2lqS22AAAA:8 a=gWCTb-xSAAAA:8 a=6I5d2MoRAAAA:8 a=r5PBvv9Wj6aCbbEDIc8A:9 a=QEXdDO2ut3YA:10 a=kLIaxcRmAfIWWG5Fo3VFTQ==:117 X-CM-Score: 0 X-Scanned-by: Cloudmark Authority Engine X-Authed-Username: ZS5tb2VAcmNuLmNvbQ== Authentication-Results: smtp02.rcn.cmh.synacor.com smtp.mail=e.moe@rcn.com; spf=neutral; sender-id=neutral Authentication-Results: smtp02.rcn.cmh.synacor.com header.from=e.moe@rcn.com; sender-id=neutral Authentication-Results: smtp02.rcn.cmh.synacor.com smtp.user=e.moe; auth=pass (PLAIN) Received-SPF: neutral (smtp02.rcn.cmh.synacor.com: 24.148.20.83 is neither permitted nor denied by domain of rcn.com) Received: from [24.148.20.83] ([24.148.20.83:30277] helo=[192.168.1.175]) by smtp.rcn.com (envelope-from ) (ecelerity 3.6.2.43620 r(Platform:3.6.2.0)) with ESMTPSA (cipher=AES256-SHA) id 98/CB-22925-447ED755; Sun, 14 Jun 2015 16:42:44 -0400 Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2098\)) Subject: Re: Broken U-Boot packages? From: Erik Moe In-Reply-To: Date: Sun, 14 Jun 2015 15:42:43 -0500 Cc: freebsd-arm Content-Transfer-Encoding: quoted-printable Message-Id: References: To: Tim Kientzle X-Mailer: Apple Mail (2.2098) X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Jun 2015 20:42:46 -0000 I'm booting off a Beaglebone Black SD image that I built two days ago = using a slightly modified version of crochet that uses the u-boot from = package. This is what my boot image looks like: root@beaglebone:~ # ls /boot/msdos/ bbone.dtb bboneblk.dtb mlo ubldr bbone.dts bboneblk.dts u-boot.img uenv.txt Erik > On Jun 14, 2015, at 1:20 PM, Tim Kientzle wrote: >=20 > Has anyone else had success building images with the U-Boot = *packages*? >=20 > I=E2=80=99m updating Crochet to use U-Boot from ports/packages for RPI = and Beaglebone, but I get non-bootable images (generally with U-boot = failing to identify the disk partitioning) when I use the package. = Here=E2=80=99s what I=E2=80=99ve tried so far: >=20 > * RPi built with U-Boot from package - non-bootable > * RPi built with U-Boot port compiled locally - works > * Beaglebone Black with U-Boot from package - non-bootable >=20 > Today I hope to try booting an old white Beaglebone and building the = u-boot-beaglebone port locally to see if that follows the pattern. >=20 > For the record, my ports tree is up-to-date and I=E2=80=99m installing = the packages onto a recent FreeBSD-CURRENT amd64 VM via: >=20 > $ pkg install sysutils/u-boot-rpi >=20 > Cheers, >=20 > Tim >=20 > _______________________________________________ > freebsd-arm@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-arm > To unsubscribe, send any mail to "freebsd-arm-unsubscribe@freebsd.org" From owner-freebsd-arm@FreeBSD.ORG Sun Jun 14 21:09:57 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AB4A6C98 for ; Sun, 14 Jun 2015 21:09:57 +0000 (UTC) (envelope-from tim@kientzle.com) Received: from monday.kientzle.com (kientzle.com [142.254.26.11]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 85DD1C78 for ; Sun, 14 Jun 2015 21:09:57 +0000 (UTC) (envelope-from tim@kientzle.com) Received: (from root@localhost) by monday.kientzle.com (8.14.4/8.14.4) id t5EL9xQI064999; Sun, 14 Jun 2015 21:09:59 GMT (envelope-from tim@kientzle.com) Received: from [192.168.2.100] (192.168.1.101 [192.168.1.101]) by kientzle.com with SMTP id dhkb9netz3mgzg92jmehi4s9zi; Sun, 14 Jun 2015 21:09:59 +0000 (UTC) (envelope-from tim@kientzle.com) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2098\)) Subject: Re: Broken U-Boot packages? From: Tim Kientzle In-Reply-To: Date: Sun, 14 Jun 2015 14:09:54 -0700 Cc: freebsd-arm Content-Transfer-Encoding: quoted-printable Message-Id: <89E506F5-7F26-4409-84E1-68304564D011@kientzle.com> References: To: Erik Moe X-Mailer: Apple Mail (2.2098) X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Jun 2015 21:09:57 -0000 > On Jun 14, 2015, at 1:42 PM, Erik Moe wrote: >=20 > I'm booting off a Beaglebone Black SD image that I built two days ago = using a slightly modified version of crochet that uses the u-boot from = package. This is what my boot image looks like: >=20 > root@beaglebone:~ # ls /boot/msdos/ > bbone.dtb bboneblk.dtb mlo ubldr > bbone.dts bboneblk.dts u-boot.img uenv.txt Thanks. That gives me another data point to play with. Tim P.S. Care to share your patches? >=20 > Erik >=20 >=20 >> On Jun 14, 2015, at 1:20 PM, Tim Kientzle wrote: >>=20 >> Has anyone else had success building images with the U-Boot = *packages*? >>=20 >> I=E2=80=99m updating Crochet to use U-Boot from ports/packages for = RPI and Beaglebone, but I get non-bootable images (generally with U-boot = failing to identify the disk partitioning) when I use the package. = Here=E2=80=99s what I=E2=80=99ve tried so far: >>=20 >> * RPi built with U-Boot from package - non-bootable >> * RPi built with U-Boot port compiled locally - works >> * Beaglebone Black with U-Boot from package - non-bootable >>=20 >> Today I hope to try booting an old white Beaglebone and building the = u-boot-beaglebone port locally to see if that follows the pattern. >>=20 >> For the record, my ports tree is up-to-date and I=E2=80=99m = installing the packages onto a recent FreeBSD-CURRENT amd64 VM via: >>=20 >> $ pkg install sysutils/u-boot-rpi >>=20 >> Cheers, >>=20 >> Tim >>=20 >> _______________________________________________ >> freebsd-arm@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-arm >> To unsubscribe, send any mail to = "freebsd-arm-unsubscribe@freebsd.org" >=20 From owner-freebsd-arm@FreeBSD.ORG Sun Jun 14 21:19:19 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4AC4AEFF for ; Sun, 14 Jun 2015 21:19:19 +0000 (UTC) (envelope-from e.moe@rcn.com) Received: from smtp.rcn.com (smtp.rcn.com [69.168.97.78]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0F1E0E7A for ; Sun, 14 Jun 2015 21:19:18 +0000 (UTC) (envelope-from e.moe@rcn.com) X_CMAE_Category: , , X-CNFS-Analysis: v=2.0 cv=A+nuztqG c=1 sm=1 a=kLIaxcRmAfIWWG5Fo3VFTQ==:17 a=OA2lqS22AAAA:8 a=UGRoMzq9r7NvIUNPFeAA:9 a=CjuIK1q_8ugA:10 a=7a1WO2Z2o_wA:10 a=PSnS_euJ6Z8A:10 a=YL7B1VoFGGcA:10 a=itfYZ8Axc7FzxYG07U0A:9 a=gWCTb-xSAAAA:8 a=6I5d2MoRAAAA:8 a=Nz9UnKJW9NKzyXgy_NAA:9 a=QEXdDO2ut3YA:10 a=kLIaxcRmAfIWWG5Fo3VFTQ==:117 X-CM-Score: 0 X-Scanned-by: Cloudmark Authority Engine X-Authed-Username: ZS5tb2VAcmNuLmNvbQ== Authentication-Results: smtp01.rcn.cmh.synacor.com header.from=e.moe@rcn.com; sender-id=neutral Authentication-Results: smtp01.rcn.cmh.synacor.com smtp.mail=e.moe@rcn.com; spf=neutral; sender-id=neutral Authentication-Results: smtp01.rcn.cmh.synacor.com smtp.user=e.moe; auth=pass (PLAIN) Received-SPF: neutral (smtp01.rcn.cmh.synacor.com: 24.148.20.83 is neither permitted nor denied by domain of rcn.com) Received: from [24.148.20.83] ([24.148.20.83:39523] helo=[192.168.1.175]) by smtp.rcn.com (envelope-from ) (ecelerity 3.6.2.43620 r(Platform:3.6.2.0)) with ESMTPSA (cipher=AES256-SHA) id 08/ED-33934-5DFED755; Sun, 14 Jun 2015 17:19:17 -0400 Content-Type: multipart/mixed; boundary="Apple-Mail=_1AF9646C-0B9D-4718-8E31-18FE430C9FFD" Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2098\)) Subject: Re: Broken U-Boot packages? From: Erik Moe In-Reply-To: <89E506F5-7F26-4409-84E1-68304564D011@kientzle.com> Date: Sun, 14 Jun 2015 16:19:17 -0500 Cc: freebsd-arm Message-Id: <1226DD2D-A455-42BF-8EC6-F871FC7F997C@rcn.com> References: <89E506F5-7F26-4409-84E1-68304564D011@kientzle.com> To: Tim Kientzle X-Mailer: Apple Mail (2.2098) X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Jun 2015 21:19:19 -0000 --Apple-Mail=_1AF9646C-0B9D-4718-8E31-18FE430C9FFD Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=us-ascii Sure, take them with a grain of salt, --Apple-Mail=_1AF9646C-0B9D-4718-8E31-18FE430C9FFD Content-Disposition: attachment; filename=setup.sh Content-Type: application/octet-stream; name="setup.sh" Content-Transfer-Encoding: 7bit KERNCONF=BEAGLEBONE BEAGLEBONE_UBOOT="u-boot-beaglebone" BEAGLEBONE_UBOOT_BIN="u-boot.img" IMAGE_SIZE=$((1000 * 1000 * 1000)) TARGET_ARCH=armv6 UBOOT_PATH="/usr/local/share/u-boot/${BEAGLEBONE_UBOOT}" beaglebone_check_uboot ( ) { uboot_port_test ${BEAGLEBONE_UBOOT} ${BEAGLEBONE_UBOOT_BIN} } strategy_add $PHASE_CHECK beaglebone_check_uboot # # BeagleBone requires a FAT partition to hold the boot loader bits. # beaglebone_partition_image ( ) { disk_partition_mbr disk_fat_create 2m disk_ufs_create } strategy_add $PHASE_PARTITION_LWW beaglebone_partition_image beaglebone_uboot_install ( ) { echo "Installing U-Boot from : ${BEAGLEBONE_UBOOT}" cp ${UBOOT_PATH}/MLO . cp ${UBOOT_PATH}/u-boot.img . cp ${BOARDDIR}/files/uEnv.txt . freebsd_install_fdt beaglebone.dts bbone.dts freebsd_install_fdt beaglebone.dts bbone.dtb freebsd_install_fdt beaglebone-black.dts bboneblk.dts freebsd_install_fdt beaglebone-black.dts bboneblk.dtb } strategy_add $PHASE_BOOT_INSTALL beaglebone_uboot_install # TODO: Try changing ubldr to a PIC binary instead of ELF, so we don't # have to compile it separately for every different load address. # strategy_add $PHASE_BUILD_OTHER freebsd_ubldr_build UBLDR_LOADADDR=0x88000000 strategy_add $PHASE_BOOT_INSTALL freebsd_ubldr_copy_ubldr ubldr # BeagleBone puts the kernel on the FreeBSD UFS partition. strategy_add $PHASE_FREEBSD_BOARD_INSTALL board_default_installkernel . # overlay/etc/fstab mounts the FAT partition at /boot/msdos strategy_add $PHASE_FREEBSD_BOARD_INSTALL mkdir -p boot/msdos # ubldr help and config files go on the UFS partition (after boot dir exists) strategy_add $PHASE_FREEBSD_BOARD_INSTALL freebsd_ubldr_copy boot --Apple-Mail=_1AF9646C-0B9D-4718-8E31-18FE430C9FFD Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=utf-8 Erik > On Jun 14, 2015, at 4:09 PM, Tim Kientzle wrote: >=20 >=20 >> On Jun 14, 2015, at 1:42 PM, Erik Moe wrote: >>=20 >> I'm booting off a Beaglebone Black SD image that I built two days ago = using a slightly modified version of crochet that uses the u-boot from = package. This is what my boot image looks like: >>=20 >> root@beaglebone:~ # ls /boot/msdos/ >> bbone.dtb bboneblk.dtb mlo ubldr >> bbone.dts bboneblk.dts u-boot.img uenv.txt >=20 > Thanks. That gives me another data point to play with. >=20 > Tim >=20 > P.S. Care to share your patches? >=20 >>=20 >> Erik >>=20 >>=20 >>> On Jun 14, 2015, at 1:20 PM, Tim Kientzle wrote: >>>=20 >>> Has anyone else had success building images with the U-Boot = *packages*? >>>=20 >>> I=E2=80=99m updating Crochet to use U-Boot from ports/packages for = RPI and Beaglebone, but I get non-bootable images (generally with U-boot = failing to identify the disk partitioning) when I use the package. = Here=E2=80=99s what I=E2=80=99ve tried so far: >>>=20 >>> * RPi built with U-Boot from package - non-bootable >>> * RPi built with U-Boot port compiled locally - works >>> * Beaglebone Black with U-Boot from package - non-bootable >>>=20 >>> Today I hope to try booting an old white Beaglebone and building the = u-boot-beaglebone port locally to see if that follows the pattern. >>>=20 >>> For the record, my ports tree is up-to-date and I=E2=80=99m = installing the packages onto a recent FreeBSD-CURRENT amd64 VM via: >>>=20 >>> $ pkg install sysutils/u-boot-rpi >>>=20 >>> Cheers, >>>=20 >>> Tim >>>=20 >>> _______________________________________________ >>> freebsd-arm@freebsd.org mailing list >>> http://lists.freebsd.org/mailman/listinfo/freebsd-arm >>> To unsubscribe, send any mail to = "freebsd-arm-unsubscribe@freebsd.org" >>=20 >=20 --Apple-Mail=_1AF9646C-0B9D-4718-8E31-18FE430C9FFD-- From owner-freebsd-arm@FreeBSD.ORG Mon Jun 15 08:24:58 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 89D3DB42 for ; Mon, 15 Jun 2015 08:24:58 +0000 (UTC) (envelope-from f0andrey@gmail.com) Received: from mail-wg0-x236.google.com (mail-wg0-x236.google.com [IPv6:2a00:1450:400c:c00::236]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2414DE8C for ; Mon, 15 Jun 2015 08:24:58 +0000 (UTC) (envelope-from f0andrey@gmail.com) Received: by wgv5 with SMTP id 5so62375191wgv.1 for ; Mon, 15 Jun 2015 01:24:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=GJue83arfxWEZfjljasU9U9VWCAifvr39fpmmY+9Q0E=; b=Am7cPUXqJZFGc0QtLwcZ3tCf2MUpRXXR+yLd8Y2+DRhJm03wuWLY4zUm2ZPC6KnCsa MnsCFYgEvMvzGpCiIXZMtaw3MNtmCbvEGeHAZTyQfrmzeWB3JYW6CmgNdv+vJkhp8/gl yBV/A6pblIkLi2pF80yO/A+f9+ExeH5WEk4JzVoPK5vL8WisB4eFsCBUH8gJHRZBYHol 2vurpRQDk5F0o3OWc8F0KBtt/pCiVme5C1nxlAlgrkOm2QaZ0TKxjZG8F/kAh+5iDVE3 sozjQ0M2v6gAnB0lyferIJ8+rvUC7NmWAHnklcnsoza1uigsZNhzsmx3SRfitaZT6ka+ S6Dg== MIME-Version: 1.0 X-Received: by 10.181.13.172 with SMTP id ez12mr28725148wid.91.1434356696595; Mon, 15 Jun 2015 01:24:56 -0700 (PDT) Received: by 10.194.61.169 with HTTP; Mon, 15 Jun 2015 01:24:56 -0700 (PDT) In-Reply-To: References: Date: Mon, 15 Jun 2015 11:24:56 +0300 Message-ID: Subject: Re: Broken U-Boot packages? From: Andrey Fesenko To: Tim Kientzle Cc: freebsd-arm Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2015 08:24:58 -0000 On Sun, Jun 14, 2015 at 9:20 PM, Tim Kientzle wrote: > Has anyone else had success building images with the U-Boot *packages*? > > I=E2=80=99m updating Crochet to use U-Boot from ports/packages for RPI an= d Beaglebone, but I get non-bootable images (generally with U-boot failing = to identify the disk partitioning) when I use the package. Here=E2=80=99s = what I=E2=80=99ve tried so far: > > * RPi built with U-Boot from package - non-bootable > * RPi built with U-Boot port compiled locally - works > * Beaglebone Black with U-Boot from package - non-bootable > > Today I hope to try booting an old white Beaglebone and building the u-bo= ot-beaglebone port locally to see if that follows the pattern. > > For the record, my ports tree is up-to-date and I=E2=80=99m installing th= e packages onto a recent FreeBSD-CURRENT amd64 VM via: > > $ pkg install sysutils/u-boot-rpi > I'm use for Beaglebone Black this patch's gvnn3 (6c0d681 and b4d7aba) https://github.com/gvnn3/crochet-freebsd/commits/ From owner-freebsd-arm@FreeBSD.ORG Mon Jun 15 10:51:31 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0EE35A06 for ; Mon, 15 Jun 2015 10:51:31 +0000 (UTC) (envelope-from jau789@gmail.com) Received: from mail-wg0-x236.google.com (mail-wg0-x236.google.com [IPv6:2a00:1450:400c:c00::236]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9BDE0904 for ; Mon, 15 Jun 2015 10:51:30 +0000 (UTC) (envelope-from jau789@gmail.com) Received: by wgzl5 with SMTP id l5so40554140wgz.3 for ; Mon, 15 Jun 2015 03:51:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; bh=vuZT4mnktBB4/2JJJ7UFHDyWzppVHhDoX4UwJ0c3rXk=; b=lpNa1paFX+IIAoyLifw6o9QyZdSEx55JeW4WtmeF4qXTb4MQaAS0JmEyAJhqcspMuM uZgLlDeE9vRQDHEA/cnKmEGSvNjYFhFP06VXDSh+IsOiwFfNerkClYlvp5Ae9b/sVXXk tlR+PdwhGISjcxnSTSZCjW/yz1CagVz5DwHHy6WlpTEjTljMKY2DzecZbis+j5Pu15Ev R27kvQOKvUcjmY3NXazb5xtBUQENft3jhVYfBfRHNW+GWBe3D7scW0flQ43JxHM3n+k0 o6iUjxAdXPyR8fQZPXKCD6J8QWYZ6gxBlRC0HAgW8qLGEI28WfkR6pxgn2sWQ2Gh4nTG AKOQ== X-Received: by 10.181.13.5 with SMTP id eu5mr29315425wid.37.1434365489154; Mon, 15 Jun 2015 03:51:29 -0700 (PDT) Received: from [192.168.1.131] (xdsl-205-163.nblnetworks.fi. [83.145.205.163]) by mx.google.com with ESMTPSA id l6sm15266750wib.18.2015.06.15.03.51.28 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 15 Jun 2015 03:51:28 -0700 (PDT) Message-ID: <557EAE2F.3020307@gmail.com> Date: Mon, 15 Jun 2015 13:51:27 +0300 From: Jukka Ukkonen User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: freebsd-arm@FreeBSD.org Subject: RPI2 hanging during boot Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2015 10:51:31 -0000 Has anyone else seen this happening after rebuilding the system for an RPI2 from 11.x/head source during the last few days? I think I noticed this on Friday, the 12th. The boot simply freezes after having said... Trying to mount root from ufs:/dev/mmcsd0s2a []... warning: no time-of-day clock registered, system time will not be set accurately Then nothing happens, no more messages, no progress. I am quite positive that at least the source code of the previous weekend (June 5th-7th) still booted just fine on my RPI2 when I had rebuilt the system. For a long there were no problems at all during the boot, and suddenly these odd hangs began a few days ago when I rebuilt the system from the latest source. Since then I have updated my local source code from the svn repository a few times and tried rebuilding again. The boot time freeze still remains, though. The latest attempt was done using svn revision 284408. I hope this rings some bells to somebody. --jau From owner-freebsd-arm@FreeBSD.ORG Mon Jun 15 11:40:25 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 48A21B4B; Mon, 15 Jun 2015 11:40:25 +0000 (UTC) (envelope-from f0andrey@gmail.com) Received: from mail-wg0-x22f.google.com (mail-wg0-x22f.google.com [IPv6:2a00:1450:400c:c00::22f]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D939D3EC; Mon, 15 Jun 2015 11:40:24 +0000 (UTC) (envelope-from f0andrey@gmail.com) Received: by wgv5 with SMTP id 5so66429720wgv.1; Mon, 15 Jun 2015 04:40:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=jBcqQmmd8QwS3k8cejsNvuiAE4GXIbTFngqCmRi9c98=; b=Vgl0eQZn49HTvbdrHNwllgJQ0VWYkJAfPWB3Ya9+pXQQ6TOj8PNEKnQCuhhe/omwos Gh5erG50Ctz2AdTnaDhuqKQ9Pne0XXW1lVrIbhZZhE9KxlU4d0XhKOkzTMkiM7PMah1y Jeeh942TrrM4jZO9wHCbr3ZbLAk/hZ3DY6v8ATlPNscocCG/W4SJx+bB+4CvF8pdeYbi U9jyjcVJ6Aav2OGZa6FtiDp47GP4kXA6Ld6RZExwg+aIRtlJ8qnd3ml3xjrwobRy8auG w2VmXHPWlRgFXVIUzko0J8VJpaHZ9jFfUytAhD6WVIJPCRluVb4lzvQr9LufXy97ZsTL F9IQ== MIME-Version: 1.0 X-Received: by 10.180.93.170 with SMTP id cv10mr19904142wib.44.1434368423372; Mon, 15 Jun 2015 04:40:23 -0700 (PDT) Received: by 10.194.61.169 with HTTP; Mon, 15 Jun 2015 04:40:23 -0700 (PDT) Date: Mon, 15 Jun 2015 14:40:23 +0300 Message-ID: Subject: geom classe's geom_*.so installed /usr/lib/ instead of /lib/geom (crochet build) From: Andrey Fesenko To: freebsd-current , "freebsd-arm@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2015 11:40:25 -0000 Hello, I'm build CURENT (r284408) for arm with crochet. all geom lasse's geom_*.so installed /usr/lib/ instead of /lib/geom /usr/obj/_.installworld.armv6.log ... ===> sbin/geom/class/cache (install) install -s -o root -g wheel -m 444 geom_cache.so /usr/obj/_.mount.freebsd/usr/lib install -o root -g wheel -m 444 gcache.8.gz /usr/obj/_.mount.freebsd/usr/share/man/man8 /sbin/gcache -> /sbin/geom ===> sbin/geom/class/concat (install) install -s -o root -g wheel -m 444 geom_concat.so /usr/obj/_.mount.freebsd/usr/lib install -o root -g wheel -m 444 gconcat.8.gz /usr/obj/_.mount.freebsd/usr/share/man/man8 ... after boot see root@r-pi:~ # gpart show gpart: Unknown command: show. usage: gpart help gpart list [-a] [name ...] gpart status [-ags] [name ...] gpart load [-v] gpart unload [-v] root@r-pi:~ # cp /usr/lib/geom_* /lib/geom/ root@r-pi:~ # gpart show => 63 7698369 mmcsd0 MBR (3.7G) 63 34776 1 !12 [active] (17M) 34839 1918286 2 freebsd (937M) 1953125 5745307 - free - (2.7G) => 0 1918286 mmcsd0s2 BSD (937M) 0 105 - free - (53K) 105 1918080 1 freebsd-ufs (937M) 1918185 101 - free - (51K) From owner-freebsd-arm@FreeBSD.ORG Mon Jun 15 11:41:08 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AA81FC9B for ; Mon, 15 Jun 2015 11:41:08 +0000 (UTC) (envelope-from mihai.carabas@gmail.com) Received: from mail-wi0-x233.google.com (mail-wi0-x233.google.com [IPv6:2a00:1450:400c:c05::233]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 35C5C648 for ; Mon, 15 Jun 2015 11:41:08 +0000 (UTC) (envelope-from mihai.carabas@gmail.com) Received: by wicnd19 with SMTP id nd19so21803869wic.1 for ; Mon, 15 Jun 2015 04:41:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=IF6EN+1hJV9eJDw7TbjW5jHKkocNdM67CGNiZxZBCcA=; b=pzAQbbru30UB949rJoSaUiuWVmvn6cZ1Pl0w7PlJCR9MIvqWD0vAlERWgEgBhxJbY9 3FnY10HeUp5FtbtHSbKbCg6XcgKq9AlSICe87cfijz5OdzBYs4+lX/vJ4eYLOYtwCLFw P6nSUbc4c1s5Li7zzb9HFpHIafejdD+ALzBAx9x3fFL3+iofU7qEAtgceIXGj05/d+C/ S2W8IX49cQgLiVEOIepjgvVEoDHsfaRlsYriAZW1UvB75vK6gaSXoXirLs/TEHiQk0uE hFcBlZb4jipsbvg+OBfpefVOk5BIUanHJ48iTmUjACgceKh0ZXC6n4BuFJitf3KQlrMN 5vbg== MIME-Version: 1.0 X-Received: by 10.195.11.168 with SMTP id ej8mr51501635wjd.150.1434368466795; Mon, 15 Jun 2015 04:41:06 -0700 (PDT) Received: by 10.28.21.134 with HTTP; Mon, 15 Jun 2015 04:41:06 -0700 (PDT) In-Reply-To: References: Date: Mon, 15 Jun 2015 14:41:06 +0300 Message-ID: Subject: Re: porting freebsd-arm on FastModels - CortexA15 From: Mihai Carabas To: freebsd-arm@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2015 11:41:08 -0000 On Sat, Jun 13, 2015 at 4:59 PM, Mihai Carabas wrote: > Hello, > > My name is Mihai Carabas and I am a GSoC student this year on porting > bhyve over ARM. Right now I'm working on booting FreeBSD ARM on an > CortexA15 emulated platform running with FastModels. > > I have two problems until now: > > a) I used the DTS from sys/gnu/dts/arm/vexpress-v2p-ca15-tc1.dts and I > build the FDT directly in the kernel. I have a problem with the address > calculated for the serial0 console. > > The DTB parser selects the first range from the bus: > 228 >------->-------ranges = <0 0 0 0x08000000 0x04000000>, > 229 >------->------->------- <1 0 0 0x14000000 0x04000000>, > 230 >------->------->------- <2 0 0 0x18000000 0x04000000>, > 231 >------->------->------- <3 0 0 0x1c000000 0x04000000>, > 232 >------->------->------- <4 0 0 0x0c000000 0x04000000>, > 233 >------->------->------- <5 0 0 0x10000000 0x04000000>; > > The valid range for this platform is the entry starting with 3 (the > console is mapped at address 0x1c090000). But the parser ellects the first > range. > > The console is declared like this (as a child to iofpga root node): > 68 >------->-------iofpga@3,00000000 { > 69 >------->------->-------compatible = "arm,amba-bus", "simple-bus"; > 70 >------->------->-------#address-cells = <1>; > 71 >------->------->-------#size-cells = <1>; > 72 >------->------->-------ranges = <0 3 0 0x200000>; > ........ > 156 >------->------->-------v2m_serial0: uart@090000 { > 157 >------->------->------->-------compatible = "arm,pl011", > "arm,primecell"; > 158 >------->------->------->-------reg = <0x090000 0x1000>; > 159 >------->------->------->-------interrupts = <5>; > 160 >------->------->------->-------clocks = <&v2m_oscclk2>, <&smbclk>; > 161 >------->------->------->-------clock-names = "uartclk", "apb_pclk"; > 162 >------->------->-------}; > > As you can see the iofgpa selects the chip number 3, which is ok, but the > final address computed by the FreeBSD parser isn't. Any thoughts on this? > > b) To force the things, I've delete the other ranges, and just let the > 0x1c000000. Until now I've managed to get to message buffer > initialization in initarm. If I initialize the message buffers (in > particular set msgbufmapped = 1;), the next printf is being trashed: it > prints only the first letter and than the 's' char for a couple of times > and than it gets into a data abort exception. It seems that the message > buffer gets corrupted. I've checked the memory allocated and mapped for the > message buffer (msgbufp in initarm [pmap_new]) and is ok. Are there other > parts of the machine dependent code that could affect the message buffer? > > If I don't initialize the message buffer it goes further without any > problems, ending up in the mi_startup and about the end. > I managed to pass through all these problems by fixing the DTS bugs (with some workarounds) that appeared and enabling some register access from secure-world in the boot-wrapper (the machine starts in SecureWorld and must give access to all coprocessors for NormalWorld). I've managed to get to interrupt controller and timer initialization, and it breaks at uart_ungrab [1]. Before this are some strange erros regarding the interrupts-cells. I don't understand why it complains with that 3 value (indeed the parent has size 3 for interrupts-cells, but the child node has it's value at 1). Anyone has any idea why this is happening? Thank you, Mihai [1] https://wiki.freebsd.org/MihaiCarabas/bootup.log From owner-freebsd-arm@FreeBSD.ORG Mon Jun 15 12:56:31 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A19E3D5D for ; Mon, 15 Jun 2015 12:56:31 +0000 (UTC) (envelope-from erichsfreebsdlist@alogt.com) Received: from alogt.com (alogt.com [69.36.191.58]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8112CB6A for ; Mon, 15 Jun 2015 12:56:31 +0000 (UTC) (envelope-from erichsfreebsdlist@alogt.com) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=alogt.com; s=default; h=Content-Transfer-Encoding:Content-Type:MIME-Version:Message-ID:Subject:To:From:Date; bh=bVPV7xPFmeNaaG+1tY83osRrEeBMMcRA3bXgVMoL9wY=; b=drEOjxSmqH14pcbpZy+/+ICJzeYdsEyb04IWv2iZReN2OhII3Us9PiPlxvBcfGvfzJkyiM9st3ZDPWKxqn7HIZonv5t33/yeVxVbx6B6hxkYULTkJ2+Gmc3t1fXcu+i59IE10po2ZG2Fs/6WLcV1/ojYQzMjHQHKXHeqG/3RVdI=; Received: from [114.121.158.57] (port=60613 helo=B85M-HD3-0.alogt.com) by sl-508-2.slc.westdc.net with esmtpsa (TLSv1.2:AES128-GCM-SHA256:128) (Exim 4.85) (envelope-from ) id 1Z4TwD-002pnS-TI for freebsd-arm@freebsd.org; Mon, 15 Jun 2015 06:56:30 -0600 Date: Mon, 15 Jun 2015 20:56:25 +0800 From: Erich Dollansky To: freebsd-arm Subject: FreeBSD on Raspberry sensitive to syntax errors in /etc/group Message-ID: <20150615205625.27072f00@B85M-HD3-0.alogt.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - sl-508-2.slc.westdc.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - alogt.com X-Get-Message-Sender-Via: sl-508-2.slc.westdc.net: authenticated_id: erichsfreebsdlist@alogt.com X-Source: X-Source-Args: X-Source-Dir: X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2015 12:56:31 -0000 Hi, I try to build my custom SD card for a Raspberry but I failed. To make a long story short, I copied the /etc/group from a running 10.1 amd64 system to a SD card with also a 10.1 system on it. The ARM system worked before I copied the file but stopped working after the file was there. I investigated and found that the following line makes the Raspberry fail: _atf:^:27: I did not investigate how and when this line came into my /etc/group I use on several other machines. At least it does not disturb FreeBSD 10.1 for amd64. It seems that the Raspberry freezes during the boot process. Neither the console nor telnet or ssh is usable then. When I change the line to _atf:*:27: it all works as expected. Does anyone know for what this entry is for. My search engine did not bring much light into this. Just one Japanese site is also using this entry. I believe it comes from the ports and got stuck here. Erich From owner-freebsd-arm@FreeBSD.ORG Mon Jun 15 15:55:08 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 792755C9; Mon, 15 Jun 2015 15:55:08 +0000 (UTC) (envelope-from jenkins-admin@freebsd.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 69C68E41; Mon, 15 Jun 2015 15:55:08 +0000 (UTC) (envelope-from jenkins-admin@freebsd.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 8A4F2E4B; Mon, 15 Jun 2015 15:55:08 +0000 (UTC) Date: Mon, 15 Jun 2015 15:55:08 +0000 (GMT) From: jenkins-admin@freebsd.org To: jenkins-admin@FreeBSD.org, freebsd-arm@freebsd.org Message-ID: <692156571.3.1434383708402.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: $PROJECT_NAME - Build #$BUILD_NUMBER - $BUILD_STATUS MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_arm64 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2015 15:55:08 -0000 $PROJECT_NAME - Build #$BUILD_NUMBER - $BUILD_STATUS: Check console output at $BUILD_URL to view the results. From owner-freebsd-arm@FreeBSD.ORG Mon Jun 15 16:25:09 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6ADE8966 for ; Mon, 15 Jun 2015 16:25:09 +0000 (UTC) (envelope-from mihai.carabas@gmail.com) Received: from mail-wi0-x234.google.com (mail-wi0-x234.google.com [IPv6:2a00:1450:400c:c05::234]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E8E6A97D for ; Mon, 15 Jun 2015 16:25:08 +0000 (UTC) (envelope-from mihai.carabas@gmail.com) Received: by wicnd19 with SMTP id nd19so29973547wic.1 for ; Mon, 15 Jun 2015 09:25:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=8PXr6o2seqYvukS+I7jKYbxGeVKwN/I7g9u8H4wok7A=; b=x9Q1ie4f5Nan4Z1oP3ghr+Mg5XyKKZPFLDATmltvDY7NmeJIlifkxuZ6/tk0hq0bVL bPdk2h5UQf7LNqJf2ab6B6TOqx73zwDKr+t52M5TuMZKtkegptbp0EKPYWwglzFhH9EQ Tq0hX7Dt9FZjuHqU+6MCZE94ERUs92N4PSpoGlX/Bs+SNAAWLIeTL6Istdy6LxWZ2+1l rlI8c3CUj6j1oU8S+P2itrxnNOKtrmdsQIGAr3CzPxlJ4k0gGgI8wNX59GCCfy2KESy9 josmKTeOqar/eI0Eq+So5OeR8G2hvvc98ca/BUTzxFaFE3CqNRrF2KCehX4eyTzCITuo YyWA== MIME-Version: 1.0 X-Received: by 10.194.77.179 with SMTP id t19mr52282414wjw.30.1434385507450; Mon, 15 Jun 2015 09:25:07 -0700 (PDT) Received: by 10.28.21.134 with HTTP; Mon, 15 Jun 2015 09:25:07 -0700 (PDT) In-Reply-To: References: Date: Mon, 15 Jun 2015 19:25:07 +0300 Message-ID: Subject: Re: porting freebsd-arm on FastModels - CortexA15 From: Mihai Carabas To: freebsd-arm@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2015 16:25:09 -0000 Hello, On Sun, Jun 14, 2015 at 8:45 PM, Mihai Carabas wrote: > Hello, > > On Sat, Jun 13, 2015 at 4:59 PM, Mihai Carabas > wrote: > >> Hello, >> >> My name is Mihai Carabas and I am a GSoC student this year on porting >> bhyve over ARM. Right now I'm working on booting FreeBSD ARM on an >> CortexA15 emulated platform running with FastModels. >> >> I have two problems until now: >> >> a) I used the DTS from sys/gnu/dts/arm/vexpress-v2p-ca15-tc1.dts and I >> build the FDT directly in the kernel. I have a problem with the address >> calculated for the serial0 console. >> >> The DTB parser selects the first range from the bus: >> 228 >------->-------ranges = <0 0 0 0x08000000 0x04000000>, >> 229 >------->------->------- <1 0 0 0x14000000 0x04000000>, >> 230 >------->------->------- <2 0 0 0x18000000 0x04000000>, >> 231 >------->------->------- <3 0 0 0x1c000000 0x04000000>, >> 232 >------->------->------- <4 0 0 0x0c000000 0x04000000>, >> 233 >------->------->------- <5 0 0 0x10000000 0x04000000>; >> >> The valid range for this platform is the entry starting with 3 (the >> console is mapped at address 0x1c090000). But the parser ellects the first >> range. >> >> The console is declared like this (as a child to iofpga root node): >> 68 >------->-------iofpga@3,00000000 { >> 69 >------->------->-------compatible = "arm,amba-bus", "simple-bus"; >> 70 >------->------->-------#address-cells = <1>; >> 71 >------->------->-------#size-cells = <1>; >> 72 >------->------->-------ranges = <0 3 0 0x200000>; >> ........ >> 156 >------->------->-------v2m_serial0: uart@090000 { >> 157 >------->------->------->-------compatible = "arm,pl011", >> "arm,primecell"; >> 158 >------->------->------->-------reg = <0x090000 0x1000>; >> 159 >------->------->------->-------interrupts = <5>; >> 160 >------->------->------->-------clocks = <&v2m_oscclk2>, <&smbclk>; >> 161 >------->------->------->-------clock-names = "uartclk", "apb_pclk"; >> 162 >------->------->-------}; >> >> As you can see the iofgpa selects the chip number 3, which is ok, but the >> final address computed by the FreeBSD parser isn't. Any thoughts on this? >> > > I've found the issue with DTS parsing (a bug in the FDT parsing I guess). > The ranges value contains the address of the child node (the first value: 0 > in this case), the address of the parent (3 0 - the parent address-cells is > 2) and the size of the range for the child node (0x200000). > > The problem appears at the parent, because it has two values. If we > analyze the "fdt_get_range" from sys/dev/fdt/fdt_common.c we will see the > following line: > par_bus_addr = fdt_data_get((void *)rangesptr, par_addr_cells); > > All seems ok (par_addr_cells is 2), but par_bus_addr is of type u_long, > which means unsigned long and a length of 32bits and can't accomodate the > two values in the parent address space. > > 415 u_long > 416 fdt_data_get(void *data, int cells) > 417 { > 418 > 419 >-------if (cells == 1) > 420 >------->-------return (fdt32_to_cpu(*((uint32_t *)data))); > 421 > 422 >-------return (fdt64_to_cpu(*((uint64_t *)data))); > > If we look at fdt64_to_cpu: > 29 static inline uint64_t fdt64_to_cpu(uint64_t x) > 30 { > 31 >-------return (EXTRACT_BYTE(0) << 56) | (EXTRACT_BYTE(1) << 48) | > (EXTRACT_BYTE(2) << 40) | (EXTRACT_BYTE(3) << 32) > 32 >------->-------| (EXTRACT_BYTE(4) << 24) | (EXTRACT_BYTE(5) << 16) | > (EXTRACT_BYTE(6) << 8) | EXTRACT_BYTE(7); > 33 } > > It returns a 64bit variable which doesn't fit in the u_long par_bus_addr > and the compiler selects only the least significant bits, meaning "0". The > "3" is left out and this is why the parsing code doesn't select the third > chip from the bus. > Hello, I've found another bug in simplebus_alloc_resource function (sys/dev/fdt/simplebus.c). We have the following code block: 357 >-------if (type == SYS_RES_MEMORY) { 358 >------->-------/* Remap through ranges property */ 360 361 >------->-------for (j = 0; j < sc->nranges; j++) { 363 >------->------->-------if (start >= sc->ranges[j].bus && end < 364 >------->------->------- sc->ranges[j].bus + sc->ranges[j].size) { 365 >------->------->------->-------start -= sc->ranges[j].bus; 366 >------->------->------->-------start += sc->ranges[j].host; 367 >------->------->------->-------end -= sc->ranges[j].bus; 368 >------->------->------->-------end += sc->ranges[j].host; 370 371 >------->------->------->-------break; 372 >------->------->-------} 373 >------->-------} Here sc->ranges[j].bus is 0 and sc->ranges[j].host is 3 (basically the address of the parent and the child from the above DTS). It's not correct to sump up the host and start directly because 3 is an index (chipselect) from the parent (thus ending up with an alignment error). We must recursively go to the parent and obtain the address. Unfortunatelly I can't find a quick workaround for this. Thank you, Mihai From owner-freebsd-arm@FreeBSD.ORG Mon Jun 15 17:34:18 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6644D543 for ; Mon, 15 Jun 2015 17:34:18 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from mail-ie0-f175.google.com (mail-ie0-f175.google.com [209.85.223.175]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 30DFADDB for ; Mon, 15 Jun 2015 17:34:17 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: by iecrd14 with SMTP id rd14so35885890iec.3 for ; Mon, 15 Jun 2015 10:34:17 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:sender:subject:mime-version:content-type:from :in-reply-to:date:cc:message-id:references:to; bh=QqMGMatnfBwbkd63rwDkdEeobsvwtL9cdGPsKRIbfis=; b=RC6EN+jD1pS7QaJylzRuOy4I/eFXfRpJ7Vd4+2BMT6QhXHam/nU7OueXvjn2Jb22jK VQN0Jkri0bYLcwOrEJvHTXNsduo1w+ivApWaP4fghtfo2k4fvAqbATXcAV6KghudD5K7 UaZ57UJC4iZTUmssmJWWpRRBSWXyJlOT1MGhqlQC7c5iSEYJsxdArWKZ7hSflLlz8Fc0 XYatmb1vUdm9q7is9MOOG3i9Y/82ZAFb5PbH9Z9VuSR6ZFAij+J5o/5wssHeS7ewHlXa viKkD30U7ndA155Y0YABmxzJrY/1rH4FczOBZGWlxTNVqiLMvP9G2bqjvhIHbglk9MCB uhVw== X-Gm-Message-State: ALoCoQl3AAbM+oraAPoHCa5QPgXnKMSjVVoKKkfvsHG30ecaJ3BuKTldDP2qWatOSbkb8yqVCn5Q X-Received: by 10.107.3.83 with SMTP id 80mr7975741iod.33.1434389657152; Mon, 15 Jun 2015 10:34:17 -0700 (PDT) Received: from netflix-mac-wired.bsdimp.com ([50.253.99.174]) by mx.google.com with ESMTPSA id k74sm9277762iok.30.2015.06.15.10.34.16 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 15 Jun 2015 10:34:16 -0700 (PDT) Sender: Warner Losh Subject: Re: Broken U-Boot packages? Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2098\)) Content-Type: multipart/signed; boundary="Apple-Mail=_2FB26EB1-2B4E-4E82-AE4D-964C8CB5BF59"; protocol="application/pgp-signature"; micalg=pgp-sha512 X-Pgp-Agent: GPGMail 2.5b6 From: Warner Losh In-Reply-To: Date: Mon, 15 Jun 2015 11:34:14 -0600 Cc: freebsd-arm Message-Id: References: To: Tim Kientzle X-Mailer: Apple Mail (2.2098) X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2015 17:34:18 -0000 --Apple-Mail=_2FB26EB1-2B4E-4E82-AE4D-964C8CB5BF59 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=utf-8 > On Jun 14, 2015, at 12:20 PM, Tim Kientzle wrote: >=20 > Has anyone else had success building images with the U-Boot = *packages*? I=E2=80=99ve built them from source. But haven=E2=80=99t used pkg to = install them. > I=E2=80=99m updating Crochet to use U-Boot from ports/packages for RPI = and Beaglebone, but I get non-bootable images (generally with U-boot = failing to identify the disk partitioning) when I use the package. = Here=E2=80=99s what I=E2=80=99ve tried so far: >=20 > * RPi built with U-Boot from package - non-bootable > * RPi built with U-Boot port compiled locally - works > * Beaglebone Black with U-Boot from package - non-bootable >=20 > Today I hope to try booting an old white Beaglebone and building the = u-boot-beaglebone port locally to see if that follows the pattern. >=20 > For the record, my ports tree is up-to-date and I=E2=80=99m installing = the packages onto a recent FreeBSD-CURRENT amd64 VM via: >=20 > $ pkg install sysutils/u-boot-rpi The ports-built files and package files should be identical. Are they? Warner --Apple-Mail=_2FB26EB1-2B4E-4E82-AE4D-964C8CB5BF59 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org iQIcBAEBCgAGBQJVfwyWAAoJEGwc0Sh9sBEASeEP/3PGo7Yx1mFLtnXoiwt5kHnD VHmR+oMDoDgdIYjREcqpr7mqwewoDdVs2WnnOGJOJHCmw0dhKx1i9KeYSi1tugn9 8oO6t7LQuZ5xw8744cdfdw0EMWfgBe8AR2Xha2s0PQ1/H3D1ntqBs3Ho8+7eKcUx ZrkL69rZrk/JimSIEgG4aHOLfa2+zQeATkDxyy28zbBrmRuAFaCU3hNfvZuC0PIY NYefulJj/bdy2MVgnc/HifK4s1zYsKP+dApIKBqwxi6/gAvhXZgu5p/RYzx7O1PR uD4QX4cU2XAkEcDqNQLTYNF2HjzdRsgzDjLk6r9HWwEB/Y+SbHZ8EtW+B3jokj0F YMqpzdK+A69NMcrqOugBUB1pqtzZHClnDkmhzhaNymimlCHQ0mK5v46rK1123sBJ psft50sDKD/U9KWakgIGAUk/3nyE7bfCZvsdlOU+ZVGvdhk7N0aNMBss4vq3h78q C6ijgVPAzRUWxJI0xPNrQW1ZCxY9cxUKK3q6EdwS2/gESDMAhcECARne63uVG8wh VyuB0/pEa49S8ee0H0IRrilolf9nJs3qvWO66C96LuzOTvQs1v88WVelgEQ5wRn+ isLprIVl668fX2pZidNGNX985Vk0gEL+mozap5Uxz6V9Ai2gt40COtnFgFqhOAII neHpoN3bkjaIIqB2j9R5 =qql8 -----END PGP SIGNATURE----- --Apple-Mail=_2FB26EB1-2B4E-4E82-AE4D-964C8CB5BF59-- From owner-freebsd-arm@FreeBSD.ORG Mon Jun 15 17:40:01 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D3A0A840 for ; Mon, 15 Jun 2015 17:40:01 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from mail-ig0-f181.google.com (mail-ig0-f181.google.com [209.85.213.181]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A0823E60 for ; Mon, 15 Jun 2015 17:40:01 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: by igboe5 with SMTP id oe5so35849056igb.1 for ; Mon, 15 Jun 2015 10:40:00 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:sender:subject:mime-version:content-type:from :in-reply-to:date:cc:message-id:references:to; bh=fiJc/A08ntoLLzY5fDr0ITtvuru4jhSDz3IveN83ibc=; b=C+Tb5cvQeSIUyDtkC48bVComU1wxJRGPJ/NKKRkuMavbFkvH62s+b37ShxeyAxUwvg wpwy7BPlgYqJBVMsx4PHvrjbYO7eIssuwEO4VA9A+gaje4uBx3q0L63n/Bhqed0Rde3Z vhIwJVT7Kob4oLORUQTblm7MUsNW4BKYAEhyql16mHTepnOMhA5g/nrR37rEHNXEtJv1 bqFQWjHUbsvoPZZzTTzU1/h1xe9SEBdxGfrfEclQ/u9dfgaNjvCJNxe4IvYmYdgksXOc 0z3usNPE9fNPq3yKCS9bCM0AJadG4rKPfbc8f3uTnDFZpb/l3aeoytQWm+fwgEmX21vY J8Uw== X-Gm-Message-State: ALoCoQkACajaNx72iQKzHIYoXj5tqLVXCYuAs8AuUVAn6o6PiPBE6ETKqNWPqDs8gL2ZxLVpflTe X-Received: by 10.43.34.205 with SMTP id st13mr31332494icb.4.1434390000641; Mon, 15 Jun 2015 10:40:00 -0700 (PDT) Received: from netflix-mac-wired.bsdimp.com ([50.253.99.174]) by mx.google.com with ESMTPSA id bc2sm8030403igb.7.2015.06.15.10.39.59 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 15 Jun 2015 10:39:59 -0700 (PDT) Sender: Warner Losh Subject: Re: RPI2 hanging during boot Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2098\)) Content-Type: multipart/signed; boundary="Apple-Mail=_9B03E920-1266-4BF5-843E-5CC63EE0174B"; protocol="application/pgp-signature"; micalg=pgp-sha512 X-Pgp-Agent: GPGMail 2.5b6 From: Warner Losh In-Reply-To: <557EAE2F.3020307@gmail.com> Date: Mon, 15 Jun 2015 11:39:57 -0600 Cc: freebsd-arm@FreeBSD.org Message-Id: <7F916FD0-7072-47B3-BBC5-A313CA731F81@bsdimp.com> References: <557EAE2F.3020307@gmail.com> To: Jukka Ukkonen X-Mailer: Apple Mail (2.2098) X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2015 17:40:02 -0000 --Apple-Mail=_9B03E920-1266-4BF5-843E-5CC63EE0174B Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=utf-8 > On Jun 15, 2015, at 4:51 AM, Jukka Ukkonen wrote: >=20 >=20 > Has anyone else seen this happening after rebuilding the system > for an RPI2 from 11.x/head source during the last few days? > I think I noticed this on Friday, the 12th. >=20 > The boot simply freezes after having said... >=20 > Trying to mount root from ufs:/dev/mmcsd0s2a []... > warning: no time-of-day clock registered, system time will not be set > accurately >=20 > Then nothing happens, no more messages, no progress. > I am quite positive that at least the source code of the > previous weekend (June 5th-7th) still booted just fine on > my RPI2 when I had rebuilt the system. >=20 > For a long there were no problems at all during the boot, and > suddenly these odd hangs began a few days ago when I rebuilt > the system from the latest source. Since then I have updated > my local source code from the svn repository a few times and > tried rebuilding again. The boot time freeze still remains, > though. The latest attempt was done using svn revision 284408. >=20 > I hope this rings some bells to somebody. The latest snapshot from the first few days of the month works for me, which makes sense because I think it was from June 6th. Maybe you could do a binary search to see where booting fails. There=E2=80=99s only 9 days in that window, and only about a thousand commits. Since it is a hang in the handoff to user land, I think you could easily just compile the kernel to see. I also was able to boot on RPI2 a kernel I built at BSDcan from sources from June 5th. I=E2=80=99ll update to see if I see this too. Warner --Apple-Mail=_9B03E920-1266-4BF5-843E-5CC63EE0174B Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org iQIcBAEBCgAGBQJVfw3tAAoJEGwc0Sh9sBEAOh4P/3x30n1hm53E6wp8aMMt1Vhu vctK0UQeVLGmvyspB6bQNFyVg3IycFmNm8iuIuQoG6O8swdeoHjwPl1l6AB5srQu e55/vWWXqHUcUT/Wl13zxvbNvqfckDqv+ZI43jUqJNBnyPCMQBTMXqr96MOIGVoI j/ypTIZF4HVjPvBF3fdl182u5agY9svIl6/1LAi/poJolSLWD6zG29MiwbwLGl2K 7vsmYixkXQlOfiqKtDnNUeLpE1axVq2fxqLOsDVg+BMD07cIgIFDFNnjyNeAK6NE lL56V00AB4yqFRub8Zd6pTECFfjR/b9prHe2i4TtsFmMy83XA7qq51V9n/uLjBkW X6xSmLTC4b5y+RaucSJ9UvGHWLK9pySNRvYaU8QLW6FdZmvDhGyL6AgHzSY3Ku/7 NPQx+qHxLyV6xnQtJui6FWy60jrNzmZqtzqFCZgmFv+rRS7saCOz6rbX0H7+2Tab URRSPVDbefairbYOP55pe602/I55xmEHuNhxl6UdbCTXg+zhKw8oUFvQssaAcksN MvidDY08Y/3kqXsjktQLlqhZXs7fqdSzXdmuBFnnboJh5uOQlS9J/TPzpDsSBMQr TF0b34YS5tz/DTBNYXyg64jZT+Vl4qqiGbtjqxa/xgdHXvGMV3o0/ir2T20RYs1E 6HDa/DF+q6bAKnxN76lu =sb0f -----END PGP SIGNATURE----- --Apple-Mail=_9B03E920-1266-4BF5-843E-5CC63EE0174B-- From owner-freebsd-arm@FreeBSD.ORG Mon Jun 15 18:57:14 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 97685557; Mon, 15 Jun 2015 18:57:14 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: from mail-pa0-x233.google.com (mail-pa0-x233.google.com [IPv6:2607:f8b0:400e:c03::233]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 61CC2636; Mon, 15 Jun 2015 18:57:14 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: by pabqy3 with SMTP id qy3so70708563pab.3; Mon, 15 Jun 2015 11:57:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=subject:mime-version:content-type:from:in-reply-to:date:cc :message-id:references:to; bh=xBkafm4ZMjxg3ty2dMAws6aP2inonIvGemveXNCNXKg=; b=EKlQ/38uyjWJrqFsyfutwKsph3yccGlTzLwzw3+qAPRKWkBCUByXwBayUxqP8+EH1O rd1Olycd6twGeTtGvGYFzOv93yllMYaSkaVj5UGv9Wjovqm6tBldeRWUpm4NTqexnR4i tH12k2Itc9EAfAg7ZBUW1gNlq47gAdlbpE3dtDPmn6lO4mavaLOJLa+l68IVU1VRg/My PcgCWD1Z4hO4HbcrGif8Ckbnq678VnLoe9MXDZS0KkOxN2MtYMKCnS9MjoOK9yyW7oJM /tYfSuCO31J1pZ4J8N9+yZNoAXrQaU2eAhozRYsk848loORmHRVDR4mnuhEAZtnW4CCC HOeQ== X-Received: by 10.69.18.6 with SMTP id gi6mr51459997pbd.44.1434394633881; Mon, 15 Jun 2015 11:57:13 -0700 (PDT) Received: from ?IPv6:2601:8:ab80:7d6:1db2:335c:64d8:4632? ([2601:8:ab80:7d6:1db2:335c:64d8:4632]) by mx.google.com with ESMTPSA id wx8sm12972480pbc.1.2015.06.15.11.57.12 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 15 Jun 2015 11:57:12 -0700 (PDT) Subject: Re: geom classe's geom_*.so installed /usr/lib/ instead of /lib/geom (crochet build) Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\)) Content-Type: multipart/signed; boundary="Apple-Mail=_D9BA9417-77E5-41FC-9D05-70010F67DC4C"; protocol="application/pgp-signature"; micalg=pgp-sha512 X-Pgp-Agent: GPGMail 2.5 From: Garrett Cooper In-Reply-To: Date: Mon, 15 Jun 2015 11:57:10 -0700 Cc: freebsd-current , "freebsd-arm@freebsd.org" , Baptiste Daroussin , "Simon J. Gerraty" Message-Id: <411E8E4A-162E-4F27-AA4E-C7E55AA4AF35@gmail.com> References: To: Andrey Fesenko X-Mailer: Apple Mail (2.1878.6) X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2015 18:57:14 -0000 --Apple-Mail=_D9BA9417-77E5-41FC-9D05-70010F67DC4C Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=windows-1252 On Jun 15, 2015, at 4:40, Andrey Fesenko wrote: > Hello, > I'm build CURENT (r284408) for arm with crochet. >=20 > all geom lasse's geom_*.so installed /usr/lib/ instead of /lib/geom >=20 > /usr/obj/_.installworld.armv6.log > ... > =3D=3D=3D> sbin/geom/class/cache (install) > install -s -o root -g wheel -m 444 geom_cache.so > /usr/obj/_.mount.freebsd/usr/lib > install -o root -g wheel -m 444 gcache.8.gz > /usr/obj/_.mount.freebsd/usr/share/man/man8 > /sbin/gcache -> /sbin/geom > =3D=3D=3D> sbin/geom/class/concat (install) > install -s -o root -g wheel -m 444 geom_concat.so > /usr/obj/_.mount.freebsd/usr/lib > install -o root -g wheel -m 444 gconcat.8.gz > /usr/obj/_.mount.freebsd/usr/share/man/man8 > ... >=20 > after boot see > root@r-pi:~ # gpart show > gpart: Unknown command: show. > usage: gpart help > gpart list [-a] [name ...] > gpart status [-ags] [name ...] > gpart load [-v] > gpart unload [-v] > root@r-pi:~ # cp /usr/lib/geom_* /lib/geom/ > root@r-pi:~ # gpart show > =3D> 63 7698369 mmcsd0 MBR (3.7G) > 63 34776 1 !12 [active] (17M) > 34839 1918286 2 freebsd (937M) > 1953125 5745307 - free - (2.7G) >=20 > =3D> 0 1918286 mmcsd0s2 BSD (937M) > 0 105 - free - (53K) > 105 1918080 1 freebsd-ufs (937M) > 1918185 101 - free - (51K) More breakage from projects/bmake. This should be fixed in theory, but = bapt/sjg can confirm if it=92s fixed. Cheers, --Apple-Mail=_D9BA9417-77E5-41FC-9D05-70010F67DC4C Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org iQEcBAEBCgAGBQJVfyAHAAoJEMZr5QU6S73epe8H/A6Cws3KJ6qMmiIhSBmINuwg 1b0NzJ4AJQvdZ8mJXlZ9NoxwQ7W2QOkgHPONKMYC+Bu1M7p2ZVfKFY7YoRk3DD1g ru4wBHNgQok/6a54fwjkS0ZPHTjuw/zPmSNueZeFaV6KMeGTPC5yt5C/I9TpTQKz vdzB1aOisu4glnOZUrUBW3G+CM8DcG0+OLsl20mFR6yat0OGVcR0/qv7FIe9gplP ueYrBL+EIzL5/yrA402ZrLNxm15F+56znuwoEBxIQoqwxs6KBwU9YpYrgOywdonZ y4GHvDohZVthg/b1ZE1B7Rv0Spz7JKmGta8gN4x8xvI7UocS9Or71pHh/WDFHV4= =X8Bq -----END PGP SIGNATURE----- --Apple-Mail=_D9BA9417-77E5-41FC-9D05-70010F67DC4C-- From owner-freebsd-arm@FreeBSD.ORG Mon Jun 15 18:59:32 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 423146E2; Mon, 15 Jun 2015 18:59:32 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-wg0-x232.google.com (mail-wg0-x232.google.com [IPv6:2a00:1450:400c:c00::232]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C763E666; Mon, 15 Jun 2015 18:59:31 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: by wgzl5 with SMTP id l5so51320757wgz.3; Mon, 15 Jun 2015 11:59:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=FY9t40EVO9LI5Kq/AW/6hrFqaEW9TLjO6q/HBhJ79is=; b=zV035I4W+C6fuVC2GsiNVAQLgF96jvQ4cy1n8uR7gja8XLAUsTsrq6mZwnlfm+AdTs Qh+cUP5Ceh02awes7vkEcgjzaoR0WX9Lj5ELxpGYkTttRLe/uvlRhxelYr/rh+H+V8nn jcxhZjJqWgTe6EFAct37JnJKPHbY0Uov/ypKc82feIUDT7mwJxeLQEF/cm9ZoOy9R79U CO+cCzKHykol4G4pZ0W6DLNnWs+Uw93DewiFvvIctFJ78AI29Aed5hb+tqc2rmTJTy5N uccjFg+foedOiSwvLT9M1/NQyQpmXd5Kf4JnKcZfiKIaL0Z9FRH9ilkrocUWw3ta465V vh1Q== X-Received: by 10.194.77.5 with SMTP id o5mr13415115wjw.140.1434394770338; Mon, 15 Jun 2015 11:59:30 -0700 (PDT) Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1]) by mx.google.com with ESMTPSA id hn7sm17153030wib.5.2015.06.15.11.59.28 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 15 Jun 2015 11:59:29 -0700 (PDT) Sender: Baptiste Daroussin Date: Mon, 15 Jun 2015 20:59:27 +0200 From: Baptiste Daroussin To: Garrett Cooper Cc: Andrey Fesenko , freebsd-current , "freebsd-arm@freebsd.org" , "Simon J. Gerraty" Subject: Re: geom classe's geom_*.so installed /usr/lib/ instead of /lib/geom (crochet build) Message-ID: <20150615185927.GM925@ivaldir.etoilebsd.net> References: <411E8E4A-162E-4F27-AA4E-C7E55AA4AF35@gmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="xTKfHyrFnSV9DG3y" Content-Disposition: inline In-Reply-To: <411E8E4A-162E-4F27-AA4E-C7E55AA4AF35@gmail.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2015 18:59:32 -0000 --xTKfHyrFnSV9DG3y Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jun 15, 2015 at 11:57:10AM -0700, Garrett Cooper wrote: > On Jun 15, 2015, at 4:40, Andrey Fesenko wrote: >=20 > > Hello, > > I'm build CURENT (r284408) for arm with crochet. > >=20 > > all geom lasse's geom_*.so installed /usr/lib/ instead of /lib/geom > >=20 > > /usr/obj/_.installworld.armv6.log > > ... > > =3D=3D=3D> sbin/geom/class/cache (install) > > install -s -o root -g wheel -m 444 geom_cache.so > > /usr/obj/_.mount.freebsd/usr/lib > > install -o root -g wheel -m 444 gcache.8.gz > > /usr/obj/_.mount.freebsd/usr/share/man/man8 > > /sbin/gcache -> /sbin/geom > > =3D=3D=3D> sbin/geom/class/concat (install) > > install -s -o root -g wheel -m 444 geom_concat.so > > /usr/obj/_.mount.freebsd/usr/lib > > install -o root -g wheel -m 444 gconcat.8.gz > > /usr/obj/_.mount.freebsd/usr/share/man/man8 > > ... > >=20 > > after boot see > > root@r-pi:~ # gpart show > > gpart: Unknown command: show. > > usage: gpart help > > gpart list [-a] [name ...] > > gpart status [-ags] [name ...] > > gpart load [-v] > > gpart unload [-v] > > root@r-pi:~ # cp /usr/lib/geom_* /lib/geom/ > > root@r-pi:~ # gpart show > > =3D> 63 7698369 mmcsd0 MBR (3.7G) > > 63 34776 1 !12 [active] (17M) > > 34839 1918286 2 freebsd (937M) > > 1953125 5745307 - free - (2.7G) > >=20 > > =3D> 0 1918286 mmcsd0s2 BSD (937M) > > 0 105 - free - (53K) > > 105 1918080 1 freebsd-ufs (937M) > > 1918185 101 - free - (51K) >=20 > More breakage from projects/bmake. This should be fixed in theory, but ba= pt/sjg can confirm if it=E2=80=99s fixed. > Cheers, It is far from being fixed, I committed a workaround that should be enough = for this particular case, but it general it is not fixed. Best regards, Bapt --xTKfHyrFnSV9DG3y Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iEYEARECAAYFAlV/II8ACgkQ8kTtMUmk6Ex8TQCggVnD5hSxDYjxTpbW25SiqDJQ dZ8AoMBhv0xkrLev9bA/HuWRK04oF/uv =1fwQ -----END PGP SIGNATURE----- --xTKfHyrFnSV9DG3y-- From owner-freebsd-arm@FreeBSD.ORG Mon Jun 15 19:45:48 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D3266F9 for ; Mon, 15 Jun 2015 19:45:48 +0000 (UTC) (envelope-from perretcantonim@gmail.com) Received: from mail-wg0-x22a.google.com (mail-wg0-x22a.google.com [IPv6:2a00:1450:400c:c00::22a]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 81D5922B for ; Mon, 15 Jun 2015 19:45:48 +0000 (UTC) (envelope-from perretcantonim@gmail.com) Received: by wgbhy7 with SMTP id hy7so43845543wgb.2 for ; Mon, 15 Jun 2015 12:45:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=OiNceiOnKylgS7skA0+DGxKS0HrzgiGt34X3mDGDvOc=; b=CcmKoBcaypPJ8Orp06Yt0iE7dSAGqiMmDurSyWZiqK111hGYk1m0RiO1XFk04zNp83 xwhZ5HWl651eq0ZD4MKmy/yoMggh+fYgT1Dw2/40U2XlWZnvmvB5vUtAlloa7LebYVbJ lxJwl5F/NiqwW8AQYyQUJjwQVhyCFfBH0xh8knFtYWkfYFi+eE5zi3M9mxbSGDO9dwQ9 1iJEETeLzjaJv1p+2vmiIhrg9OT1mKk6M1qzL/G2g2/qPL2awvbtSV85kw947MmujlXt +uP+zlYdu1fnbqbmBTWspbf3FCXTB2aBHqE+EVBc/BwWuhbllO/pRRZqKg2EVLEnW62A OsBw== MIME-Version: 1.0 X-Received: by 10.194.248.168 with SMTP id yn8mr32887238wjc.7.1434397546761; Mon, 15 Jun 2015 12:45:46 -0700 (PDT) Received: by 10.27.179.3 with HTTP; Mon, 15 Jun 2015 12:45:46 -0700 (PDT) Date: Mon, 15 Jun 2015 16:45:46 -0300 Message-ID: Subject: There have been some big changes in Newbus in CURRENT? From: =?UTF-8?Q?Mat=C3=ADas_Perret_Cantoni?= To: freebsd-arm@freebsd.org Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2015 19:45:48 -0000 Hi! First of all sorry if this question is too silly, but there have been some big changes in Newbus in CURRENT? I ask this because I was using a "custom" DTS and a driver that I made, happily on a FreeBSD-10.1.0 image I built, on the ZedBoard platform. But now I created a new FreeBSD image with CURRENT; I use the exact same DTS and driver, but the probe() routine of my driver is never called when I load it; so my driver never gets attached to my device. Thanks in advance for your patience! Matias PS: Just in case, here are some details: * The system is: FreeBSD zedboard 11.0-CURRENT FreeBSD 11.0-CURRENT #1 r283900: Thu Jun 4 07:44:32 ART 2015 root@efn.uncor:/usr/obj/arm.armv6/usr/src/sys/ZEDBOARD arm * This is how I built the image: cd /usr/src svn checkout http://svn0.us-west.freebsd.org/base/head svn update make TARGET_ARCH=armv6 KERNCONF=ZEDBOARD buildworld buildkernel * This is the drivers probe routine: static int p3_probe(device_t dev) { device_printf(dev, "Probe routine"); if (!ofw_bus_is_compatible(dev, "zedBSD,p3")){ device_printf(dev, "Not compatible!"); return (ENXIO); } device_set_desc(dev, "p3_device"); device_printf(dev, "Compatible!"); return(BUS_PROBE_SPECIFIC); } * This the DTS node: /* AXI General purpose #0 from PL: */ M_AXI_GP0@40000000 { device_type = "soc"; compatible = "simple-bus"; #address-cells = <1>; #size-cells = <1>; ranges = <0x0 0x40000000 0x3fffffff>; /* MY NODE */ p3: p3@1200000 { compatible = "zedBSD,p3"; reg = <0x1200000 0xFFFF>, <0x27000000 0xFFFF>; interrupts = <61>; interrupt-parent = <&GIC>; }; }; * And I load the driver with: kldload ./p3.ko From owner-freebsd-arm@FreeBSD.ORG Mon Jun 15 19:54:56 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CC271576; Mon, 15 Jun 2015 19:54:56 +0000 (UTC) (envelope-from jenkins-admin@freebsd.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id BB1696A3; Mon, 15 Jun 2015 19:54:56 +0000 (UTC) (envelope-from jenkins-admin@freebsd.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 09CD8EB3; Mon, 15 Jun 2015 19:54:57 +0000 (UTC) Date: Mon, 15 Jun 2015 19:54:56 +0000 (GMT) From: jenkins-admin@freebsd.org To: jenkins-admin@FreeBSD.org, freebsd-arm@freebsd.org Message-ID: <2050248865.10.1434398096986.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <692156571.3.1434383708402.JavaMail.jenkins@jenkins-9.freebsd.org> References: <692156571.3.1434383708402.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: $PROJECT_NAME - Build #$BUILD_NUMBER - $BUILD_STATUS MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_arm64 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2015 19:54:56 -0000 $PROJECT_NAME - Build #$BUILD_NUMBER - $BUILD_STATUS: Check console output at $BUILD_URL to view the results. From owner-freebsd-arm@FreeBSD.ORG Mon Jun 15 20:26:20 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B1353546; Mon, 15 Jun 2015 20:26:20 +0000 (UTC) (envelope-from sjg@juniper.net) Received: from na01-by2-obe.outbound.protection.outlook.com (mail-by2on0128.outbound.protection.outlook.com [207.46.100.128]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (Client CN "mail.protection.outlook.com", Issuer "MSIT Machine Auth CA 2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6D9A0E32; Mon, 15 Jun 2015 20:26:19 +0000 (UTC) (envelope-from sjg@juniper.net) Received: from BY2PR05CA050.namprd05.prod.outlook.com (10.141.250.40) by BY2PR05MB711.namprd05.prod.outlook.com (10.141.222.149) with Microsoft SMTP Server (TLS) id 15.1.184.17; Mon, 15 Jun 2015 20:26:18 +0000 Received: from BN1BFFO11FD038.protection.gbl (2a01:111:f400:7c10::1:171) by BY2PR05CA050.outlook.office365.com (2a01:111:e400:2c5f::40) with Microsoft SMTP Server (TLS) id 15.1.190.14 via Frontend Transport; Mon, 15 Jun 2015 20:26:18 +0000 Authentication-Results: spf=softfail (sender IP is 66.129.239.19) smtp.mailfrom=juniper.net; freebsd.org; dkim=none (message not signed) header.d=none; Received-SPF: SoftFail (protection.outlook.com: domain of transitioning juniper.net discourages use of 66.129.239.19 as permitted sender) Received: from P-EMF02-SAC.jnpr.net (66.129.239.19) by BN1BFFO11FD038.mail.protection.outlook.com (10.58.144.101) with Microsoft SMTP Server (TLS) id 15.1.190.9 via Frontend Transport; Mon, 15 Jun 2015 20:26:17 +0000 Received: from magenta.juniper.net (172.17.27.123) by P-EMF02-SAC.jnpr.net (172.24.192.21) with Microsoft SMTP Server (TLS) id 14.3.146.0; Mon, 15 Jun 2015 13:26:16 -0700 Received: from chaos.jnpr.net (chaos.jnpr.net [172.21.16.28]) by magenta.juniper.net (8.11.3/8.11.3) with ESMTP id t5FKQGD38865; Mon, 15 Jun 2015 13:26:16 -0700 (PDT) (envelope-from sjg@juniper.net) Received: from chaos (localhost [127.0.0.1]) by chaos.jnpr.net (Postfix) with ESMTP id D716D580A3; Mon, 15 Jun 2015 13:26:15 -0700 (PDT) To: Garrett Cooper CC: Andrey Fesenko , freebsd-current , "freebsd-arm@freebsd.org" , Baptiste Daroussin Subject: Re: geom classe's geom_*.so installed /usr/lib/ instead of /lib/geom (crochet build) In-Reply-To: <411E8E4A-162E-4F27-AA4E-C7E55AA4AF35@gmail.com> References: <411E8E4A-162E-4F27-AA4E-C7E55AA4AF35@gmail.com> Comments: In-reply-to: Garrett Cooper message dated "Mon, 15 Jun 2015 11:57:10 -0700." From: "Simon J. Gerraty" X-Mailer: MH-E 8.0.3; nmh 1.3; GNU Emacs 22.3.1 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Date: Mon, 15 Jun 2015 13:26:15 -0700 Message-ID: <17139.1434399975@chaos> X-EOPAttributedMessage: 0 X-Microsoft-Exchange-Diagnostics: 1; BN1BFFO11FD038; 1:Q6ARRD+SCZ+BfvwZSqS9ZPmPr4fJROasTvNTwnPNtAkQ/ltXnIOmm2qjIUjOw7yOzeVePoKYL9QCGq3K0XjgmdxnMGklYak1OOnTAfCvaWc8hy97+Ek8V+VhKrhpT9WUbiHlcwPudQQppcnKTPzWFQNytzVgmI8DDi9jk3XRMSfmPt5d7f29SvwhhBdPyOvLArQFVLPb3IgsyNL9Lqc5wu5n/d0hWw/dgxkn7yHFGrsTl6OJxPpflyrKiTyfuBaWgcfmyQi12pQYBIyUwlrsVgZ5japBFb4PHicSq1TxnXFajrtgZ4MWMcWdB1HtnzIXinPG6UTSQzSckTX06vA4CQ== X-Forefront-Antispam-Report: CIP:66.129.239.19; CTRY:US; IPV:NLI; EFV:NLI; SFV:NSPM; SFS:(10019020)(6009001)(189002)(199003)(24454002)(76506005)(57986006)(106466001)(50466002)(33716001)(558084003)(19580395003)(19580405001)(86362001)(47776003)(105596002)(62966003)(110136002)(5001920100001)(77096005)(76176999)(77156002)(2950100001)(50986999)(50226001)(5001960100002)(46102003)(92566002)(1411001)(87936001)(23676002)(189998001)(117636001)(6806004)(42262002)(62816006); DIR:OUT; SFP:1102; SCL:1; SRVR:BY2PR05MB711; H:P-EMF02-SAC.jnpr.net; FPR:; SPF:SoftFail; MLV:sfv; MX:1; A:1; LANG:en; X-Microsoft-Antispam: UriScan:;BCL:0;PCL:0;RULEID:;SRVR:BY2PR05MB711; X-Microsoft-Antispam-PRVS: X-Exchange-Antispam-Report-Test: UriScan:; X-Exchange-Antispam-Report-CFA-Test: BCL:0; PCL:0; RULEID:(601004)(5005006)(520003)(3002001); SRVR:BY2PR05MB711; BCL:0; PCL:0; RULEID:; SRVR:BY2PR05MB711; X-Forefront-PRVS: 0608DEDB67 X-OriginatorOrg: juniper.net X-MS-Exchange-CrossTenant-OriginalArrivalTime: 15 Jun 2015 20:26:17.7384 (UTC) X-MS-Exchange-CrossTenant-Id: bea78b3c-4cdb-4130-854a-1d193232e5f4 X-MS-Exchange-CrossTenant-OriginalAttributedTenantConnectingIp: TenantId=bea78b3c-4cdb-4130-854a-1d193232e5f4; Ip=[66.129.239.19]; Helo=[P-EMF02-SAC.jnpr.net] X-MS-Exchange-CrossTenant-FromEntityHeader: HybridOnPrem X-MS-Exchange-Transport-CrossTenantHeadersStamped: BY2PR05MB711 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2015 20:26:20 -0000 Garrett Cooper wrote: > More breakage from projects/bmake. This should be fixed in theory, but > bapt/sjg can confirm if it=E2=80=99s fixed. Cheers, Yes, sorry everyone - took a bit to identify the root cause (ie. specific line) *Should* be fixed now. From owner-freebsd-arm@FreeBSD.ORG Mon Jun 15 21:54:55 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C9BE5374; Mon, 15 Jun 2015 21:54:55 +0000 (UTC) (envelope-from jenkins-admin@freebsd.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id B8B66952; Mon, 15 Jun 2015 21:54:55 +0000 (UTC) (envelope-from jenkins-admin@freebsd.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id F0476ED0; Mon, 15 Jun 2015 21:54:55 +0000 (UTC) Date: Mon, 15 Jun 2015 21:54:55 +0000 (GMT) From: jenkins-admin@freebsd.org To: jenkins-admin@FreeBSD.org, freebsd-arm@freebsd.org Message-ID: <298948155.15.1434405295564.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <2050248865.10.1434398096986.JavaMail.jenkins@jenkins-9.freebsd.org> References: <2050248865.10.1434398096986.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: $PROJECT_NAME - Build #$BUILD_NUMBER - $BUILD_STATUS MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_arm64 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2015 21:54:55 -0000 $PROJECT_NAME - Build #$BUILD_NUMBER - $BUILD_STATUS: Check console output at $BUILD_URL to view the results. From owner-freebsd-arm@FreeBSD.ORG Mon Jun 15 23:54:50 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2391F392; Mon, 15 Jun 2015 23:54:50 +0000 (UTC) (envelope-from jenkins-admin@freebsd.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 12DCF9D2; Mon, 15 Jun 2015 23:54:50 +0000 (UTC) (envelope-from jenkins-admin@freebsd.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 30548F3D; Mon, 15 Jun 2015 23:54:50 +0000 (UTC) Date: Mon, 15 Jun 2015 23:54:49 +0000 (GMT) From: jenkins-admin@freebsd.org To: jenkins-admin@FreeBSD.org, freebsd-arm@freebsd.org Message-ID: <1320731026.19.1434412490005.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <298948155.15.1434405295564.JavaMail.jenkins@jenkins-9.freebsd.org> References: <298948155.15.1434405295564.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: $PROJECT_NAME - Build #$BUILD_NUMBER - $BUILD_STATUS MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_arm64 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2015 23:54:50 -0000 $PROJECT_NAME - Build #$BUILD_NUMBER - $BUILD_STATUS: Check console output at $BUILD_URL to view the results. From owner-freebsd-arm@FreeBSD.ORG Tue Jun 16 03:54:44 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B466FBB1; Tue, 16 Jun 2015 03:54:44 +0000 (UTC) (envelope-from jenkins-admin@freebsd.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id A3524AA3; Tue, 16 Jun 2015 03:54:44 +0000 (UTC) (envelope-from jenkins-admin@freebsd.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 4D88EFA1; Tue, 16 Jun 2015 03:54:43 +0000 (UTC) Date: Tue, 16 Jun 2015 03:54:40 +0000 (GMT) From: jenkins-admin@freebsd.org To: jenkins-admin@FreeBSD.org, freebsd-arm@freebsd.org Message-ID: <946993110.23.1434426880108.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1320731026.19.1434412490005.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1320731026.19.1434412490005.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: $PROJECT_NAME - Build #$BUILD_NUMBER - $BUILD_STATUS MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_arm64 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Jun 2015 03:54:44 -0000 $PROJECT_NAME - Build #$BUILD_NUMBER - $BUILD_STATUS: Check console output at $BUILD_URL to view the results. From owner-freebsd-arm@FreeBSD.ORG Tue Jun 16 07:56:16 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 734045A7; Tue, 16 Jun 2015 07:56:16 +0000 (UTC) (envelope-from jenkins-admin@freebsd.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 62382D2C; Tue, 16 Jun 2015 07:56:16 +0000 (UTC) (envelope-from jenkins-admin@freebsd.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 6C16C88; Tue, 16 Jun 2015 07:56:16 +0000 (UTC) Date: Tue, 16 Jun 2015 07:56:15 +0000 (GMT) From: jenkins-admin@freebsd.org To: jenkins-admin@FreeBSD.org, freebsd-arm@freebsd.org Message-ID: <1943667876.1.1434441375944.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <946993110.23.1434426880108.JavaMail.jenkins@jenkins-9.freebsd.org> References: <946993110.23.1434426880108.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_arm64 - Build #354 - Still Failing MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_arm64 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Jun 2015 07:56:16 -0000 FreeBSD_HEAD_arm64 - Build #354 - Still Failing: Check console output at https://jenkins.freebsd.org/job/FreeBSD_HEAD_arm64/354/ to view the results. From owner-freebsd-arm@FreeBSD.ORG Tue Jun 16 10:51:07 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 08FE991F; Tue, 16 Jun 2015 10:51:07 +0000 (UTC) (envelope-from jenkins-admin@freebsd.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id EC742DD2; Tue, 16 Jun 2015 10:51:06 +0000 (UTC) (envelope-from jenkins-admin@freebsd.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 27FEAC5; Tue, 16 Jun 2015 10:51:07 +0000 (UTC) Date: Tue, 16 Jun 2015 10:51:06 +0000 (GMT) From: jenkins-admin@freebsd.org To: mjg@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-arm@freebsd.org Message-ID: <1495217847.5.1434451867084.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1943667876.1.1434441375944.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1943667876.1.1434441375944.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_arm64 - Build #355 - Fixed MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_arm64 X-Jenkins-Result: SUCCESS Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Jun 2015 10:51:07 -0000 FreeBSD_HEAD_arm64 - Build #355 - Fixed: Check console output at https://jenkins.freebsd.org/job/FreeBSD_HEAD_arm64/355/ to view the results. From owner-freebsd-arm@FreeBSD.ORG Tue Jun 16 19:49:47 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2D2E92D1 for ; Tue, 16 Jun 2015 19:49:47 +0000 (UTC) (envelope-from martin.galvan@tallertechnologies.com) Received: from mail-lb0-f173.google.com (mail-lb0-f173.google.com [209.85.217.173]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D49262E5 for ; Tue, 16 Jun 2015 19:49:46 +0000 (UTC) (envelope-from martin.galvan@tallertechnologies.com) Received: by lbbti3 with SMTP id ti3so17831053lbb.1 for ; Tue, 16 Jun 2015 12:49:38 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:from:date:message-id:subject:to :content-type:content-transfer-encoding; bh=bK/SExg5yTkkDa6AOfsvAjc/ldTXvgvRc2WpWum++lU=; b=FfZCWBDa4N8eXs9ulyU45iVHknbrPnp8owBoxof6ybQ22XnlixJt6Lzd6dxh54mP8P LrKFj+IQ+0KtEQ84Bb6WXj1cezbzYtJcRhu1FpCqjKSYqBOTsNekKy0B47XI6p3uj+Yj fULRcZHa9bESFc7aL2IBND4jqsXTQYAThy5bBfdgU/JxirsLX4OXjCsSOd45X7d0M06H m4so9hGZgZtU9XYN8bgfIEGpTbD+7Zee+iEtfk+vEYlgPWV2TZiPdHyL0D7EZgGrf9Oi HhHHyJ2npUM3XXYNBbUytmYvIUTcMg1Dx07RYSDaVHjq55u7rfWORjBppWiKmtztFYSs uJQw== X-Gm-Message-State: ALoCoQn1au5048rKssjgjHEfXk0oJSmff8ZjMkCwaiECI2KU15uWldWGYtVbLdCOwDdiJOykgZ8z X-Received: by 10.152.18.199 with SMTP id y7mr3601092lad.39.1434484178641; Tue, 16 Jun 2015 12:49:38 -0700 (PDT) MIME-Version: 1.0 Received: by 10.112.144.200 with HTTP; Tue, 16 Jun 2015 12:48:58 -0700 (PDT) From: Martin Galvan Date: Tue, 16 Jun 2015 16:48:58 -0300 Message-ID: Subject: Mentor Graphics USB OTG Controller support To: freebsd-drivers@freebsd.org, freebsd-arm@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Jun 2015 19:49:47 -0000 Hi there! I'm looking at the existing support for using the Beaglebone Black board as a USB host. The board is based on an AM335x SOC, whose USB module is built around the Mentor musbmhdrc USB OTG controller. I looked at the corresponding driver (sys/dev/usb/controller/musb_otg.c) and saw a comment indicating that the current implementation only supports Device Side Mode, while the commit history (and the code itself) shows that there's at least a basic Host side support. Has anyone tested this driver and knows whether the host side is functional= ? --=20 Martin Galvan Software Engineer Taller Technologies Argentina San Lorenzo 47, 3rd Floor, Office 5 C=C3=B3rdoba, Argentina Phone: 54 351 4217888 / +54 351 4218211 From owner-freebsd-arm@FreeBSD.ORG Wed Jun 17 05:27:23 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4E99D124 for ; Wed, 17 Jun 2015 05:27:23 +0000 (UTC) (envelope-from jau789@gmail.com) Received: from mail-lb0-x22d.google.com (mail-lb0-x22d.google.com [IPv6:2a00:1450:4010:c04::22d]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C7B971DC for ; Wed, 17 Jun 2015 05:27:22 +0000 (UTC) (envelope-from jau789@gmail.com) Received: by lbbwc1 with SMTP id wc1so23985345lbb.2 for ; Tue, 16 Jun 2015 22:27:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=in-reply-to:references:from:subject:to:cc:content-type :content-transfer-encoding:date:message-id:mime-version; bh=scaEs2TCHwf9jSoHZ5hvQ4hOt9fFhbqNroOrQ8Wrw9k=; b=jHy1pDUFY78yoaYaDmSlXq6emnChvKBbRYEn4PR4u+q+U/sGPiyiX9CdBE9PyTNGYW dhMjnU2pyJrZ5lzgQ3l9/qo3wyzdbZf9h7g+vbJbDES8wd2YoF1lEIJU/WLwPtxVpR6T 4lthINpxnYfn94iahPbZqmnXWmFV2diJv/uKc6URyTnaS+nXteerGXTgeIrYfJcH3sd/ v7yXa8Cr1ME7wKABuztrsrfJh61Qkfh2/uzIoq16WZ9r/JiVVgT4eSBWaRQ4xcNehlJB VEDbNPhMQyMOyLCXS37sjO6zHpmLAJAsO7hv6j9eVg2rfT8vizymeGQuZDLRb9wNyAT0 jH4Q== X-Received: by 10.112.218.67 with SMTP id pe3mr5604041lbc.53.1434518840318; Tue, 16 Jun 2015 22:27:20 -0700 (PDT) Received: from [127.0.0.1] (85-76-98-13-nat.elisa-mobile.fi. [85.76.98.13]) by mx.google.com with ESMTPSA id g8sm708603laf.24.2015.06.16.22.27.19 (version=TLSv1 cipher=RC4-SHA bits=128/128); Tue, 16 Jun 2015 22:27:19 -0700 (PDT) In-Reply-To: <7F916FD0-7072-47B3-BBC5-A313CA731F81@bsdimp.com> References: <557EAE2F.3020307@gmail.com> <7F916FD0-7072-47B3-BBC5-A313CA731F81@bsdimp.com> From: jau789@gmail.com Subject: Re: RPI2 hanging during boot To: Warner Losh Cc: freebsd-arm@FreeBSD.org Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Date: Wed, 17 Jun 2015 05:27:12 +0000 Message-ID: MIME-Version: 1.0 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Jun 2015 05:27:23 -0000 It seems that the boot time freeze was in no way related to the build itself going somehow wrong. The build after which the problem started was done on the rpi2 itself. That again needed some extra swap space which I had added manually using a file, mdcontrol, and swapon. Before reboot I apparently forgot to release that extra swap space using swapoff and mdcontrol. At the time when this happened I did not think much of it because the same mistake had happened before without corrupting the root file system header. This time the corruption happened. The confusing thing is that fsck run on an amd64 system did not notice the problem. It simply neither complained about it nor fixed it. Mounting the fs on another system also worked. The only thing which did not work was mounting it as the root fs at boot time. And even then there was no complaints about what was going wrong. My initial attempts to fix the hanging boot problem were made by crossbuilding the system on an amd64 system and reinstalling on top of the existing file system on the SD card. Since the fs was mountable on another system but not bootable on arm, there were no signs of trouble indicated on amd64. The boot persistently failed, though. When I then decided to take the hard way backing up all the stuff I needed from the old and now faulty file system on the SD card and created a complete fresh new image with a completely new fresh ufs2 on it the boot worked again just fine. There was one extra symptom of some silent file system corruption, though. I just did not notice it until very late. Just before showing the loaded kernel modules ubldr showed a one line message, a warning about not being able to write the file system. This was a second indirect indication of the root file systems header having become somehow corrupt, though, fsck and normal mount as other than root fs paid no attention to the fact. So, it seems that if a swap area, espcially one on an md device, is not explicitly released before shutdown, there is a risk that something might be corrupted on the mounted file systems. Apparently the kernel does not do anything to properly release the swap spaces before shutdown. As a side effect this might also explain the persistent rumor that some FreeBSD users see these odd, occasional ufs corruptions on a few month intervals. When the ufs is fixed the same computer then usually keeps on going happily for a long time until the apparently random corruption hits again. Most users probably still have a swap space by default. Maybe the same problem with unreleased swap space which I suspect as the culprit to my unbootable ufs2 on an SD card applies to any and all swap spaces, even those mentioned in the fstab. --jau On 15/06/2015 20:39 Warner Losh wrote: > On Jun 15, 2015, at 4:51 AM, Jukka Ukkonen wrote: > > > Has anyone else seen this happening after rebuilding the system > for an RPI2 from 11.x/head source during the last few days? > I think I noticed this on Friday, the 12th. > > The boot simply freezes after having said... > > Trying to mount root from ufs:/dev/mmcsd0s2a []... > warning: no time-of-day clock registered, system time will not be set > accurately > > Then nothing happens, no more messages, no progress. > I am quite positive that at least the source code of the > previous weekend (June 5th-7th) still booted just fine on > my RPI2 when I had rebuilt the system. > > For a long there were no problems at all during the boot, and > suddenly these odd hangs began a few days ago when I rebuilt > the system from the latest source. Since then I have updated > my local source code from the svn repository a few times and > tried rebuilding again. The boot time freeze still remains, > though. The latest attempt was done using svn revision 284408. > > I hope this rings some bells to somebody. The latest snapshot from the first few days of the month works for me, which makes sense because I think it was from June 6th. Maybe you could do a binary search to see where booting fails. There=E2=80=99s only 9 days in that window, and only about a thousand commits. Since it is a hang in the handoff to user land, I think you could easily just compile the kernel to see. I also was able to boot on RPI2 a kernel I built at BSDcan from sources from June 5th. I=E2=80=99ll update to see if I see this too. Warner From owner-freebsd-arm@FreeBSD.ORG Wed Jun 17 06:44:14 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BC53EF20 for ; Wed, 17 Jun 2015 06:44:14 +0000 (UTC) (envelope-from tim@kientzle.com) Received: from monday.kientzle.com (kientzle.com [142.254.26.11]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7702887B for ; Wed, 17 Jun 2015 06:44:13 +0000 (UTC) (envelope-from tim@kientzle.com) Received: (from root@localhost) by monday.kientzle.com (8.14.4/8.14.4) id t5H6i6OO076808; Wed, 17 Jun 2015 06:44:06 GMT (envelope-from tim@kientzle.com) Received: from [192.168.2.100] (192.168.1.101 [192.168.1.101]) by kientzle.com with SMTP id p6qziywk64g8726xtdes8rgeyn; Wed, 17 Jun 2015 06:44:06 +0000 (UTC) (envelope-from tim@kientzle.com) Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2098\)) Subject: Re: RPI2 hanging during boot From: Tim Kientzle In-Reply-To: Date: Tue, 16 Jun 2015 23:44:00 -0700 Cc: Warner Losh , freebsd-arm Message-Id: <80B5FC88-CA76-4A0D-AED5-15B5BA89607A@kientzle.com> References: <557EAE2F.3020307@gmail.com> <7F916FD0-7072-47B3-BBC5-A313CA731F81@bsdimp.com> To: jau789@gmail.com X-Mailer: Apple Mail (2.2098) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Jun 2015 06:44:14 -0000 > On Jun 16, 2015, at 10:27 PM, jau789@gmail.com wrote: > > Maybe > the same problem with unreleased swap space which I suspect > as the culprit to my unbootable ufs2 on an SD card applies to > any and all swap spaces, even those mentioned in the fstab. Swap spaces mentioned in the fstab are automatically released on shutdown by /etc/rc.d/swaplate. Tim From owner-freebsd-arm@FreeBSD.ORG Wed Jun 17 06:50:31 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F37DEE1; Wed, 17 Jun 2015 06:50:30 +0000 (UTC) (envelope-from hps@selasky.org) Received: from mail.turbocat.net (mail.turbocat.net [IPv6:2a01:4f8:d16:4514::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B758C9D8; Wed, 17 Jun 2015 06:50:30 +0000 (UTC) (envelope-from hps@selasky.org) Received: from laptop015.home.selasky.org (cm-176.74.213.204.customer.telag.net [176.74.213.204]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.turbocat.net (Postfix) with ESMTPSA id 750D01FE023; Wed, 17 Jun 2015 08:50:26 +0200 (CEST) Message-ID: <558118EA.1000100@selasky.org> Date: Wed, 17 Jun 2015 08:51:22 +0200 From: Hans Petter Selasky User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: Martin Galvan , freebsd-drivers@freebsd.org, freebsd-arm@freebsd.org Subject: Re: Mentor Graphics USB OTG Controller support References: In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Jun 2015 06:50:31 -0000 On 06/16/15 21:48, Martin Galvan wrote: > Hi there! I'm looking at the existing support for using the Beaglebone > Black board as a USB host. The board is based on an AM335x SOC, whose > USB module is built around the Mentor musbmhdrc USB OTG controller. I > looked at the corresponding driver (sys/dev/usb/controller/musb_otg.c) > and saw a comment indicating that the current implementation only > supports Device Side Mode, while the commit history (and the code > itself) shows that there's at least a basic Host side support. > > Has anyone tested this driver and knows whether the host side is functional? > Hi, The driver supports both host and device, though there might be some problems supporting multiple devices due to a very limited number of endpoints available. --HPS From owner-freebsd-arm@FreeBSD.ORG Wed Jun 17 12:29:22 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7807BA93 for ; Wed, 17 Jun 2015 12:29:22 +0000 (UTC) (envelope-from martin.galvan@tallertechnologies.com) Received: from mail-lb0-f173.google.com (mail-lb0-f173.google.com [209.85.217.173]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 076648E3 for ; Wed, 17 Jun 2015 12:29:21 +0000 (UTC) (envelope-from martin.galvan@tallertechnologies.com) Received: by lbbwc1 with SMTP id wc1so30608774lbb.2 for ; Wed, 17 Jun 2015 05:29:19 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc:content-type; bh=/9LCYka5+2SMtDYPYMi8igyKKtCd6+4Z19UbsPcDihE=; b=P5YQMPbuKqGzurFI7has0hRRHCZDH/tCIeYVCfw5j8Lp56Z8ZrH/CY1gP244nciFFR NXN2m5V+UC+euZx6cLzIRtKE7Zva60wHIMSXRLIncinqrraujv7Nu640JeYF51qKQM1n qYw/2ZrH5PuGr2lKavIU8RZ5Xyl+AVFVx+tYo34B/izZ/nxfTfgA9FSaY2EBHNe0mMl6 E9NMqi77j6FsIOKG+zNcDby1Ekd0SkwggW79sGtrogFTK1fbF6csftFAKVwAvmO77WIr 8co84m40fissrXzJWztt/ymBhKVI0+9v4/I1lF1z5UixoZzyuzWqkO0Q2IJVENU5gX65 ADig== X-Gm-Message-State: ALoCoQnYe76VItSUDL8gL/0jzcxFUOAnEXHCEKTwy1i7Wne6MgVgIwncWhrrD1cm/U01h9FXb1w7 X-Received: by 10.112.40.99 with SMTP id w3mr7721794lbk.55.1434544159239; Wed, 17 Jun 2015 05:29:19 -0700 (PDT) MIME-Version: 1.0 Received: by 10.112.144.200 with HTTP; Wed, 17 Jun 2015 05:28:38 -0700 (PDT) In-Reply-To: <558118EA.1000100@selasky.org> References: <558118EA.1000100@selasky.org> From: Martin Galvan Date: Wed, 17 Jun 2015 09:28:38 -0300 Message-ID: Subject: Re: Mentor Graphics USB OTG Controller support To: Hans Petter Selasky Cc: freebsd-drivers@freebsd.org, freebsd-arm@freebsd.org Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Jun 2015 12:29:22 -0000 On Wed, Jun 17, 2015 at 3:51 AM, Hans Petter Selasky wrote: > Hi, > > The driver supports both host and device, though there might be some > problems supporting multiple devices due to a very limited number of > endpoints available. > I see. Thanks a lot! From owner-freebsd-arm@FreeBSD.ORG Wed Jun 17 12:51:17 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E2486572 for ; Wed, 17 Jun 2015 12:51:17 +0000 (UTC) (envelope-from jau789@gmail.com) Received: from mail-la0-x234.google.com (mail-la0-x234.google.com [IPv6:2a00:1450:4010:c03::234]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 52F28842 for ; Wed, 17 Jun 2015 12:51:17 +0000 (UTC) (envelope-from jau789@gmail.com) Received: by laka10 with SMTP id a10so32309864lak.0 for ; Wed, 17 Jun 2015 05:51:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=X7epVub1uVEiNjnkJRTnUXpOn0NCx+DIyJCeJZ6jQdI=; b=KeqAZKG4xef8d8hhKa5GiHrbvIpaL0oiGwPr/41PRUrtR/9thNKPkSEKsyIY34ZPEt MIBSdM4Jpz+87oEK5s7EaokEicZCVCr6euexvflYB6ny8A9NJxvYJpsDrOdlsmlNLD+D XPd5iLa9mI/QjYZx9y8XYtm7TvAkCu89ZwjChPwOXIG6/7/iqcP74Hr4cHgo9TLP1eXD ALRuqyTzDs5cv+wO7JczhhfA+GyPUHrExnOwH2NxFLvn+PlvWZ/qTUqCsfbl/wnLAmVe TZCxv9sIH6TeJ3UwIz/Kwv4atEebAhAqtVWsb11v4pwjnVhNTFuV8mPa2Ki+fOAP7GjI 7N/Q== X-Received: by 10.112.72.2 with SMTP id z2mr6208117lbu.39.1434527008702; Wed, 17 Jun 2015 00:43:28 -0700 (PDT) Received: from [192.168.1.193] (xdsl-205-163.nblnetworks.fi. [83.145.205.163]) by mx.google.com with ESMTPSA id fj10sm782930lbc.29.2015.06.17.00.43.28 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 17 Jun 2015 00:43:28 -0700 (PDT) Mime-Version: 1.0 (1.0) Subject: Re: RPI2 hanging during boot From: Jukka Ukkonen X-Mailer: iPad Mail (12F69) In-Reply-To: <80B5FC88-CA76-4A0D-AED5-15B5BA89607A@kientzle.com> Date: Wed, 17 Jun 2015 10:43:27 +0300 Cc: Warner Losh , freebsd-arm Message-Id: <4DC4E9D7-3751-4A6F-8727-61A6DB81FA9F@gmail.com> References: <557EAE2F.3020307@gmail.com> <7F916FD0-7072-47B3-BBC5-A313CA731F81@bsdimp.com> <80B5FC88-CA76-4A0D-AED5-15B5BA89607A@kientzle.com> To: Tim Kientzle Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Jun 2015 12:51:18 -0000 Right, and if swaplate fails for whatever reason to release some existing swap area before releasing the file systems and devices, what will happen then? Esp. devices living on top of file systems, like md, may create a kind of a chicken and egg problem. The proper means from my point of view would be the kernel itself flushing the swap areas and revoking them before letting go of the underlying device or file system. Maybe the kernel even does this and I simply failed to notice where it is done. I don't know really. I am just beating the bushes here, because it would take quite some time for me to read through the source in detail enough to convince myself about what will happen and when, where, and why. --jau Sent from my iPad > On 17 Jun 2015, at 09:44, Tim Kientzle wrote: > > >> On Jun 16, 2015, at 10:27 PM, jau789@gmail.com wrote: >> >> Maybe >> the same problem with unreleased swap space which I suspect >> as the culprit to my unbootable ufs2 on an SD card applies to >> any and all swap spaces, even those mentioned in the fstab. > > Swap spaces mentioned in the fstab are automatically > released on shutdown by /etc/rc.d/swaplate. > > Tim > From owner-freebsd-arm@FreeBSD.ORG Wed Jun 17 18:31:01 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2A495BCD for ; Wed, 17 Jun 2015 18:31:01 +0000 (UTC) (envelope-from usenet@ulrich-grey.de) Received: from mo6-p00-ob.smtp.rzone.de (mo6-p00-ob.smtp.rzone.de [IPv6:2a01:238:20a:202:5300::3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.smtp.rzone.de", Issuer "TeleSec ServerPass DE-2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B6A01F88 for ; Wed, 17 Jun 2015 18:31:00 +0000 (UTC) (envelope-from usenet@ulrich-grey.de) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; t=1434565853; l=278; s=domk; d=ulrich-grey.de; h=Content-Transfer-Encoding:Content-Type:Mime-Version:Subject:To:From: Date; bh=6+9dhEYp/SvgsFWwRbJ7vtPWKZ1GyTkAd8tSFeV1EG0=; b=dsP8eUNRpmAfVkvpjNI8tXiRRoxOp0Lm1iK8XnEQM1Vy6g5tNEZfdNEteFqELFmisL1 AdiQosi3wVPmvcmoL0XXi2FryWHC3IFc3lfD9bb81YjVV+rdyhzr0ZhgFH/N70pQgOjXh w96HqKnt2mCgwfJCwk7uXXVu+ziBHQ6WyVU= X-RZG-AUTH: :OX8Be0W8W+pMC3rDLL/lo2xV/LZTbZkYhOcjg8suic3iYr/B8J9Lzp3TJg48vsv8ibAC X-RZG-CLASS-ID: mo00 Received: from quad (p548692CE.dip0.t-ipconnect.de [84.134.146.206]) by smtp.strato.de (RZmta 37.7 DYNA|AUTH) with ESMTPSA id C00a5fr5HIUqwpc (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (curve X9_62_prime256v1 with 256 ECDH bits, eq. 3072 bits RSA)) (Client did not present a certificate) for ; Wed, 17 Jun 2015 20:30:52 +0200 (CEST) Date: Wed, 17 Jun 2015 18:30:51 +0000 From: Ulrich Grey To: freebsd-arm@freebsd.org Subject: Wandboard-Quad: ffec freezes system Message-Id: <20150617183051.5580fcb969661808969ec17a@ulrich-grey.de> Organization: - X-Mailer: Sylpheed 3.4.2 (GTK+ 2.24.25; armv6-portbld-freebsd11.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Jun 2015 18:31:01 -0000 I have installed this snapshot image on my Wandboard-Quad: FreeBSD-11.0-CURRENT-arm-armv6-WANDBOARD-20150601-r283896.img If I use ffec (portsnap, ping ...), the system freezes immediately. Now I use an usb ethernet device (axge driver, ue0) and there are no problems. From owner-freebsd-arm@FreeBSD.ORG Wed Jun 17 21:03:00 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0204742C for ; Wed, 17 Jun 2015 21:03:00 +0000 (UTC) (envelope-from julien.grall.oss@gmail.com) Received: from mail-wi0-x22d.google.com (mail-wi0-x22d.google.com [IPv6:2a00:1450:400c:c05::22d]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 848FBDB5 for ; Wed, 17 Jun 2015 21:02:59 +0000 (UTC) (envelope-from julien.grall.oss@gmail.com) Received: by wiga1 with SMTP id a1so152083650wig.0 for ; Wed, 17 Jun 2015 14:02:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=6G4AaqkPPvYPKiJ5XuWHQ8pgdgBIFXVYnnxOQWU0jIc=; b=P3Jj5ThvhWqmmq/DFTK5BD9NfU/acL4Rbn7lRuwqyqfIWGlPVZYEq7XAGCW9+5HSYU gvTo5eFlhliSZ0NvJqw3ZkQZGxzB/rPG6a1867g7UElYPxxM/I910xSJg/ypaIXDgH8S yeyKNtBouGue+w7giRRyAMPVshQlYwpRhTIwQc/STvDil8+uqBfNUD6rCGFiL2Ek/yaF D3udldqw7h7X31m4L/Mb7/MmoM8BKK6U7O/IrICqg14zVcyFfPcsWKs6Yds/u76tRSdX LfxctoRvfB1DonD9ThdsWBsnMvJPsmyuVvLH56CBtxcmLQEWmbRrcTsuxlAJq8JBZumY FwYA== X-Received: by 10.180.79.227 with SMTP id m3mr7974054wix.71.1434574977916; Wed, 17 Jun 2015 14:02:57 -0700 (PDT) Received: from Juliens-MacBook-Pro.local (cpc11-cmbg15-2-0-cust27.5-4.cable.virginm.net. [86.30.245.28]) by mx.google.com with ESMTPSA id fa8sm9608099wib.14.2015.06.17.14.02.56 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 17 Jun 2015 14:02:56 -0700 (PDT) Message-ID: <5581E07E.4070206@gmail.com> Date: Wed, 17 Jun 2015 22:02:54 +0100 From: Julien Grall User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: Mihai Carabas , freebsd-arm@freebsd.org Subject: Re: porting freebsd-arm on FastModels - CortexA15 References: In-Reply-To: Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Jun 2015 21:03:00 -0000 Hi, On 15/06/2015 12:41, Mihai Carabas wrote: > On Sat, Jun 13, 2015 at 4:59 PM, Mihai Carabas > wrote: > I managed to pass through all these problems by fixing the DTS bugs (with > some workarounds) that appeared and enabling some register access from > secure-world in the boot-wrapper (the machine starts in SecureWorld and > must give access to all coprocessors for NormalWorld). > > I've managed to get to interrupt controller and timer initialization, and > it breaks at uart_ungrab [1]. Before this are some strange erros regarding > the interrupts-cells. I don't understand why it complains with that 3 value > (indeed the parent has size 3 for interrupts-cells, but the child node has > it's value at 1). Anyone has any idea why this is happening? I've got a similar issue with DTS shipped with ARMv8 Foundation model. Although they are not very important, FreeBSD can continue to boot without damage, but you won't be able to use the offending device. I'm still trying to figure out what's going on. But I expect to see an issue in the ofw driver as the DTS is valid. Regards, -- Julien Grall From owner-freebsd-arm@FreeBSD.ORG Wed Jun 17 21:23:46 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 201B9B24 for ; Wed, 17 Jun 2015 21:23:46 +0000 (UTC) (envelope-from mihai.carabas@gmail.com) Received: from mail-wi0-x22b.google.com (mail-wi0-x22b.google.com [IPv6:2a00:1450:400c:c05::22b]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AAC5231B for ; Wed, 17 Jun 2015 21:23:45 +0000 (UTC) (envelope-from mihai.carabas@gmail.com) Received: by wiga1 with SMTP id a1so152518099wig.0 for ; Wed, 17 Jun 2015 14:23:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=8s2cXHZetopHlbt679UbCB/qreXTbuXrajCUJl2XKCU=; b=D7gzHsAPO3yxUWMqSz3I00YIMtR99B/fhZcZphtA7vCrFoubDLwvsmzVh/zJ/OH+l1 9G7CmKb/Bdk67Enh7CwS133UDCK4C5RPTIVmBPv2Yll9/1PEq51pBleV695xtIHkdJRA cFHXECKfwFKUMPnz9nhILte25rzsr3c8x1Faxq08WziGtfKHTFkmPpppxQ5ouVK3nBYl ZGZEAS0nue2uOowIvsFGKIRrCWEBWb7DBPPnStO7ZmATTAkAVuws6HdO6MgAGMiKkYHa 4fJUTb/wW/lzBBYEc7nhLnwbIfss1k9Al5UZlw8czx6h4WkyAcwhlV6HVZ8FdNbmkCIa cBzw== MIME-Version: 1.0 X-Received: by 10.180.109.226 with SMTP id hv2mr21548817wib.64.1434576224302; Wed, 17 Jun 2015 14:23:44 -0700 (PDT) Received: by 10.28.21.134 with HTTP; Wed, 17 Jun 2015 14:23:43 -0700 (PDT) Received: by 10.28.21.134 with HTTP; Wed, 17 Jun 2015 14:23:43 -0700 (PDT) In-Reply-To: <5581E07E.4070206@gmail.com> References: <5581E07E.4070206@gmail.com> Date: Thu, 18 Jun 2015 00:23:43 +0300 Message-ID: Subject: Re: porting freebsd-arm on FastModels - CortexA15 From: Mihai Carabas To: Julien Grall Cc: freebsd-arm@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Jun 2015 21:23:46 -0000 On Jun 18, 2015 12:02 AM, "Julien Grall" wrote: > > Hi, > > > On 15/06/2015 12:41, Mihai Carabas wrote: >> >> On Sat, Jun 13, 2015 at 4:59 PM, Mihai Carabas >> wrote: >> I managed to pass through all these problems by fixing the DTS bugs (with >> some workarounds) that appeared and enabling some register access from >> secure-world in the boot-wrapper (the machine starts in SecureWorld and >> must give access to all coprocessors for NormalWorld). >> >> I've managed to get to interrupt controller and timer initialization, and >> it breaks at uart_ungrab [1]. Before this are some strange erros regarding >> the interrupts-cells. I don't understand why it complains with that 3 value >> (indeed the parent has size 3 for interrupts-cells, but the child node has >> it's value at 1). Anyone has any idea why this is happening? > > > I've got a similar issue with DTS shipped with ARMv8 Foundation model. Although they are not very important, FreeBSD can continue to boot without damage, but you won't be able to use the offending device. > > I'm still trying to figure out what's going on. But I expect to see an issue in the ofw driver as the DTS is valid. > I've dropped the complex DTS from ARM and I've created a simple one with only the cpu, interrupt controller, timer and console. That worked faster. Thanks, Mihai > Regards, > > -- > Julien Grall From owner-freebsd-arm@FreeBSD.ORG Thu Jun 18 06:52:17 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1A053D38 for ; Thu, 18 Jun 2015 06:52:17 +0000 (UTC) (envelope-from gonzo@id.bluezbox.com) Received: from id.bluezbox.com (id.bluezbox.com [88.198.91.248]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C762CCE8 for ; Thu, 18 Jun 2015 06:52:14 +0000 (UTC) (envelope-from gonzo@id.bluezbox.com) Received: from [76.126.208.203] (helo=[10.0.1.4]) by id.bluezbox.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.77 (FreeBSD)) (envelope-from ) id 1Z5TOm-00079q-F1 for freebsd-arm@freebsd.org; Wed, 17 Jun 2015 23:34:06 -0700 From: Oleksandr Tymoshenko Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: BBB HDMI support is in HEAD Message-Id: Date: Wed, 17 Jun 2015 23:34:01 -0700 To: "freebsd-arm@freebsd.org List" Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2098\)) X-Mailer: Apple Mail (2.2098) Sender: gonzo@id.bluezbox.com X-Spam-Level: -- X-Spam-Report: Spam detection software, running on the system "id.bluezbox.com", has identified this incoming email as possible spam. The original message has been attached to this so you can view it (if it isn't spam) or label similar future email. If you have any questions, see The administrator of that system for details. Content preview: Hello, HDMI support for Beaglebone Black has been committed to the main tree (r284534). You'll need to update dtb file along with kernel to get it working. Hot-plug is not supported so cable should be connected before you boot kernel. [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0006] X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Jun 2015 06:52:17 -0000 Hello, HDMI support for Beaglebone Black has been committed to the main tree (r284534). You'll need to update dtb file along with kernel to get it working. Hot-plug is not supported so cable should be connected before you boot kernel. Please test and report if there are any issues. -- gonzo From owner-freebsd-arm@FreeBSD.ORG Thu Jun 18 08:31:34 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5AEACE79; Thu, 18 Jun 2015 08:31:34 +0000 (UTC) (envelope-from jenkins-admin@freebsd.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 4B13F8D2; Thu, 18 Jun 2015 08:31:34 +0000 (UTC) (envelope-from jenkins-admin@freebsd.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 7AF6BCC; Thu, 18 Jun 2015 08:31:33 +0000 (UTC) Date: Thu, 18 Jun 2015 08:31:27 +0000 (GMT) From: jenkins-admin@freebsd.org To: mav@FreeBSD.org, bapt@FreeBSD.org, neel@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-arm@freebsd.org Message-ID: <513250758.1.1434616290111.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_arm64 - Build #374 - Failure MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_arm64 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Jun 2015 08:31:34 -0000 FreeBSD_HEAD_arm64 - Build #374 - Failure: Check console output at https://jenkins.freebsd.org/job/FreeBSD_HEAD_arm64/374/ to view the results. From owner-freebsd-arm@FreeBSD.ORG Thu Jun 18 10:05:11 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6E13D84C; Thu, 18 Jun 2015 10:05:11 +0000 (UTC) (envelope-from elbarto@megadrive.org) Received: from mail.blih.net (mail.blih.net [212.83.177.182]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.blih.net", Issuer "mail.blih.net" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id B03A9EEC; Thu, 18 Jun 2015 10:05:09 +0000 (UTC) (envelope-from elbarto@megadrive.org) Received: from mail.blih.net (mail.blih.net [212.83.177.182]) by mail.blih.net (OpenSMTPD) with ESMTP id ef059ac7; Thu, 18 Jun 2015 11:58:24 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=megadrive.org; h= mime-version:content-type:content-transfer-encoding:date:from:to :cc:subject:in-reply-to:references:message-id; s=mail; bh=MBxNSf LhQUoIayOmXrBy30OGDEQ=; b=KjiXvU9QT2XrHbl0MXrpLVDAIIJe7boKXOvi8U fOPtK4uDfclEbfzjIfSNz/EbCeEZO+vXBTXJBTrmBdAJ7fwJpO3z6H25YToXm0hG xoO2KcPXUo5TBYk4FvExxTukjHx3EVQZwodrpu5mhuZ0O4S+fBo95pU6k6db/u4z e/ORE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=megadrive.org; h= mime-version:content-type:content-transfer-encoding:date:from:to :cc:subject:in-reply-to:references:message-id; q=dns; s=mail; b= maH3NwlzreVzN3I/cZQC3zxQ3F93jsLEj6o5QgqD/S380TSU7OAYED+nC5/HEASy eH+Qq1Z7M6mcYAq6lsw5drgV5yZucigs8OnVVlx9cm5zgE9YsesyczagAUaSxzIZ vnTIohHonZ1vKavg1BqpjoNdaE04mXMsCCTho0sE1Ag= Received: from webmail.megadrive.org (www1.blih.net [212.83.177.180]) by mail.blih.net (OpenSMTPD) with ESMTP id d576549f; Thu, 18 Jun 2015 11:58:24 +0200 (CEST) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Thu, 18 Jun 2015 11:58:24 +0200 From: Emmanuel Vadot To: Oleksandr Tymoshenko Cc: "freebsd-arm@freebsd.org List" , owner-freebsd-arm@freebsd.org Subject: Re: BBB HDMI support is in HEAD Organization: MegaDrive Org In-Reply-To: References: Message-ID: <2606912ee856dce6e18455cc04f8aa21@megadrive.org> X-Sender: elbarto@megadrive.org User-Agent: Roundcube Webmail/1.1.1 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Jun 2015 10:05:11 -0000 sys/arm/ti/am335x/tda19988.c is missing. Cheers, On 2015-06-18 08:34, Oleksandr Tymoshenko wrote: > Hello, > > HDMI support for Beaglebone Black has been committed to the main > tree (r284534). You'll need to update dtb file along with kernel to > get it > working. Hot-plug is not supported so cable should be connected > before you boot kernel. > > Please test and report if there are any issues. -- Emmanuel Vadot From owner-freebsd-arm@FreeBSD.ORG Thu Jun 18 11:57:24 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E9B2FF06; Thu, 18 Jun 2015 11:57:24 +0000 (UTC) (envelope-from jenkins-admin@freebsd.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id D774DD0; Thu, 18 Jun 2015 11:57:24 +0000 (UTC) (envelope-from jenkins-admin@freebsd.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 0352E124; Thu, 18 Jun 2015 11:57:25 +0000 (UTC) Date: Thu, 18 Jun 2015 11:57:24 +0000 (GMT) From: jenkins-admin@freebsd.org To: mav@FreeBSD.org, trasz@FreeBSD.org, gjb@FreeBSD.org, br@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-arm@freebsd.org Message-ID: <1974206599.3.1434628644982.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <513250758.1.1434616290111.JavaMail.jenkins@jenkins-9.freebsd.org> References: <513250758.1.1434616290111.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_arm64 - Build #375 - Still Failing MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_arm64 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Jun 2015 11:57:25 -0000 FreeBSD_HEAD_arm64 - Build #375 - Still Failing: Check console output at https://jenkins.freebsd.org/job/FreeBSD_HEAD_arm64/375/ to view the results. From owner-freebsd-arm@FreeBSD.ORG Thu Jun 18 14:50:37 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EF4F52E6; Thu, 18 Jun 2015 14:50:36 +0000 (UTC) (envelope-from jenkins-admin@freebsd.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id DE863399; Thu, 18 Jun 2015 14:50:36 +0000 (UTC) (envelope-from jenkins-admin@freebsd.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id E3BED166; Thu, 18 Jun 2015 14:50:36 +0000 (UTC) Date: Thu, 18 Jun 2015 14:50:35 +0000 (GMT) From: jenkins-admin@freebsd.org To: tuexen@FreeBSD.org, adrian@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-arm@freebsd.org Message-ID: <515837973.5.1434639036385.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1974206599.3.1434628644982.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1974206599.3.1434628644982.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_arm64 - Build #376 - Fixed MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_arm64 X-Jenkins-Result: SUCCESS Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Jun 2015 14:50:37 -0000 FreeBSD_HEAD_arm64 - Build #376 - Fixed: Check console output at https://jenkins.freebsd.org/job/FreeBSD_HEAD_arm64/376/ to view the results. From owner-freebsd-arm@FreeBSD.ORG Thu Jun 18 16:53:25 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1BBD6505 for ; Thu, 18 Jun 2015 16:53:25 +0000 (UTC) (envelope-from gonzo@id.bluezbox.com) Received: from id.bluezbox.com (id.bluezbox.com [88.198.91.248]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C4639B98 for ; Thu, 18 Jun 2015 16:53:24 +0000 (UTC) (envelope-from gonzo@id.bluezbox.com) Received: from [12.144.165.244] (helo=jmlefe.dolby.net) by id.bluezbox.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.77 (FreeBSD)) (envelope-from ) id 1Z5d3y-000OjM-PX; Thu, 18 Jun 2015 09:53:20 -0700 Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2098\)) Subject: Re: BBB HDMI support is in HEAD From: Oleksandr Tymoshenko In-Reply-To: <2606912ee856dce6e18455cc04f8aa21@megadrive.org> Date: Thu, 18 Jun 2015 09:52:42 -0700 Cc: "freebsd-arm@freebsd.org List" Content-Transfer-Encoding: 7bit Message-Id: <03D71AE3-DF14-407E-BD77-AC8501D3EEA5@bluezbox.com> References: <2606912ee856dce6e18455cc04f8aa21@megadrive.org> To: Emmanuel Vadot X-Mailer: Apple Mail (2.2098) Sender: gonzo@id.bluezbox.com X-Spam-Level: -- X-Spam-Report: Spam detection software, running on the system "id.bluezbox.com", has identified this incoming email as possible spam. The original message has been attached to this so you can view it (if it isn't spam) or label similar future email. If you have any questions, see The administrator of that system for details. Content preview: > On Jun 18, 2015, at 2:58 AM, Emmanuel Vadot wrote: > > > sys/arm/ti/am335x/tda19988.c is missing. That was embarrassing. Fixed. Committed as r284562 [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] 0.0 URIBL_BLOCKED ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [URIs: megadrive.org] X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Jun 2015 16:53:25 -0000 > On Jun 18, 2015, at 2:58 AM, Emmanuel Vadot wrote: > > > sys/arm/ti/am335x/tda19988.c is missing. That was embarrassing. Fixed. Committed as r284562 From owner-freebsd-arm@FreeBSD.ORG Fri Jun 19 05:14:35 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 867F4B16 for ; Fri, 19 Jun 2015 05:14:35 +0000 (UTC) (envelope-from leaf700@icloud.com) Received: from mr11p26im-asmtp002.me.com (mr11p26im-asmtp002.me.com [17.110.86.60]) (using TLSv1.2 with cipher DHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5B0D03FC for ; Fri, 19 Jun 2015 05:14:35 +0000 (UTC) (envelope-from leaf700@icloud.com) Received: from [172.16.1.21] (123-100-93-24.dynamic.dsl.netguardian.co.nz [123.100.93.24]) by mr11p26im-asmtp002.me.com (Oracle Communications Messaging Server 7.0.5.35.0 64bit (built Mar 31 2015)) with ESMTPSA id <0NQ600AIDEK6X510@mr11p26im-asmtp002.me.com> for freebsd-arm@freebsd.org; Fri, 19 Jun 2015 05:14:33 +0000 (GMT) Resent-message-id: <0NQ600AIEEK8X510@mr11p26im-asmtp002.me.com> MIME-version: 1.0 (Mac OS X Mail 8.2 \(2098\)) Subject: Tier 1 updates - Arm? From: Stephen Woolerton Resent-from: Stephen Woolerton Date: Fri, 19 Jun 2015 17:13:05 +1200 Resent-date: Fri, 19 Jun 2015 17:14:29 +1200 Resent-to: freebsd-arm@freebsd.org Message-id: <972040D4-CABC-4908-A60F-8B69DC917588@icloud.com> To: freebsd-arm@freebsd.org X-Mailer: Apple Mail (2.2098) X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:5.14.151,1.0.33,0.0.0000 definitions=2015-06-19_01:2015-06-18,2015-06-19,1970-01-01 signatures=0 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 suspectscore=5 phishscore=0 adultscore=0 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=7.0.1-1412110000 definitions=main-1506190093 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Jun 2015 05:14:35 -0000 Hi there, Currently the only platforms which have Tier 1 update support are i386 = and amd64. (https://www.freebsd.org/platforms/ = ) I am purchasing hardware for an Internet connected device, and I would = prefer an ARM platform. Are there any plans to provide Tier 1 update = support for any of the ARM platforms?=20 Thanks Stephen From owner-freebsd-arm@FreeBSD.ORG Fri Jun 19 14:12:10 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 20B93856 for ; Fri, 19 Jun 2015 14:12:10 +0000 (UTC) (envelope-from dudenko@laser.ru) Received: from smtp-out-campus.lasernet.ru (campus.gpi.ru [195.209.204.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "Dmytro Dudenko", Issuer "Dmytro Dudenko" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 9049885D for ; Fri, 19 Jun 2015 14:12:08 +0000 (UTC) (envelope-from dudenko@laser.ru) Received: from porter.gpi.ru ([195.209.222.86]) by smtp-out-campus.lasernet.ru (8.14.3/8.14.3) with ESMTP id t5JEcwLK031389 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL) for ; Fri, 19 Jun 2015 18:38:58 +0400 (MSK) (envelope-from dudenko@laser.ru) Received: from smtp-in-lib1.lasernet.ru (lib1.fo.gpi.ru [195.209.210.16]) by porter.gpi.ru (8.14.7/8.14.7) with ESMTP id t5JDvXKL058347 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL) for ; Fri, 19 Jun 2015 16:57:37 +0300 (MSK) (envelope-from dudenko@laser.ru) DKIM-Filter: OpenDKIM Filter v2.9.2 porter.gpi.ru t5JDvXKL058347 Authentication-Results: porter.gpi.ru; dkim=none reason="no signature"; dkim-adsp=fail (unprotected policy) Received: from [127.0.0.1] (localhost [127.0.0.1]) by smtp-in-lib1.lasernet.ru (8.13.6/8.13.6) with ESMTP id t5JDvT8v044751 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Fri, 19 Jun 2015 16:57:33 +0300 (MSK) (envelope-from dudenko@laser.ru) X-Responsibility: Address for abuse reports: abuse@lasernet.ru. X-Organization: LaserNet. Server LIB1.FO.GPI.RU. X-Phone: +7-095-1354003, +7-095-1328170 X-Coordinates: 38, Vavilov Street, Moscow, 117942, Russia Message-ID: <55841FC9.6090507@laser.ru> Date: Fri, 19 Jun 2015 15:57:29 +0200 From: Dmytro Dudenko User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: freebsd-arm@freebsd.org Subject: Banana Pi Router aka Lamobo R1 References: <89E506F5-7F26-4409-84E1-68304564D011@kientzle.com> In-Reply-To: <89E506F5-7F26-4409-84E1-68304564D011@kientzle.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-49.0 required=5.0 tests=ALL_TRUSTED, DNS_FROM_AHBL_RHSBL,SHORTCIRCUIT shortcircuit=ham autolearn=disabled version=3.4.0 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lama.gpi.ru X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Jun 2015 14:12:10 -0000 Dear everyone, recently got this board and now wondering whether anyone has any sort of experience in getting FreeBSD running on it. I would be glad to learn it from you. Thanks. From owner-freebsd-arm@FreeBSD.ORG Fri Jun 19 21:54:31 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DC9748A0 for ; Fri, 19 Jun 2015 21:54:30 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from mail-pd0-f169.google.com (mail-pd0-f169.google.com [209.85.192.169]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B1789A17 for ; Fri, 19 Jun 2015 21:54:30 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: by pdjn11 with SMTP id n11so98716272pdj.0 for ; Fri, 19 Jun 2015 14:54:24 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:sender:subject:mime-version:content-type:from :in-reply-to:date:cc:message-id:references:to; bh=1ap/poW8YxdgqpExTcW+DxaIwKJSlhM/ozyB0xftys8=; b=Xeuab+aiLgAlBH8d6Iq/JiauotdCZpEs1v/en0w3T87bG/06BvZ+DImsp5Q1U76/MR lSQ0bpyJTvtMo94f8td0fSNEjtK1nX2z4eRT37TLgEAFKWZDTa2ldYhaYBaDDvJu4rYq S05Jg2AsY6UA9S3TrblUrOTcetnQdY1FM4V0V9tBnCmUYykuDEox9/hqG1if85UjmDnT 8GtANlzofvXPCKraeINouiMhrtEjdLI/TxIEXBUNMK2OQT6dQ1cD193q1JhclWJQ6z7W kX9XCnaLNdNq+S+m7o5WteWgYsbyyE60vvFQuYYOCKH8x+KYpIMWawYccEfK/9vi7vDd YjWA== X-Gm-Message-State: ALoCoQlo2kAELS44oybTUP+Q5mrG/DBjCl/Angu3i92/+CXrsy7Wg3LUuMaxxB1mm937C9eRDRvc X-Received: by 10.66.119.174 with SMTP id kv14mr35300782pab.5.1434750864042; Fri, 19 Jun 2015 14:54:24 -0700 (PDT) Received: from [10.64.27.92] ([69.53.236.236]) by mx.google.com with ESMTPSA id v9sm12170443pdr.96.2015.06.19.14.54.22 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 19 Jun 2015 14:54:23 -0700 (PDT) Sender: Warner Losh Subject: Re: Tier 1 updates - Arm? Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2098\)) Content-Type: multipart/signed; boundary="Apple-Mail=_2B15A1B7-3FFC-4788-A112-AF216BF4D2F7"; protocol="application/pgp-signature"; micalg=pgp-sha512 X-Pgp-Agent: GPGMail 2.5 From: Warner Losh In-Reply-To: <972040D4-CABC-4908-A60F-8B69DC917588@icloud.com> Date: Fri, 19 Jun 2015 15:54:21 -0600 Cc: freebsd-arm@freebsd.org Message-Id: <8448BD21-4CEA-43FA-B7E6-6EB737468370@bsdimp.com> References: <972040D4-CABC-4908-A60F-8B69DC917588@icloud.com> To: Stephen Woolerton X-Mailer: Apple Mail (2.2098) X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Jun 2015 21:54:31 -0000 --Apple-Mail=_2B15A1B7-3FFC-4788-A112-AF216BF4D2F7 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=utf-8 > On Jun 18, 2015, at 11:13 PM, Stephen Woolerton = wrote: >=20 > Hi there, >=20 > Currently the only platforms which have Tier 1 update support are i386 = and amd64. (https://www.freebsd.org/platforms/ = ) >=20 > I am purchasing hardware for an Internet connected device, and I would = prefer an ARM platform. Are there any plans to provide Tier 1 update = support for any of the ARM platforms? The plan is that select boards will have tier 1 support by the 11 time = frame. we=E2=80=99re getting close, but not quite there yet. Warner --Apple-Mail=_2B15A1B7-3FFC-4788-A112-AF216BF4D2F7 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org iQIcBAEBCgAGBQJVhI+NAAoJEGwc0Sh9sBEASqIP/1PuXoasFiRXMizBuIYopgBV OUq2AL+/9hKiKvRF3MSwsu0qdvJ7MYurekGok/pkS7Ofq3Xt6KdFlr4R+JyUwIad YiI93o5gbc6vHNmDyTGKwxGrdwba+gqWQIkD2YGYpfYOEZKDsTGd8LNQHXFgrNoj 9xcLu7Az3qO+JT5kdgeabd+SGhuEioDdvvGE93HMj3UvoJ/P60Tzy6vUfj51vIdb cEBKVppdrA8WrM8u7YFUqgYZsZUopzdIDtHRoZHz079o1cAeo1CBjysou7x7VfPZ yIImge1WZdB1EvJ83ySXZTtHTAsw8hrUBMGc+jIkiYL+efIYlZkgFsXdW+gMJ/Q+ mGyuU31TjPJOyNSr8lP2/WiOubIrQjrBNFcxz5WjYbEcv/PG0///yq4/BVC+EQQ3 pCUSnfwSvqko7aY/kho6Uc0vcIn9GH9nedREvlhmG1iFfwpr1bm9RWnTL54tcQwG sPm3A2NOfjJqLx0kx5wRg5l8X/5Pp8MAW5nNheFoJQnhjqXWkqbYh2qUk6a1VUV3 HTKanITC1nT1SW7VWORwlwKpVA4TiDC7txIlPLHYUe4grMgnb1LuX8OUS3JzeuM9 U+6SLcU6rbJDtF0ir+Qot589vem9y1Lj5YrBTxsuaz8M7CVk5Kkkc9v3VRd62qa2 JFwcJvevwY7bZEQY0a5Y =h0a1 -----END PGP SIGNATURE----- --Apple-Mail=_2B15A1B7-3FFC-4788-A112-AF216BF4D2F7-- From owner-freebsd-arm@FreeBSD.ORG Sat Jun 20 00:15:25 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9EDA3F3 for ; Sat, 20 Jun 2015 00:15:25 +0000 (UTC) (envelope-from shigeru@os-hackers.jp) Received: from mail1.asahi-net.or.jp (mail1.asahi-net.or.jp [202.224.39.197]) by mx1.freebsd.org (Postfix) with ESMTP id 75FF8EAE for ; Sat, 20 Jun 2015 00:15:24 +0000 (UTC) (envelope-from shigeru@os-hackers.jp) Received: from localhost (w142149.ppp.asahi-net.or.jp [121.1.142.149]) by mailssl.asahi-net.or.jp (Postfix) with ESMTP id C63633E1C2; Sat, 20 Jun 2015 08:55:25 +0900 (JST) Date: Sat, 20 Jun 2015 08:55:18 +0900 (JST) Message-Id: <20150620.085518.188133386084624078.shigeru@os-hackers.jp> To: dudenko@laser.ru Cc: freebsd-arm@freebsd.org Subject: Re: Banana Pi Router aka Lamobo R1 From: YAMAMOTO Shigeru In-Reply-To: <55841FC9.6090507@laser.ru> References: <89E506F5-7F26-4409-84E1-68304564D011@kientzle.com> <55841FC9.6090507@laser.ru> X-Mailer: Mew version 6.6 on Emacs 24.3 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Jun 2015 00:15:25 -0000 Hi, All >>>>> "Dmytro" == Dmytro Dudenko writes: Dmytro> Dear everyone, recently got this board and now wondering whether Dmytro> anyone has any sort of experience in getting FreeBSD running on it. Dmytro> I would be glad to learn it from you. I think this thread maybe help you. https://lists.freebsd.org/pipermail/freebsd-arm/2014-August/008954.html SoC on BananaPi is AllWinner A20 such as Cubieboard2. Information about About FreeBSD on Cubieboard(1,2) is, https://wiki.freebsd.org/FreeBSD/arm/Cubieboard Other reference codes and Information is, https://github.com/LeMaker https://github.com/bananapi-dev https://github.com/bananapi-dev/BPi/blob/master/HowToBuild_BPi_image.en.txt I hope these help you. Thanks, --- YAMAMOTO Shigeru From owner-freebsd-arm@FreeBSD.ORG Sat Jun 20 05:49:24 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A0CE09C0; Sat, 20 Jun 2015 05:49:24 +0000 (UTC) (envelope-from russ.haley@gmail.com) Received: from mail-pd0-x235.google.com (mail-pd0-x235.google.com [IPv6:2607:f8b0:400e:c02::235]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 77275672; Sat, 20 Jun 2015 05:49:24 +0000 (UTC) (envelope-from russ.haley@gmail.com) Received: by pdbki1 with SMTP id ki1so104042896pdb.1; Fri, 19 Jun 2015 22:49:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=0IDKIh+ccEho2Op1JG4qavW0GhFPqXSA1qbgMkGBhCg=; b=wmXhzv2kDVGK/sXjiGiThzxvYfTYUkKpdpFVGad39FE/4AwyxSQBlC/saCs6/lXnMy 789KZlRuifSO0QDQPBZmgfZYkpyUJu4WtGDmMzCv3b0260G/jSSo/417o54zt7ZqitpD Ulg73xVq6ZKqUAcv+ozNlaVVxJlgkLQcT7HEXHXj0gpg2TJ4QDSI1q+bq1DkrQY2bTO6 x2RIcY+VgqpBn/o+bSKgdWGxwCFF8gsMaCrTohpzi3LcLQ1M973kZscU+3V1N3ai+ZRd wiKTGEQU7+oAXkhf58ns0xrtxX73Tr3zKJTKL8wfXkiq3XBaKID9pmW4y3D2hwfxyc+L oMMA== MIME-Version: 1.0 X-Received: by 10.70.63.1 with SMTP id c1mr38488582pds.88.1434779363998; Fri, 19 Jun 2015 22:49:23 -0700 (PDT) Received: by 10.66.145.5 with HTTP; Fri, 19 Jun 2015 22:49:23 -0700 (PDT) Date: Fri, 19 Jun 2015 22:49:23 -0700 Message-ID: Subject: IMX6 SOM and Cortex M RTOS From: Russell Haley To: freebsd-arm , Ian Lepore Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Jun 2015 05:49:24 -0000 Hello again, I am looking to replace my IMX53 SOM with an IMX6. I saw on the wiki that the Wandboard and the Hummingbird SBC/CuBox are supported as well as a nebulous "others". Is there currently a preferred IMX6 SOM or one with better driver support? What about, say, Varsite, Digi or Phytec (which may have some level of support from other boards)? I am preferably looking for a IMX6 SBC based on a SOM that has eMMC as well as a microSD card and to which I can add a M.2 3G or 4g broadband modem (i.e. Sierra Wireless, Huaweii etc). I have two other questions that are only related to this thread by juxtoposition, but I figure this group would have some strong opinions about them: 1) For a lower power solution based on a Cortex M, would I need to move down to an RTOS? Is there any preferred RTOS for which I could use PC-BSD as my host for cross compiling? I ask this because I am trying to standardize on a FreeBSD based system for my toolchain and I may need to support lower powered systems. 2) Is there any advantage to using an Intel Atom or AMD (or Via anyone?)based SOM over an Arm based SOM? I can see that some of the higher end Atom processors have more performance but also use more power, however I am looking for possibilities like better driver or package support. The Advantech and ADI Engineering boards have caught my eye... Okay, I'll stop there. As always, your help is crucial and greatly appreciated. Thanks! Russ From owner-freebsd-arm@FreeBSD.ORG Sat Jun 20 08:06:16 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B5BE6EF9 for ; Sat, 20 Jun 2015 08:06:16 +0000 (UTC) (envelope-from joao@bolila.com) Received: from mx-out01.mykolab.com (mx01.mykolab.com [95.128.36.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 58895952 for ; Sat, 20 Jun 2015 08:06:15 +0000 (UTC) (envelope-from joao@bolila.com) X-Virus-Scanned: amavisd-new at kolabnow.com X-Spam-Flag: NO X-Spam-Score: -2.182 X-Spam-Level: X-Spam-Status: No, score=-2.182 tagged_above=-10 required=6.31 tests=[ALL_TRUSTED=-1, BAYES_00=-1.9, HTML_MESSAGE=0.001, MIME_HEADER_CTYPE_ONLY=0.717] autolearn=no Received: from mx05.mykolab.com (mx05.mykolab.com [10.20.7.161]) by mx-out01.mykolab.com (Postfix) with ESMTPS id 4D82A615DE for ; Sat, 20 Jun 2015 10:00:32 +0200 (CEST) From: =?utf-8?Q?Jo=C3=A3o_Bolila?= X-Pgp-Agent: GPGMail 2.5b6 Content-Type: multipart/signed; boundary="Apple-Mail=_1047A353-BC22-4238-98BF-67B874560529"; protocol="application/pgp-signature"; micalg=pgp-sha512 Subject: rpi2 binary image passwd Date: Sat, 20 Jun 2015 09:00:25 +0100 Message-Id: <14D1E8BD-A61A-4604-A828-389DA07A68BD@bolila.com> To: freebsd-arm X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Jun 2015 08:06:16 -0000 --Apple-Mail=_1047A353-BC22-4238-98BF-67B874560529 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=utf-8 Hi, what is the =E2=80=9Cdefault=E2=80=9D password on the Rpi2 images = available on: = ftp://ftp.freebsd.org/pub/FreeBSD/snapshots/arm/armv6/ISO-IMAGES/11.0/ = I have tried both images, and I can't find it, not even here = https://wiki.freebsd.org/FreeBSD/arm/Raspberry%20Pi = (and empty password doesn=E2=80=99t work, as well) regards, jo=C3=A3o bolila -- PGP: 6B5A F53C D39B B7C9 --Apple-Mail=_1047A353-BC22-4238-98BF-67B874560529 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org iQIcBAEBCgAGBQJVhR2ZAAoJEO4neh/8RpxXefYP+wcOL3lPex/Dg1uQGmRpRuXR A4HY4JRAGS4YTIZ8Zd0HuicYdS4dfNU5/fOBiD0VRhMDo5kXLP20PtHf28HJWUoL FW6pgtzDmoGaxmO4RrdLAUKP0O8txZ+/Da2tiivvoLpQ8dzhzm89vBsG8gtazwA+ upQqf2goescyuFw40nmTnmfsL8Kyu3YDqB9pjKy3/IcoZeMm1njb3255ULW6Pb3L 4/nM0yY8gqMmqCF0kOxRSVCbhv/RgEfsMBOunpd34YbJUGLbrONZzSV10/3Agr+6 SkEbWtsgfXu5APe5sQmZoNkvoTWiMKND5xO6/xJp0GPjq6azrRFFjYB8/+xzENT+ lD/T0RseZtr2AQzf5dZbC4eU36yh2jNL+E60txSEuItpSpP/0TsaxBV0IcSg++EG WYPHMwLKuBc6/8wiYzqjIB6GslCRIw/v6Mi+1VK7aAebslrrPTYnPCnULpzMcLJq z7IjZ9TyxbddvK0T/K+F7ar8oNhfdwhjC7u24GZk1Pzm0cdSRzXL2m/pwo9fvDXF v7N/w5c+lOB2VpNXIvxNorCuO9ZhoU9tUq981na6uhyTJe4NWv1woj83Xp7fpbMK MeT5LEYf9ZqgvYxlHVmsvpAIDgB1bc2X9rsFJ/3ppCICCT24NTQsE3+iCZqpv/lK MgmTdoTKKxpyAfEqHtEt =EpT/ -----END PGP SIGNATURE----- --Apple-Mail=_1047A353-BC22-4238-98BF-67B874560529-- From owner-freebsd-arm@FreeBSD.ORG Sat Jun 20 09:10:07 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0C0F3252 for ; Sat, 20 Jun 2015 09:10:07 +0000 (UTC) (envelope-from usenet@ulrich-grey.de) Received: from mo6-p00-ob.smtp.rzone.de (mo6-p00-ob.smtp.rzone.de [IPv6:2a01:238:20a:202:5300::9]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.smtp.rzone.de", Issuer "TeleSec ServerPass DE-2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1531E907 for ; Sat, 20 Jun 2015 09:10:05 +0000 (UTC) (envelope-from usenet@ulrich-grey.de) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; t=1434791401; l=131345; s=domk; d=ulrich-grey.de; h=Content-Type:Mime-Version:Subject:To:From:Date; bh=cB2U0yF2p8zeqymrRPkGUPM8eaeshBThFsvCOj7yDTc=; b=x1litc+OccwM+YLy1eimtEPtyiiTuN2bS22/DkGYqtCL5JbxB8RFJSBb1dWtfwVQooA 9u65R8GHrYgMqeZ1us290SPBjR3WjmBSomCLnWMUBrepELYpEELVrxXiL1AupO47MmznY 6VomrXMz04CaZ4YhT/58PXrfKbbRd/hCJUE= X-RZG-AUTH: :OX8Be0W8W+pMC3rDLL/lo2xV/LZTbZkYhOcjg8suic3iYr/B8J9Lzp3TJg49sMv/e26f X-RZG-CLASS-ID: mo00 Received: from quad (p54869E86.dip0.t-ipconnect.de [84.134.158.134]) by smtp.strato.de (RZmta 37.7 DYNA|AUTH) with ESMTPSA id J019e4r5K99wR01 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (curve X9_62_prime256v1 with 256 ECDH bits, eq. 3072 bits RSA)) (Client did not present a certificate) for ; Sat, 20 Jun 2015 11:09:58 +0200 (CEST) Date: Sat, 20 Jun 2015 09:09:57 +0000 From: Ulrich Grey To: freebsd-arm@freebsd.org Subject: Wandboard-Quad: Undefined instruction in kernel Message-Id: <20150620090957.eeb8cc36a07cf3a4a67dca72@ulrich-grey.de> Organization: - X-Mailer: Sylpheed 3.4.2 (GTK+ 2.24.25; armv6-portbld-freebsd11.0) Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Multipart=_Sat__20_Jun_2015_09_09_57_+0000_B=ud7D.d18bpgJM4" X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Jun 2015 09:10:07 -0000 This is a multi-part message in MIME format. --Multipart=_Sat__20_Jun_2015_09_09_57_+0000_B=ud7D.d18bpgJM4 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Hello, I have built an image for Wandboard-Quad (crochet, CURRENT r284621). After reboot I got this panic. The next boot was successfull. I have attached a file with more infos. # Mounting local file systems:panic: Undefined instruction in kernel. cpuid = 3 KDB: enter: panic [ thread pid 60 tid 100050 ] Stopped at $d.7: ldrb r15, [r15, r15, ror r15]! db> bt Tracing pid 60 tid 100050 td 0xc72766a0 db_trace_self() at db_trace_self pc = 0xc2482298 lr = 0xc2042320 (db_stack_trace+0x108) sp = 0xfa77d3b0 fp = 0xfa77d3c8 r10 = 0xc25d6970 db_stack_trace() at db_stack_trace+0x108 pc = 0xc2042320 lr = 0xc2041db8 (db_command+0x388) sp = 0xfa77d3d0 fp = 0xfa77d470 r4 = 0x00000000 r5 = 0x00000000 r6 = 0x00000000 r10 = 0xc25d6970 db_command() at db_command+0x388 pc = 0xc2041db8 lr = 0xc2041a20 (db_command_loop+0x74) sp = 0xfa77d478 fp = 0xfa77d488 r4 = 0xc24ce3e7 r5 = 0xc24dfb1f r6 = 0xc25d695c r7 = 0xfa77d668 r8 = 0xc25cd9e0 r9 = 0xc2579794 r10 = 0xc25cd9e4 db_command_loop() at db_command_loop+0x74 pc = 0xc2041a20 lr = 0xc20445e4 (db_trap+0x108) sp = 0xfa77d490 fp = 0xfa77d5a8 --More-- r4 = 0x00000000 r5 = 0xc25d6968 r6 = 0xc25cda08 r10 = 0xc25cd9e4 db_trap() at db_trap+0x108 pc = 0xc20445e4 lr = 0xc21f3f90 (kdb_trap+0x184) sp = 0xfa77d5b0 fp = 0xfa77d5d8 r4 = 0x00000000 r5 = 0x00000001 r6 = 0xc25cda08 r7 = 0xfa77d668 kdb_trap() at kdb_trap+0x184 pc = 0xc21f3f90 lr = 0xc249c210 (undefinedinstruction+0x3a8) sp = 0xfa77d5e0 fp = 0xfa77d660 r4 = 0x00000000 r5 = 0x00000000 r6 = 0xc249bdb8 r7 = 0xe7ffffff r8 = 0xc72766a0 r9 = 0xc21f36e8 r10 = 0xfa77d668 undefinedinstruction() at undefinedinstruction+0x3a8 pc = 0xc249c210 lr = 0xc2483920 (exception_exit) sp = 0xfa77d668 fp = 0xfa77d700 r4 = 0xc24dfb74 r5 = 0x00000001 r6 = 0xc25be5a0 r7 = 0xc25be610 r8 = 0xfa77d744 r9 = 0xc25d8160 --More-- r10 = 0xc72766a0 exception_exit() at exception_exit pc = 0xc2483920 lr = 0xc21f36d8 (kdb_enter+0x48) sp = 0xfa77d6f8 fp = 0xfa77d700 r0 = 0xc25cd9f4 r1 = 0x00000000 r2 = 0x00000001 r3 = 0xc24e2302 r4 = 0xc24dfb74 r5 = 0x00000001 r6 = 0xc25be5a0 r7 = 0xc25be610 r8 = 0xfa77d744 r9 = 0xc25d8160 r10 = 0xc72766a0 r12 = 0x00000000 $a.8() at $a.8 pc = 0xc21f36ec lr = 0xc21abd40 (vpanic+0x164) sp = 0xfa77d708 fp = 0xfa77d728 r4 = 0x00000100 r10 = 0xc72766a0 vpanic() at vpanic+0x164 pc = 0xc21abd40 lr = 0xc21abbdc (vpanic) sp = 0xfa77d730 fp = 0xfa77d738 r4 = 0x00000000 r5 = 0x00000000 r6 = 0xc249bdb8 r7 = 0xe28fc600 r8 = 0xc72766a0 r9 = 0xc737f040 --More-- r10 = 0xfa77d7d8 vpanic() at vpanic pc = 0xc21abbdc lr = 0xc249c2ac (unwind_stack_one) sp = 0xfa77d740 fp = 0xfa77d7d0 r4 = 0xc72766a0 r5 = 0xc737f040 r6 = 0xfa77d7d8 r7 = 0xfa77d738 r8 = 0xc21abbdc r9 = 0xfa77d750 r10 = 0xfa77d744 unwind_stack_one() at unwind_stack_one pc = 0xc249c2ac lr = 0xc2483920 (exception_exit) sp = 0xfa77d7d8 fp = 0xfa77d870 r4 = 0xc73883ac r5 = 0xc73883b0 r6 = 0xc73883b0 r7 = 0x00000002 r8 = 0xc2596af4 r9 = 0xc25d8918 r10 = 0xc7388340 exception_exit() at exception_exit pc = 0xc2483920 lr = 0xc737f3d4 (fdesc_init+0x20) sp = 0xfa77d868 fp = 0xfa77d870 r0 = 0xc7388570 r1 = 0xc7380065 r2 = 0x00000000 r3 = 0x00000000 --More-- r4 = 0xc73883ac r5 = 0xc73883b0 r6 = 0xc73883b0 r7 = 0x00000002 r8 = 0xc2596af4 r9 = 0xc25d8918 r10 = 0xc7388340 r12 = 0xc738faa0 $a() at $a+0x198 pc = 0xc737f040 lr = 0xc226554c (vfs_modevent+0x618) sp = 0xfa77d878 fp = 0xfa77d8a8 r4 = 0xfa77d8a8 r5 = 0xc2446760 r6 = 0xc70cea20 r7 = 0xc277a08c r8 = 0xc73883ac r9 = 0xc7388340 vfs_modevent() at vfs_modevent+0x618 pc = 0xc226554c lr = 0xc2190328 (module_register_init+0x1fc) sp = 0xfa77d8b0 fp = 0xfa77d8e0 r4 = 0xc25d7f48 r5 = 0xc73800e4 r6 = 0xc70a1440 r7 = 0xc7380008 r8 = 0xc25d7f70 r9 = 0xc25be378 module_register_init() at module_register_init+0x1fc pc = 0xc2190328 lr = 0xc2181e4c (linker_load_module+0xcb8) sp = 0xfa77d8e8 fp = 0xfa77db40 r4 = 0xc25d7f70 r5 = 0xc73800e4 --More-- r6 = 0xc25bcec0 r7 = 0xc73800e4 r8 = 0xc70a1440 r9 = 0xc25bce90 r10 = 0xc70cea60 linker_load_module() at linker_load_module+0xcb8 pc = 0xc2181e4c lr = 0xc2183d90 (kern_kldload+0x128) sp = 0xfa77db48 fp = 0xfa77db78 r4 = 0xfa77db84 r5 = 0xc709a7f0 r6 = 0x00000000 r7 = 0x00000001 r8 = 0xc25bce90 r9 = 0xc25bcec0 r10 = 0xc72766a0 kern_kldload() at kern_kldload+0x128 pc = 0xc2183d90 lr = 0xc2264ed8 (vfs_byname_kld+0x34) sp = 0xfa77db80 fp = 0xfa77db98 r4 = 0xfa77dbe4 r5 = 0xc72766a0 r6 = 0xc709a7f0 r7 = 0x00000000 r8 = 0xc7030cd0 r9 = 0x00000000 vfs_byname_kld() at vfs_byname_kld+0x34 pc = 0xc2264ed8 lr = 0xc22681e8 (vfs_donmount+0x990) sp = 0xfa77dba0 fp = 0xfa77ddb8 r4 = 0x00000000 r5 = 0x000000ff --More-- r6 = 0xc2596be0 r7 = 0x00000000 vfs_donmount() at vfs_donmount+0x990 pc = 0xc22681e8 lr = 0xc2267838 (sys_nmount+0x64) sp = 0xfa77ddc0 fp = 0xfa77ddd8 r4 = 0xc72766a0 r5 = 0x00000000 r6 = 0x00000000 r7 = 0x00000000 r8 = 0xfa77ddf0 r9 = 0x00000000 r10 = 0xc726c000 sys_nmount() at sys_nmount+0x64 pc = 0xc2267838 lr = 0xc249a948 (swi_handler+0x4b8) sp = 0xfa77dde0 fp = 0xfa77de50 r4 = 0xc72766a0 r5 = 0xbfbff394 r6 = 0x60000013 r10 = 0xc726c000 swi_handler() at swi_handler+0x4b8 pc = 0xc249a948 lr = 0xc24838b0 (swi_exit) sp = 0xfa77de58 fp = 0xbfbff3b8 r4 = 0x2081c198 r5 = 0xbfbff394 r6 = 0xbfbff390 r7 = 0x0000017a r8 = 0x00000000 r9 = 0x00014708 r10 = 0x000155c0 --More-- swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xfa77de58 fp = 0xbfbff3b8 db> --Multipart=_Sat__20_Jun_2015_09_09_57_+0000_B=ud7D.d18bpgJM4 Content-Type: text/plain; name="script20150620.txt" Content-Disposition: attachment; filename="script20150620.txt" Content-Transfer-Encoding: 7bit Script started on Sat Jun 20 08:00:17 2015 root@devel:/usr/local/DEVEL/LOG # cu -l/dev/cuaU0 -s 115200 Connected root@devel:/usr/local/DEVEL/LOG # root@devel:/usr/local/DEVEL/LOG # cu -l/dev/cuaU0 -s 115200 Connected U-Boot 2014.10 (Jun 20 2015 - 09:33:42) CPU: Freescale i.MX6Q rev1.2 at 792 MHz Reset cause: POR Board: Wandboard I2C: ready DRAM: 2 GiB WARNING: Caches not enabled MMC: FSL_SDHC: 0, FSL_SDHC: 1 *** Warning - bad CRC, using default environment No panel detected: default to HDMI Display: HDMI (1024x768) In: serial Out: serial Err: serial Net: FEC [PRIME] Hit any key to stop autoboot: 5  4  3  2  1  0 switch to partitions #0, OK mmc0 is current device reading boot.scr 158 bytes read in 10 ms (14.6 KiB/s) Running bootscript from mmc ... ## Executing script at 12000000 reading ubldr 265350 bytes read in 28 ms (9 MiB/s) ## Starting application at 0x11000094 ... Consoles: U-Boot console Compatible U-Boot API signature found @8f5844a8 FreeBSD/armv6 U-Boot loader, Revision 1.2 (root@noname.privat, Sat Jun 20 06:25:53 CEST 2015) DRAM: 2048MB MMC: no card present MMC Device 2 not found MMC Device 3 not found Number of U-Boot devices: 2 U-Boot env: loaderdev not set, will probe all devices. Found U-Boot device: disk Probing all disk devices... Checking unit=0 slice= partition=... good. |/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\/boot/kernel/kernel data=0x5aa31c+0x3dce4 |/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|syms=[0x4+0x5c960/-\+0x4+0x5868c|/-] Hit [Enter] to boot immediately, or any other key for command prompt. Booting [/boot/kernel/kernel] in 9 seconds... Booting [/boot/kernel/kernel] in 8 seconds... Booting [/boot/kernel/kernel]... \|/-\|/-\|/boot/kernel/wandboard-quad.dtb size=0x22cc Loaded DTB from file 'wandboard-quad.dtb'. /-\|/Kernel entry at 0x11200100... Kernel args: (null) KDB: debugger backends: ddb KDB: current backend: ddb Copyright (c) 1992-2015 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 11.0-CURRENT #0 r284621M: Sat Jun 20 06:17:16 CEST 2015 root@noname.privat:/usr/home/CROCHET/crochet/work/obj/arm.armv6/usr/SRC/head/sys/IMX6 arm FreeBSD clang version 3.6.1 (tags/RELEASE_361/final 237755) 20150525 CPU: Cortex A9-r2 rev 10 (Cortex-A core) Supported features: ARM_ISA THUMB2 JAZELLE THUMBEE ARMv4 Security_Ext WB disabled EABT branch prediction enabled LoUU:2 LoC:2 LoUIS:2 Cache level 1: 32KB/32B 4-way data cache WB Read-Alloc Write-Alloc 32KB/32B 4-way instruction cache Read-Alloc real memory = 2147483648 (2048 MB) avail memory = 2093948928 (1996 MB) FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs random: entropy device infrastructure driver random: selecting highest priority adaptor random: SOFT: yarrow init() random: selecting highest priority adaptor ofwbus0: simplebus0: on ofwbus0 simplebus1: mem 0x2000000-0x20fffff on simplebus0 imx6_anatop0: mem 0x20c8000-0x20c8fff irq 49 on simplebus1 simplebus2: mem 0x2100000-0x21fffff on simplebus0 ocotp0: mem 0x21bc000-0x21bffff on simplebus2 ccm0: mem 0x20c4000-0x20c7fff irq 119,120 on simplebus1 l2cache0: mem 0xa02000-0xa02fff irq 124 on simplebus0 l2cache0: Part number: 0x3, release: 0x7 l2cache0: L2 Cache enabled: 1024KB/32B 16 ways imx_iomux0: mem 0x20e0000-0x20e3fff irq 32 on simplebus1 gic0: mem 0xa01000-0xa01fff,0xa00100-0xa001ff on simplebus0 gic0: pn 0x390, arch 0x1, rev 0x2, implementer 0x43b irqs 160 imx_gpt0: mem 0x2098000-0x209bfff irq 87 on simplebus1 Event timer "iMXGPT" frequency 66000000 Hz quality 800 Timecounter "iMXGPT" frequency 66000000 Hz quality 1000 mp_tmr0: mem 0xa00200-0xa002ff,0xa00600-0xa006ff irq 27,29 on simplebus0 Event timer "MPCore" frequency 492000000 Hz quality 1000 gpio0: mem 0x209c000-0x209ffff irq 98,99 on simplebus1 gpiobus0: on gpio0 gpioc0: on gpio0 gpio1: mem 0x20a0000-0x20a3fff irq 100,101 on simplebus1 gpiobus1: on gpio1 gpioc1: on gpio1 gpio2: mem 0x20a4000-0x20a7fff irq 102,103 on simplebus1 gpiobus2: on gpio2 gpioc2: on gpio2 gpio3: mem 0x20a8000-0x20abfff irq 104,105 on simplebus1 gpiobus3: on gpio3 gpioc3: on gpio3 gpio4: mem 0x20ac000-0x20affff irq 106,107 on simplebus1 gpiobus4: on gpio4 gpioc4: on gpio4 gpio5: mem 0x20b0000-0x20b3fff irq 108,109 on simplebus1 gpiobus5: on gpio5 gpioc5: on gpio5 gpio6: mem 0x20b4000-0x20b7fff irq 110,111 on simplebus1 gpiobus6: on gpio6 gpioc6: on gpio6 uart0: mem 0x2020000-0x2023fff irq 58 on simplebus1 uart0: console (115200,n,8,1) usbphy0: mem 0x20c9000-0x20c9fff irq 44 on simplebus1 usbphy1: mem 0x20ca000-0x20cafff irq 45 on simplebus1 ffec0: mem 0x2188000-0x218bfff irq 150,151 on simplebus2 miibus0: on ffec0 atphy0: PHY 1 on miibus0 atphy0: none, 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseSX-FDX, 1000baseT-FDX, 1000baseT-FDX-master, auto ffec0: Ethernet address: 00:1f:7b:b4:17:64 ehci0: mem 0x2184000-0x21841ff irq 75 on simplebus2 ehci0: [GIANT-LOCKED] usbus0: EHCI version 1.0 usbus0 on ehci0 ehci1: mem 0x2184200-0x21843ff irq 72 on simplebus2 ehci1: [GIANT-LOCKED] usbus1: EHCI version 1.0 usbus1 on ehci1 sdhci_imx0: mem 0x2190000-0x2193fff irq 54 on simplebus2 mmc0: on sdhci_imx0 sdhci_imx1: mem 0x2198000-0x219bfff irq 56 on simplebus2 mmc1: on sdhci_imx1 Timecounters tick every 2.000 msec usbus0: 480Mbps High Speed USB v2.0 usbus1: 480Mbps High Speed USB v2.0 mmc0: No compatible cards found on bus ugen1.1: at usbus0 uhub0: on usbus0 Freescale> at usbus1 uhub1: on usbus1 mmc1: CMD7 failed, RESULT: 1 sdhci_imx1-slot0: Got data interrupt 0x00000002, but there is no active command. sdhci_imx1-slot0: ============== REGISTER DUMP ============== sdhci_imx1-slot0: Sys addr: 0x00000000 | Version: 0x00000002 sdhci_imx1-slot0: Blk size: 0x00000040 | Blk cnt: 0x00000001 sdhci_imx1-slot0: Argument: 0x00010000 | Trn mode: 0x00000012 sdhci_imx1-slot0: Present: 0x00fd0000 | Host ctl: 0x00000001 sdhci_imx1-slot0: Power: 0x0000000d | Blk gap: 0x00000080 sdhci_imx1-slot0: Wake-up: 0x00000000 | Clock: 0x0000fa07 sdhci_imx1-slot0: Timeout: 0x00000006 | Int stat: 0x00000000 sdhci_imx1-slot0: Int enab: 0x017f00fb | Sig enab: 0x017f00fb sdhci_imx1-slot0: AC12 err: 0x00000000 | Slot int: 0x00000000 sdhci_imx1-slot0: Caps: 0x0377c800 | Max curr: 0x80000012 sdhci_imx1-slot0: =========================================== mmcsd0: 16GB at mmc1 50.0MHz/4bit/65535-block random: unblocking device. Release APs Root mount waiting for: usbus1 usbus0 uhub0: 1 port with 1 removable, self powered uhub1: 1 port with 1 removable, self powered ugen1.2: at usbus1 uhub2: on usbus1 Root mount waiting for: usbus1 uhub2: 4 ports with 3 removable, self powered Root mount waiting for: usbus1 ugen1.3: at usbus1 uhub3: on usbus1 uhub3: 4 ports with 4 removable, self powered Root mount waiting for: usbus1 ugen1.4: at usbus1 umass0: on usbus1 da0 at umass-sim0 bus 0 scbus0 target 0 lun 0 da0: Fixed Direct Access SCSI device da0: Serial Number 100 da0: 40.000MB/s transfers da0: 57231MB (117210240 512 byte sectors: 255H 63S/T 7296C) da0: quirks=0x2 Root mount waiting for: usbus1 Root mount waiting for: usbus1 ugen1.5: at usbus1 umass1: on usbus1 Trying to mount root from ufs:/dev/mmcsd0s2a [rw,noatime]... da1 at umass-sim1 bus 1 scbus1 target 0 lun 0 da1: Fixed Direct Access SPC-2 SCSI device da1: Serial Number 2HB50SN0 w a r n i ndga:1 :n o4 0t.i0m0e0-MoBf/-sd atyr acnlsofcekr sr e gdias1t:e r1e5d2,6 2s7yMsBt e(m3 1t2i5m8e1 8w0i8l l5 1n2o tb ybtee sseetc taocrcsu:r a2t5e5lHy 6 3S/T 19457C) da1: quirks=0x2 Growing root partition to fill device GEOM_PART: mmcsd0s2 was automatically resized. Use `gpart commit mmcsd0s2` to save changes or `gpart undo mmcsd0s2` to revert them. mmcsd0s2 resized mmcsd0s2a resized super-block backups (for fsck_ffs -b #) at: 3689920, 4612352, 5534784, 6457216, 7379648, 8302080, 9224512, 10146944, 11069376, 11991808, 12914240, 13836672, 14759104, 15681536, 16603968, 17526400, 18448832, 19371264, 20293696, 21216128, 22138560, 23060992, 23983424, 24905856, 25828288, 26750720, 27673152, 28595584, 29518016, 30440448 /etc/rc: WARNING: hostid: unable to figure out a UUID from DMI data, generating a new one Setting hostuuid: 48a01975-1723-11e5-8c5f-001f7bb41764. Setting hostid: 0xdb3b3790. No suitable dump device was found. Starting file system checks: /dev/mmcsd0s2a: FILE SYSTEM CLEAN; SKIPPING CHECKS /dev/mmcsd0s2a: clean, 3583425 free (177 frags, 447906 blocks, 0.0% fragmentation) Mounting local file systems:. Setting hostname: wandboard-quad. Feeding entropy:. Starting Network: lo0 ffec0. lo0: flags=8049 metric 0 mtu 16384 options=600003 inet6 ::1 prefixlen 128 inet6 fe80::1%lo0 prefixlen 64 scopeid 0xfSfpeucr0i:o ulsi nikn tsetrartuep tc hdaentgeecdt etdo USPp u rious interrupt detected 2 inet 127.0.0.1 netmask 0xff000000 groups: lo nd6 options=21 ffec0: flags=8802 metric 0 mtu 1500 options=80008 ether 00:1f:7b:b4:17:64 media: Ethernet autoselect (1000baseT ) status: active nd6 options=29 ELF ldconfig path: /lib /usr/lib /usr/lib/compat Starting devd. Starting Network: ffec0. ffec0: flags=8802 metric 0 mtu 1500 options=80008 ether 00:1f:7b:b4:17:64 media: Ethernet autoselect (1000baseT ) status: active nd6 options=29 add net fe80::: gateway ::1 add net ff02::: gateway ::1 add net ::ffff:0.0.0.0: gateway ::1 add net ::0.0.0.0: gateway ::1 Generating host.conf. Creating and/or trimming log files. Starting casperd. Clearing /tmp (X related). Updating motd:. Mounting late file systems:. Generating RSA1 host key. 2048 43:a7:05:50:ff:4f:db:4c:2b:c0:d9:42:01:36:aa:0b root@wandboard-quad (RSA1) Generating RSA host key. 2048 21:20:f1:46:49:eb:ff:48:e9:41:e5:ad:27:cc:19:c8 root@wandboard-quad (RSA) Generating DSA host key. 1024 0e:fe:fc:a2:80:b5:ef:5e:49:6e:41:b7:16:c2:15:02 root@wandboard-quad (DSA) Generating ECDSA host key. 256 39:84:f9:c6:58:d3:23:e1:d0:cf:b6:60:93:78:a3:96 root@wandboard-quad (ECDSA) Generating ED25519 host key. 256 70:68:44:4a:c8:75:54:9b:a2:d5:8b:84:c6:5d:aa:79 root@wandboard-quad (ED25519) Performing sanity check on sshd configuration. Starting sshd. Starting background file system checks in 60 seconds. Sat Jun 20 08:07:06 UTC 2015 FreeBSD/arm (wandboard-quad) (ttyu0) login: root FreeBSD 11.0-CURRENT (IMX6) #0 r284621M: Sat Jun 20 06:17:16 CEST 2015 Welcome to FreeBSD! Release Notes, Errata: https://www.FreeBSD.org/releases/ Security Advisories: https://www.FreeBSD.org/security/ FreeBSD Handbook: https://www.FreeBSD.org/handbook/ FreeBSD FAQ: https://www.FreeBSD.org/faq/ Questions List: https://lists.FreeBSD.org/mailman/listinfo/freebsd-questions/ FreeBSD Forums: https://forums.FreeBSD.org/ Documents installed with the system are in the /usr/local/share/doc/freebsd/ directory, or can be installed later with: pkg install en-freebsd-doc For other languages, replace "en" with a language code like de or fr. Show the version of FreeBSD installed: freebsd-version ; uname -a Please include that output and any error messages when posting questions. Introduction to manual pages: man man FreeBSD directory layout: man hier Edit /etc/motd to change this login announcement. root@wandboard-quad:~ # passwd Changing local password for root New Password: Retype New Password: root@wandboard-quad:~ # passwd gwgpi Changing local password for gwgpi New Password: Retype New Password: root@wandboard-quad:~ # ls /dev bpf devctl2 gpioc5 openfirm ugen0.1 bpf0 devstat gpioc6 pass0 ugen1.1 console diskid klog pass1 ugen1.2 ctty fd kmem random ugen1.3 cuau0 fido mdctl stderr ugen1.4 cuau0.init full mem stdin ugen1.5 cuau0.lock geom.ctl mmcsd0 stdout urandom da0 gpioc0 mmcsd0s1 ttyu0 usb da0s1 gpioc1 mmcsd0s2 ttyu0.init usbctl da0s1b gpioc2 mmcsd0s2a ttyu0.lock xpt0 da1 gpioc3 nfslock ufsid zero devctl gpioc4 null ufssuspend root@wandboard-quad:~ # swapon /dev/da0s1b root@wandboard-quad:~ # mount /dev/da1 /nmnt mount: /dev/da1: R/W mount of /usr/local/DEVEL denied. Filesystem is not clean - run fsck.: Operation not permitted root@wandboard-quad:~ # fsck -y -tufs /dev/da1 ** /dev/da1 ** Last Mounted on /usr/local/DEVEL ** Phase 1 - Check Blocks and Sizes ** Phase 2 - Check Pathnames ** Phase 3 - Check Connectivity ** Phase 4 - Check Reference Counts LINK COUNT FILE I=14298362 OWNER=root MODE=100644 SIZE=19540 MTIME=Jun 19 12:52 2015 COUNT 2 SHOULD BE 1 ADJUST? yes ** Phase 5 - Check Cyl groups FREE BLK COUNT(S) WRONG IN SUPERBLK SALVAGE? yes SUMMARY INFORMATION BAD SALVAGE? yes BLK(S) MISSING IN BIT MAPS SALVAGE? yes 2212166 files, 12774770 used, 25070123 free (337299 frags, 3091603 blocks, 0.9% fragmentation) ***** FILE SYSTEM MARKED CLEAN ***** ***** FILE SYSTEM WAS MODIFIED ***** root@wandboard-quad:~ # mkdir /usr/local/DEVEL root@wandboard-quad:~ # mozunt /dev/da1 /usr/local/DEVEL/ root@wandboard-quad:~ # cd /usr/local/DEVEL/Archiv/ root@wandboard-quad:/usr/local/DEVEL/Archiv # cd /etc root@wandboard-quad:/etc # mv fstab fstab _ root@wandboard-quad:/etc # mv ttvi ttys [?7h[?1h=console noneunknown off secure ttyu0 "/usr/libexec/getty std.115200" vt100 on secure # Dumb console dcons "/usr/libexec/getty std.9600" dialup off secure ~~~~~~~~~~~~~~~~~~~ttys: unmodified: line 1ttyu0 "/usr/libexec/getty 3std.115200" vt100 on securewstd.115200"istd.115200"rstd.115200"estd.115200" Copying file for recovery... std.115200" td.115200" d.115200" .115200" e.115200"."  :wq ttys: 4 lines, 160 characters [?1l>D.  [?1l>root@wandboard-quad:/etc # mv rc.conf rc.conf rc.conf rc.conf.d/ root@wandboard-quad:/etc # mv rc.conf rc.conf_ root@wandboard-quad:/etc # cd - root@wandboard-quad:/usr/local/DEVEL/Archiv # cd WQ2/ root@wandboard-quad:/usr/local/DEVEL/Archiv/WQ2 # ls Xaccess portmaster.rc Xservers rc.conf fstab resolv.conf java_bootstrap_openjdk.patch smb.conf java_openjdk8_all.patch ttys make.conf xdm-config patch-bug199487 xf86-video-scfb-0.0.4_2-clang.txz pkg_info.txt xf86-video-scfb-0.0.4_2.txz root@wandboard-quad:/usr/local/DEVEL/Archiv/WQ2 # cp fstab rc.conf resolv.conf / etc root@wandboard-quad:/usr/local/DEVEL/Archiv/WQ2 # /etcd root@wandboard-quad:~ # umount /musr/local/DEVEL/ root@wandboard-quad:~ # /esync root@wandboard-quad:~ # sync root@wandboard-quad:~ # /u/etc/netstart Setting hostuuid: 48a01975-1723-11e5-8c5f-001f7bb41764. Setting hostid: 0xdb3b3790. ffec0: link state changed to DOWN Starting Network: lo0 ffec0. lo0: flags=8049 metric 0 mtu 16384 options=600003 inet6 ::1 prefixlen 128 inet6 fe80::1%lo0 prefixlen 64 scopeid 0x2 inet 127.0.0.1 netmask 0xff000000 groups: lo nd6 options=21 ffec0: flags=8843 metric 0 mtu 1500 options=80008 ether 00:1f:7b:b4:17:64 inet 192.168.0.201 netmask 0xffffff00 broadcast 192.168.0.255 media: Ethernet autoselect (none) status: no carrier nd6 options=29 add net default: gateway 192.168.0.155 Additional inet routing options: ignore ICMP redirect=YES log ICMP redirect=YES. add net fe80::: gateway ::1 fib 0: route already in table add net ff02::: gateway ::1 fib 0: route already in table add net ::ffff:0.0.0.0: gateway ::1 fib 0: route already in table add net ::0.0.0.0: gateway ::1 fib 0: route already in table root@wandboard-quad:~ # ffec0: link state changed to UP root@wandboard-quad:~ # ping www.gfreebsd.org PING wfe0.ysv.freebsd.org (8.8.178.110): 56 data bytes 64 bytes from 8.8.178.110: icmp_seq=0 ttl=54 time=219.355 ms 64 bytes from 8.8.178.110: icmp_seq=1 ttl=54 time=213.967 ms 64 bytes from 8.8.178.110: icmp_seq=2 ttl=54 time=213.336 ms 64 bytes from 8.8.178.110: icmp_seq=3 ttl=54 time=213.123 ms 64 bytes from 8.8.178.110: icmp_seq=4 ttl=54 time=214.306 ms 64 bytes from 8.8.178.110: icmp_seq=5 ttl=54 time=217.300 ms 64 bytes from 8.8.178.110: icmp_seq=6 ttl=54 time=217.243 ms 64 bytes from 8.8.178.110: icmp_seq=7 ttl=54 time=211.638 ms 64 bytes from 8.8.178.110: icmp_seq=8 ttl=54 time=219.470 ms 64 bytes from 8.8.178.110: icmp_seq=9 ttl=54 time=215.597 ms 64 bytes from 8.8.178.110: icmp_seq=10 ttl=54 time=217.412 ms 64 bytes from 8.8.178.110: icmp_seq=11 ttl=54 time=219.092 ms 64 bytes from 8.8.178.110: icmp_seq=12 ttl=54 time=219.135 ms 64 bytes from 8.8.178.110: icmp_seq=13 ttl=54 time=217.614 ms 64 bytes from 8.8.178.110: icmp_seq=14 ttl=54 time=218.950 ms 64 bytes from 8.8.178.110: icmp_seq=15 ttl=54 time=218.894 ms 64 bytes from 8.8.178.110: icmp_seq=16 ttl=54 time=212.223 ms 64 bytes from 8.8.178.110: icmp_seq=17 ttl=54 time=214.276 ms ^C --- wfe0.ysv.freebsd.org ping statistics --- 19 packets transmitted, 18 packets received, 5.3% packet loss round-trip min/avg/max/stddev = 211.638/216.274/219.470/2.636 ms root@wandboard-quad:~ # mount /dev/da1 /usr/local/DEVEL/ root@wandboard-quad:~ # cd /usr/ root@wandboard-quad:/usr # ls bin include lib32 libexec obj share tests home lib libdata local sbin src root@wandboard-quad:/usr # rmdir obj root@wandboard-quad:/usr # ln -s /usr/local/DEVEL/obj/ root@wandboard-quad:/usr # rm -rf /obj/* root@wandboard-quad:/usr # ln -s /usr/local/DEVEL/ports/ ports root@wandboard-quad:/usr # ln -s /usr/local/DEVEL/SRC/head/ src root@wandboard-quad:/usr # ls src/ head root@wandboard-quad:/usr # rm src rm: src: is a directory root@wandboard-quad:/usr # ls bin include lib32 libexec obj sbin src home lib libdata local ports share tests root@wandboard-quad:/usr # ls -l total 72 drwxr-xr-x 2 root wheel 8192 Jun 20 07:35 bin drwxr-xr-x 3 root wheel 512 Jun 20 07:35 home drwxr-xr-x 51 root wheel 6144 Jun 20 07:34 include drwxr-xr-x 9 root wheel 14848 Jun 20 07:35 lib drwxr-xr-x 4 root wheel 512 Jun 20 07:34 lib32 drwxr-xr-x 6 root wheel 512 Jun 20 07:34 libdata drwxr-xr-x 8 root wheel 1536 Jun 20 07:35 libexec drwxr-xr-x 3 root wheel 512 Jun 20 08:18 local lrwxr-xr-x 1 root wheel 21 Jun 20 08:23 obj -> /usr/local/DEVEL/obj/ lrwxr-xr-x 1 root wheel 22 Jun 20 08:23 ports -> /usr/local/DEVEL/ports drwxr-xr-x 2 root wheel 5120 Jun 20 07:35 sbin drwxr-xr-x 33 root wheel 1024 Jun 20 07:34 share drwxr-xr-x 2 root wheel 512 Jun 20 08:24 src drwxr-xr-x 15 root wheel 512 Jun 20 07:35 tests root@wandboard-quad:/usr # rmdir src rmdir: src: Directory not empty root@wandboard-quad:/usr # rmdir src dir src-dir srcrdir srcfdir src dir srcsdir srcrdir srccdir srcir srcr src srcsrcrcc root@wandboard-quad:/usr # rm -rf srcdir srcls -lrm srcls src/n -s /usr/local/DEVEL/SRC/head src root@wandboard-quad:/usr # ls src .arcconfig cddl sbin .arclint contrib secure .svn crypto share COPYRIGHT etc sys LOCKS games targets MAINTAINERS gnu tests Makefile include tools Makefile.inc1 kerberos5 typescript ObsoleteFiles.inc lib usr.bin README libexec usr.sbin UPDATING release bin rescue root@wandboard-quad:/usr # ls ports/ .arcconfig README devel mail security .gitignore Templates distfiles math shells .portsnap.INDEX Tools dns misc sysutils CHANGES UIDs editors multimedia textproc CONTRIBUTING.md UPDATING emulators net ukrainian COPYRIGHT accessibility finance net-im vietnamese GIDs arabic french net-mgmt www INDEX-10 archivers ftp net-p2p x11 INDEX-11 astro games news x11-clocks INDEX-11.bz2 audio german packages x11-drivers INDEX-11.db benchmarks graphics palm x11-fm INDEX-8 biology hebrew pkg.core x11-fonts INDEX-9 cad hungarian polish x11-servers Keywords chinese irc ports-mgmt x11-themes LEGAL comms japanese portuguese x11-toolkits MOVED converters java print x11-wm Makefile databases korean russian zsh.core Mk deskutils lang science root@wandboard-quad:/usr # cd ls -l total 68 drwxr-xr-x 2 root wheel 8192 Jun 20 07:35 bin drwxr-xr-x 3 root wheel 512 Jun 20 07:35 home drwxr-xr-x 51 root wheel 6144 Jun 20 07:34 include drwxr-xr-x 9 root wheel 14848 Jun 20 07:35 lib drwxr-xr-x 4 root wheel 512 Jun 20 07:34 lib32 drwxr-xr-x 6 root wheel 512 Jun 20 07:34 libdata drwxr-xr-x 8 root wheel 1536 Jun 20 07:35 libexec drwxr-xr-x 3 root wheel 512 Jun 20 08:18 local lrwxr-xr-x 1 root wheel 21 Jun 20 08:23 obj -> /usr/local/DEVEL/obj/ lrwxr-xr-x 1 root wheel 22 Jun 20 08:23 ports -> /usr/local/DEVEL/ports drwxr-xr-x 2 root wheel 5120 Jun 20 07:35 sbin drwxr-xr-x 33 root wheel 1024 Jun 20 07:34 share lrwxr-xr-x 1 root wheel 25 Jun 20 08:25 src -> /usr/local/DEVEL/SRC/head drwxr-xr-x 15 root wheel 512 Jun 20 07:35 tests root@wandboard-quad:/usr # cd /var/db root@wandboard-quad:/var/db # ls entropy hyperv locate.database ports services.db freebsd-update ipf pkg portsnap root@wandboard-quad:/var/db # rmdir portsnap/ root@wandboard-quad:/var/db # ln -s /usr/local/DEVEL/Portsnap/ portsnap root@wandboard-quad:/var/db # ls portsnap/ INDEX serverlist tINDEX files serverlist_full tag pub.ssl serverlist_tried root@wandboard-quad:/var/db # cd root@wandboard-quad:~ # poreboot Waiting (max 60 seconds) for system process `vnlru' to stop...done W a iStyinncgi n(gm adxi s6k0s ,s evcnoonddess) rfeomra isnyisntge.m. .p2r ocess `syncer' to stop...2 1 0 0 done Waiting (max 60 seconds) for system process `bufdaemon' to stop...done All buffers synced. Uptime: 19m48s Rebooting... U-Boot 2014.10 (Jun 20 2015 - 09:33:42) CPU: Freescale i.MX6Q rev1.2 at 792 MHz Reset cause: WDOG Board: Wandboard I2C: ready DRAM: 2 GiB WARNING: Caches not enabled MMC: FSL_SDHC: 0, FSL_SDHC: 1 *** Warning - bad CRC, using default environment No panel detected: default to HDMI Display: HDMI (1024x768) In: serial Out: serial Err: serial Net: FEC [PRIME] Hit any key to stop autoboot: 5  4  3  2  1  0 switch to partitions #0, OK mmc0 is current device reading boot.scr 158 bytes read in 9 ms (16.6 KiB/s) Running bootscript from mmc ... ## Executing script at 12000000 reading ubldr 265350 bytes read in 27 ms (9.4 MiB/s) ## Starting application at 0x11000094 ... Consoles: U-Boot console Compatible U-Boot API signature found @8f5844a8 FreeBSD/armv6 U-Boot loader, Revision 1.2 (root@noname.privat, Sat Jun 20 06:25:53 CEST 2015) DRAM: 2048MB MMC: no card present MMC Device 2 not found MMC Device 3 not found Number of U-Boot devices: 2 U-Boot env: loaderdev not set, will probe all devices. Found U-Boot device: disk Probing all disk devices... Checking unit=0 slice= partition=... good. |/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\/boot/kernel/kernel data=0x5aa31c+0x3dce4 |/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|syms=[0x4+0x5c960/-\+0x4+0x5868c|/-] Hit [Enter] to boot immediately, or any other key for command prompt. Booting [/boot/kernel/kernel] in 9 seconds... Booting [/boot/kernel/kernel] in 8 seconds... Booting [/boot/kernel/kernel] in 7 seconds... Booting [/boot/kernel/kernel]... \|/-\|/-\|/boot/kernel/wandboard-quad.dtb size=0x22cc Loaded DTB from file 'wandboard-quad.dtb'. /-\|/Kernel entry at 0x11200100... Kernel args: (null) KDB: debugger backends: ddb KDB: current backend: ddb Copyright (c) 1992-2015 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 11.0-CURRENT #0 r284621M: Sat Jun 20 06:17:16 CEST 2015 root@noname.privat:/usr/home/CROCHET/crochet/work/obj/arm.armv6/usr/SRC/head/sys/IMX6 arm FreeBSD clang version 3.6.1 (tags/RELEASE_361/final 237755) 20150525 CPU: Cortex A9-r2 rev 10 (Cortex-A core) Supported features: ARM_ISA THUMB2 JAZELLE THUMBEE ARMv4 Security_Ext WB disabled EABT branch prediction enabled LoUU:2 LoC:2 LoUIS:2 Cache level 1: 32KB/32B 4-way data cache WB Read-Alloc Write-Alloc 32KB/32B 4-way instruction cache Read-Alloc real memory = 2147483648 (2048 MB) avail memory = 2093948928 (1996 MB) FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs random: entropy device infrastructure driver random: selecting highest priority adaptor random: SOFT: yarrow init() random: selecting highest priority adaptor ofwbus0: simplebus0: on ofwbus0 simplebus1: mem 0x2000000-0x20fffff on simplebus0 imx6_anatop0: mem 0x20c8000-0x20c8fff irq 49 on simplebus1 simplebus2: mem 0x2100000-0x21fffff on simplebus0 ocotp0: mem 0x21bc000-0x21bffff on simplebus2 ccm0: mem 0x20c4000-0x20c7fff irq 119,120 on simplebus1 l2cache0: mem 0xa02000-0xa02fff irq 124 on simplebus0 l2cache0: Part number: 0x3, release: 0x7 l2cache0: L2 Cache enabled: 1024KB/32B 16 ways imx_iomux0: mem 0x20e0000-0x20e3fff irq 32 on simplebus1 gic0: mem 0xa01000-0xa01fff,0xa00100-0xa001ff on simplebus0 gic0: pn 0x390, arch 0x1, rev 0x2, implementer 0x43b irqs 160 imx_gpt0: mem 0x2098000-0x209bfff irq 87 on simplebus1 Event timer "iMXGPT" frequency 66000000 Hz quality 800 Timecounter "iMXGPT" frequency 66000000 Hz quality 1000 mp_tmr0: mem 0xa00200-0xa002ff,0xa00600-0xa006ff irq 27,29 on simplebus0 Event timer "MPCore" frequency 492000000 Hz quality 1000 gpio0: mem 0x209c000-0x209ffff irq 98,99 on simplebus1 gpiobus0: on gpio0 gpioc0: on gpio0 gpio1: mem 0x20a0000-0x20a3fff irq 100,101 on simplebus1 gpiobus1: on gpio1 gpioc1: on gpio1 gpio2: mem 0x20a4000-0x20a7fff irq 102,103 on simplebus1 gpiobus2: on gpio2 gpioc2: on gpio2 gpio3: mem 0x20a8000-0x20abfff irq 104,105 on simplebus1 gpiobus3: on gpio3 gpioc3: on gpio3 gpio4: mem 0x20ac000-0x20affff irq 106,107 on simplebus1 gpiobus4: on gpio4 gpioc4: on gpio4 gpio5: mem 0x20b0000-0x20b3fff irq 108,109 on simplebus1 gpiobus5: on gpio5 gpioc5: on gpio5 gpio6: mem 0x20b4000-0x20b7fff irq 110,111 on simplebus1 gpiobus6: on gpio6 gpioc6: on gpio6 uart0: mem 0x2020000-0x2023fff irq 58 on simplebus1 uart0: console (115200,n,8,1) usbphy0: mem 0x20c9000-0x20c9fff irq 44 on simplebus1 usbphy1: mem 0x20ca000-0x20cafff irq 45 on simplebus1 ffec0: mem 0x2188000-0x218bfff irq 150,151 on simplebus2 miibus0: on ffec0 atphy0: PHY 1 on miibus0 atphy0: none, 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseSX-FDX, 1000baseT-FDX, 1000baseT-FDX-master, auto ffec0: Ethernet address: 00:1f:7b:b4:17:64 ehci0: mem 0x2184000-0x21841ff irq 75 on simplebus2 ehci0: [GIANT-LOCKED] usbus0: EHCI version 1.0 usbus0 on ehci0 ehci1: mem 0x2184200-0x21843ff irq 72 on simplebus2 ehci1: [GIANT-LOCKED] usbus1: EHCI version 1.0 usbus1 on ehci1 sdhci_imx0: mem 0x2190000-0x2193fff irq 54 on simplebus2 mmc0: on sdhci_imx0 sdhci_imx1: mem 0x2198000-0x219bfff irq 56 on simplebus2 mmc1: on sdhci_imx1 Timecounters tick every 2.000 msec usbus0: 480Mbps High Speed USB v2.0 usbus1: 480Mbps High Speed USB v2.0 mmc0: No compatible cards found on bus ugen1.1: at usbus0 uhub0: on usbus0 Freescale> at usbus1 uhub1: on usbus1 mmc1: CMD7 failed, RESULT: 1 sdhci_imx1-slot0: Got data interrupt 0x00000002, but there is no active command. sdhci_imx1-slot0: ============== REGISTER DUMP ============== sdhci_imx1-slot0: Sys addr: 0x00000000 | Version: 0x00000002 sdhci_imx1-slot0: Blk size: 0x00000040 | Blk cnt: 0x00000001 sdhci_imx1-slot0: Argument: 0x00010000 | Trn mode: 0x00000012 sdhci_imx1-slot0: Present: 0x00fd0000 | Host ctl: 0x00000001 sdhci_imx1-slot0: Power: 0x0000000d | Blk gap: 0x00000080 sdhci_imx1-slot0: Wake-up: 0x00000000 | Clock: 0x0000fa07 sdhci_imx1-slot0: Timeout: 0x00000006 | Int stat: 0x00000000 sdhci_imx1-slot0: Int enab: 0x017f00fb | Sig enab: 0x017f00fb sdhci_imx1-slot0: AC12 err: 0x00000000 | Slot int: 0x00000000 sdhci_imx1-slot0: Caps: 0x0377c800 | Max curr: 0x80000012 sdhci_imx1-slot0: =========================================== mmcsd0: 16GB at mmc1 50.0MHz/4bit/65535-block random: unblocking device. Release APs Root mount waiting for: usbus1 usbus0 uhub0: 1 port with 1 removable, self powered uhub1: 1 port with 1 removable, self powered Spurious interrupt detected ugen1.2: at usbus1 uhub2: on usbus1 Root mount waiting for: usbus1 uhub2: 4 ports with 3 removable, self powered Root mount waiting for: usbus1 ugen1.3: at usbus1 uhub3: on usbus1 uhub3: 4 ports with 4 removable, self powered Root mount waiting for: usbus1 ugen1.4: at usbus1 umass0: on usbus1 da0 at umass-sim0 bus 0 scbus0 target 0 lun 0 da0: Fixed Direct Access SCSI device da0: Serial Number 100 da0: 40.000MB/s transfers da0: 57231MB (117210240 512 byte sectors: 255H 63S/T 7296C) da0: quirks=0x2 Root mount waiting for: usbus1 Root mount waiting for: usbus1 ugen1.5: at usbus1 umass1: on usbus1 Trying to mount root from ufs:/dev/mmcsd0s2a [rw,noatime]... da1 at umass-sim1 bus 1 scbus1 target 0 lun 0 da1: Fixed Direct Access SPC-2 SCSI device da1: Serial Numwbaerrn i2nHgB:5 0nSoN 0t i m e - o fd-ad1a:y 4c0l.o0c0k0 MrBe/gsi sttrearnesdf,e rssy s tdeam1 :t i1m5e2 6w2i7lMlB n(o3t1 2b5e8 1s8e0t8 a5c1c2u rbaytteel ys e ctors: 255H 63S/T 19457C) da1: quirks=0x2 Setting hostuuid: 48a01975-1723-11e5-8c5f-001f7bb41764. Setting hostid: 0xdb3b3790. No suitable dump device was found. Starting file system checks: /dev/mmcsd0s2a: FILE SYSTEM CLEAN; SKIPPING CHECKS /dev/mmcsd0s2a: clean, 3583405 free (181 frags, 447903 blocks, 0.0% fragmentation) Mounting local file systems:panic: Undefined instruction in kernel. cpuid = 3 KDB: enter: panic [ thread pid 60 tid 100050 ] Stopped at $d.7: ldrb r15, [r15, r15, ror r15]! db> bt Tracing pid 60 tid 100050 td 0xc72766a0 db_trace_self() at db_trace_self pc = 0xc2482298 lr = 0xc2042320 (db_stack_trace+0x108) sp = 0xfa77d3b0 fp = 0xfa77d3c8 r10 = 0xc25d6970 db_stack_trace() at db_stack_trace+0x108 pc = 0xc2042320 lr = 0xc2041db8 (db_command+0x388) sp = 0xfa77d3d0 fp = 0xfa77d470 r4 = 0x00000000 r5 = 0x00000000 r6 = 0x00000000 r10 = 0xc25d6970 db_command() at db_command+0x388 pc = 0xc2041db8 lr = 0xc2041a20 (db_command_loop+0x74) sp = 0xfa77d478 fp = 0xfa77d488 r4 = 0xc24ce3e7 r5 = 0xc24dfb1f r6 = 0xc25d695c r7 = 0xfa77d668 r8 = 0xc25cd9e0 r9 = 0xc2579794 r10 = 0xc25cd9e4 db_command_loop() at db_command_loop+0x74 pc = 0xc2041a20 lr = 0xc20445e4 (db_trap+0x108) sp = 0xfa77d490 fp = 0xfa77d5a8 --More-- r4 = 0x00000000 r5 = 0xc25d6968 r6 = 0xc25cda08 r10 = 0xc25cd9e4 db_trap() at db_trap+0x108 pc = 0xc20445e4 lr = 0xc21f3f90 (kdb_trap+0x184) sp = 0xfa77d5b0 fp = 0xfa77d5d8 r4 = 0x00000000 r5 = 0x00000001 r6 = 0xc25cda08 r7 = 0xfa77d668 kdb_trap() at kdb_trap+0x184 pc = 0xc21f3f90 lr = 0xc249c210 (undefinedinstruction+0x3a8) sp = 0xfa77d5e0 fp = 0xfa77d660 r4 = 0x00000000 r5 = 0x00000000 r6 = 0xc249bdb8 r7 = 0xe7ffffff r8 = 0xc72766a0 r9 = 0xc21f36e8 r10 = 0xfa77d668 undefinedinstruction() at undefinedinstruction+0x3a8 pc = 0xc249c210 lr = 0xc2483920 (exception_exit) sp = 0xfa77d668 fp = 0xfa77d700 r4 = 0xc24dfb74 r5 = 0x00000001 r6 = 0xc25be5a0 r7 = 0xc25be610 r8 = 0xfa77d744 r9 = 0xc25d8160 --More-- r10 = 0xc72766a0 exception_exit() at exception_exit pc = 0xc2483920 lr = 0xc21f36d8 (kdb_enter+0x48) sp = 0xfa77d6f8 fp = 0xfa77d700 r0 = 0xc25cd9f4 r1 = 0x00000000 r2 = 0x00000001 r3 = 0xc24e2302 r4 = 0xc24dfb74 r5 = 0x00000001 r6 = 0xc25be5a0 r7 = 0xc25be610 r8 = 0xfa77d744 r9 = 0xc25d8160 r10 = 0xc72766a0 r12 = 0x00000000 $a.8() at $a.8 pc = 0xc21f36ec lr = 0xc21abd40 (vpanic+0x164) sp = 0xfa77d708 fp = 0xfa77d728 r4 = 0x00000100 r10 = 0xc72766a0 vpanic() at vpanic+0x164 pc = 0xc21abd40 lr = 0xc21abbdc (vpanic) sp = 0xfa77d730 fp = 0xfa77d738 r4 = 0x00000000 r5 = 0x00000000 r6 = 0xc249bdb8 r7 = 0xe28fc600 r8 = 0xc72766a0 r9 = 0xc737f040 --More-- r10 = 0xfa77d7d8 vpanic() at vpanic pc = 0xc21abbdc lr = 0xc249c2ac (unwind_stack_one) sp = 0xfa77d740 fp = 0xfa77d7d0 r4 = 0xc72766a0 r5 = 0xc737f040 r6 = 0xfa77d7d8 r7 = 0xfa77d738 r8 = 0xc21abbdc r9 = 0xfa77d750 r10 = 0xfa77d744 unwind_stack_one() at unwind_stack_one pc = 0xc249c2ac lr = 0xc2483920 (exception_exit) sp = 0xfa77d7d8 fp = 0xfa77d870 r4 = 0xc73883ac r5 = 0xc73883b0 r6 = 0xc73883b0 r7 = 0x00000002 r8 = 0xc2596af4 r9 = 0xc25d8918 r10 = 0xc7388340 exception_exit() at exception_exit pc = 0xc2483920 lr = 0xc737f3d4 (fdesc_init+0x20) sp = 0xfa77d868 fp = 0xfa77d870 r0 = 0xc7388570 r1 = 0xc7380065 r2 = 0x00000000 r3 = 0x00000000 --More-- r4 = 0xc73883ac r5 = 0xc73883b0 r6 = 0xc73883b0 r7 = 0x00000002 r8 = 0xc2596af4 r9 = 0xc25d8918 r10 = 0xc7388340 r12 = 0xc738faa0 $a() at $a+0x198 pc = 0xc737f040 lr = 0xc226554c (vfs_modevent+0x618) sp = 0xfa77d878 fp = 0xfa77d8a8 r4 = 0xfa77d8a8 r5 = 0xc2446760 r6 = 0xc70cea20 r7 = 0xc277a08c r8 = 0xc73883ac r9 = 0xc7388340 vfs_modevent() at vfs_modevent+0x618 pc = 0xc226554c lr = 0xc2190328 (module_register_init+0x1fc) sp = 0xfa77d8b0 fp = 0xfa77d8e0 r4 = 0xc25d7f48 r5 = 0xc73800e4 r6 = 0xc70a1440 r7 = 0xc7380008 r8 = 0xc25d7f70 r9 = 0xc25be378 module_register_init() at module_register_init+0x1fc pc = 0xc2190328 lr = 0xc2181e4c (linker_load_module+0xcb8) sp = 0xfa77d8e8 fp = 0xfa77db40 r4 = 0xc25d7f70 r5 = 0xc73800e4 --More-- r6 = 0xc25bcec0 r7 = 0xc73800e4 r8 = 0xc70a1440 r9 = 0xc25bce90 r10 = 0xc70cea60 linker_load_module() at linker_load_module+0xcb8 pc = 0xc2181e4c lr = 0xc2183d90 (kern_kldload+0x128) sp = 0xfa77db48 fp = 0xfa77db78 r4 = 0xfa77db84 r5 = 0xc709a7f0 r6 = 0x00000000 r7 = 0x00000001 r8 = 0xc25bce90 r9 = 0xc25bcec0 r10 = 0xc72766a0 kern_kldload() at kern_kldload+0x128 pc = 0xc2183d90 lr = 0xc2264ed8 (vfs_byname_kld+0x34) sp = 0xfa77db80 fp = 0xfa77db98 r4 = 0xfa77dbe4 r5 = 0xc72766a0 r6 = 0xc709a7f0 r7 = 0x00000000 r8 = 0xc7030cd0 r9 = 0x00000000 vfs_byname_kld() at vfs_byname_kld+0x34 pc = 0xc2264ed8 lr = 0xc22681e8 (vfs_donmount+0x990) sp = 0xfa77dba0 fp = 0xfa77ddb8 r4 = 0x00000000 r5 = 0x000000ff --More-- r6 = 0xc2596be0 r7 = 0x00000000 vfs_donmount() at vfs_donmount+0x990 pc = 0xc22681e8 lr = 0xc2267838 (sys_nmount+0x64) sp = 0xfa77ddc0 fp = 0xfa77ddd8 r4 = 0xc72766a0 r5 = 0x00000000 r6 = 0x00000000 r7 = 0x00000000 r8 = 0xfa77ddf0 r9 = 0x00000000 r10 = 0xc726c000 sys_nmount() at sys_nmount+0x64 pc = 0xc2267838 lr = 0xc249a948 (swi_handler+0x4b8) sp = 0xfa77dde0 fp = 0xfa77de50 r4 = 0xc72766a0 r5 = 0xbfbff394 r6 = 0x60000013 r10 = 0xc726c000 swi_handler() at swi_handler+0x4b8 pc = 0xc249a948 lr = 0xc24838b0 (swi_exit) sp = 0xfa77de58 fp = 0xbfbff3b8 r4 = 0x2081c198 r5 = 0xbfbff394 r6 = 0xbfbff390 r7 = 0x0000017a r8 = 0x00000000 r9 = 0x00014708 r10 = 0x000155c0 --More-- swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xfa77de58 fp = 0xbfbff3b8 db> show all pcpu Current CPU: 3 cpuid = 0 dynamic pcpu = 0x15ba80 curthread = 0xc6c5a9f0: pid 10 "idle: cpu0" curpcb = 0xe1ab7ea8 fpcurthread = none idlethread = 0xc6c5a9f0: tid 100002 "idle: cpu0" cpuid = 1 dynamic pcpu = 0x1f500a80 curthread = 0xc6c5a6a0: pid 10 "idle: cpu1" curpcb = 0xe1abaea8 fpcurthread = none idlethread = 0xc6c5a6a0: tid 100003 "idle: cpu1" cpuid = 2 dynamic pcpu = 0x1f501a80 curthread = 0xc6c5a350: pid 10 "idle: cpu2" curpcb = 0xe1abdea8 --More-- fpcurthread = 0xc70a99f0: pid 59 "sh" idlethread = 0xc6c5a350: tid 100004 "idle: cpu2" cpuid = 3 dynamic pcpu = 0x1f502a80 curthread = 0xc72766a0: pid 60 "mount" curpcb = 0xfa77dea8 fpcurthread = 0xc72766a0: pid 60 "mount" idlethread = 0xc6c5a000: tid 100005 "idle: cpu3" db> where 59 Tracing pid 59 tid 100049 td 0xc70a99f0 cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xfa761ae8 fp = 0xfa761b20 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xfa761b28 fp = 0xfa761b40 r4 = 0x00000000 r5 = 0x000af1a6 r6 = 0xc70a99f0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0x00000000 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204d24 (sleepq_catch_signals+0xb4) sp = 0xfa761b48 fp = 0xfa761b90 r4 = 0xc70a99f0 r5 = 0xc7206a68 r6 = 0x0000006c r7 = 0x00000000 r8 = 0x00000002 r9 = 0xc7206a68 sleepq_catch_signals() at sleepq_catch_signals+0xb4 pc = 0xc2204d24 lr = 0xc2204bf8 (sleepq_wait_sig+0xc) sp = 0xfa761b98 fp = 0xfa761ba0 --More-- r4 = 0xc70a99f0 r5 = 0xc7206a68 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x0000006c r10 = 0xc7206b14 sleepq_wait_sig() at sleepq_wait_sig+0xc pc = 0xc2204bf8 lr = 0xc21b6da8 (_sleep+0x464) sp = 0xfa761ba8 fp = 0xfa761c08 r4 = 0xc70a99f0 r10 = 0xc7206b14 _sleep() at _sleep+0x464 pc = 0xc21b6da8 lr = 0xc2167520 (kern_wait6+0x7dc) sp = 0xfa761c10 fp = 0xfa761c98 r4 = 0x00000000 r5 = 0x00000007 r6 = 0x00000000 r7 = 0x00000000 r8 = 0xc70a99f0 r9 = 0xc7206b24 r10 = 0x00000000 kern_wait6() at kern_wait6+0x7dc pc = 0xc2167520 lr = 0xc2166bfc (sys_wait4+0x84) sp = 0xfa761ca0 fp = 0xfa761dd8 r4 = 0x00000030 r5 = 0x00000000 r6 = 0x00000000 r7 = 0xfa761cb4 --More-- r8 = 0xfa761df8 r9 = 0x00000000 r10 = 0xc7206a68 sys_wait4() at sys_wait4+0x84 pc = 0xc2166bfc lr = 0xc249a948 (swi_handler+0x4b8) sp = 0xfa761de0 fp = 0xfa761e50 r4 = 0xc70a99f0 r5 = 0x00000000 r6 = 0x60000013 r7 = 0x00000000 r8 = 0xfa761df0 r10 = 0xc7206a68 swi_handler() at swi_handler+0x4b8 pc = 0xc249a948 lr = 0xc24838b0 (swi_exit) sp = 0xfa761e58 fp = 0xbfbfe8e8 r4 = 0x00000001 r5 = 0x00000000 r6 = 0xbfbfe878 r7 = 0x00000007 r8 = 0x00031dd0 r9 = 0x00000001 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xfa761e58 fp = 0xbfbfe8e8 db> where 60 Tracing pid 60 tid 100050 td 0xc72766a0 db_trace_self() at db_trace_self pc = 0xc2482298 lr = 0xc2042320 (db_stack_trace+0x108) sp = 0xfa77d3b0 fp = 0xfa77d3c8 r10 = 0xc25d6970 db_stack_trace() at db_stack_trace+0x108 pc = 0xc2042320 lr = 0xc2041db8 (db_command+0x388) sp = 0xfa77d3d0 fp = 0xfa77d470 r4 = 0x00000000 r5 = 0x00000000 r6 = 0x00000072 r10 = 0xc25d6970 db_command() at db_command+0x388 pc = 0xc2041db8 lr = 0xc2041a20 (db_command_loop+0x74) sp = 0xfa77d478 fp = 0xfa77d488 r4 = 0xc24ce3e7 r5 = 0xc24dfb1f r6 = 0xc25d695c r7 = 0xfa77d668 r8 = 0xc25cd9e0 r9 = 0xc2579794 r10 = 0xc25cd9e4 db_command_loop() at db_command_loop+0x74 pc = 0xc2041a20 lr = 0xc20445e4 (db_trap+0x108) sp = 0xfa77d490 fp = 0xfa77d5a8 --More-- r4 = 0x00000000 r5 = 0xc25d6968 r6 = 0xc25cda08 r10 = 0xc25cd9e4 db_trap() at db_trap+0x108 pc = 0xc20445e4 lr = 0xc21f3f90 (kdb_trap+0x184) sp = 0xfa77d5b0 fp = 0xfa77d5d8 r4 = 0x00000000 r5 = 0x00000001 r6 = 0xc25cda08 r7 = 0xfa77d668 kdb_trap() at kdb_trap+0x184 pc = 0xc21f3f90 lr = 0xc249c210 (undefinedinstruction+0x3a8) sp = 0xfa77d5e0 fp = 0xfa77d660 r4 = 0x00000000 r5 = 0x00000000 r6 = 0xc249bdb8 r7 = 0xe7ffffff r8 = 0xc72766a0 r9 = 0xc21f36e8 r10 = 0xfa77d668 undefinedinstruction() at undefinedinstruction+0x3a8 pc = 0xc249c210 lr = 0xc2483920 (exception_exit) sp = 0xfa77d668 fp = 0xfa77d700 r4 = 0xc24dfb74 r5 = 0x00000001 r6 = 0xc25be5a0 r7 = 0xc25be610 r8 = 0xfa77d744 r9 = 0xc25d8160 --More-- r10 = 0xc72766a0 exception_exit() at exception_exit pc = 0xc2483920 lr = 0xc21f36d8 (kdb_enter+0x48) sp = 0xfa77d6f8 fp = 0xfa77d700 r0 = 0xc25cd9f4 r1 = 0x00000000 r2 = 0x00000001 r3 = 0xc24e2302 r4 = 0xc24dfb74 r5 = 0x00000001 r6 = 0xc25be5a0 r7 = 0xc25be610 r8 = 0xfa77d744 r9 = 0xc25d8160 r10 = 0xc72766a0 r12 = 0x00000000 $a.8() at $a.8 pc = 0xc21f36ec lr = 0xc21abd40 (vpanic+0x164) sp = 0xfa77d708 fp = 0xfa77d728 r4 = 0x00000100 r10 = 0xc72766a0 vpanic() at vpanic+0x164 pc = 0xc21abd40 lr = 0xc21abbdc (vpanic) sp = 0xfa77d730 fp = 0xfa77d738 r4 = 0x00000000 r5 = 0x00000000 r6 = 0xc249bdb8 r7 = 0xe28fc600 r8 = 0xc72766a0 r9 = 0xc737f040 --More-- r10 = 0xfa77d7d8 vpanic() at vpanic pc = 0xc21abbdc lr = 0xc249c2ac (unwind_stack_one) sp = 0xfa77d740 fp = 0xfa77d7d0 r4 = 0xc72766a0 r5 = 0xc737f040 r6 = 0xfa77d7d8 r7 = 0xfa77d738 r8 = 0xc21abbdc r9 = 0xfa77d750 r10 = 0xfa77d744 unwind_stack_one() at unwind_stack_one pc = 0xc249c2ac lr = 0xc2483920 (exception_exit) sp = 0xfa77d7d8 fp = 0xfa77d870 r4 = 0xc73883ac r5 = 0xc73883b0 r6 = 0xc73883b0 r7 = 0x00000002 r8 = 0xc2596af4 r9 = 0xc25d8918 r10 = 0xc7388340 exception_exit() at exception_exit pc = 0xc2483920 lr = 0xc737f3d4 (fdesc_init+0x20) sp = 0xfa77d868 fp = 0xfa77d870 r0 = 0xc7388570 r1 = 0xc7380065 r2 = 0x00000000 r3 = 0x00000000 --More-- r4 = 0xc73883ac r5 = 0xc73883b0 r6 = 0xc73883b0 r7 = 0x00000002 r8 = 0xc2596af4 r9 = 0xc25d8918 r10 = 0xc7388340 r12 = 0xc738faa0 $a() at $a+0x198 pc = 0xc737f040 lr = 0xc226554c (vfs_modevent+0x618) sp = 0xfa77d878 fp = 0xfa77d8a8 r4 = 0xfa77d8a8 r5 = 0xc2446760 r6 = 0xc70cea20 r7 = 0xc277a08c r8 = 0xc73883ac r9 = 0xc7388340 vfs_modevent() at vfs_modevent+0x618 pc = 0xc226554c lr = 0xc2190328 (module_register_init+0x1fc) sp = 0xfa77d8b0 fp = 0xfa77d8e0 r4 = 0xc25d7f48 r5 = 0xc73800e4 r6 = 0xc70a1440 r7 = 0xc7380008 r8 = 0xc25d7f70 r9 = 0xc25be378 module_register_init() at module_register_init+0x1fc pc = 0xc2190328 lr = 0xc2181e4c (linker_load_module+0xcb8) sp = 0xfa77d8e8 fp = 0xfa77db40 r4 = 0xc25d7f70 r5 = 0xc73800e4 --More-- r6 = 0xc25bcec0 r7 = 0xc73800e4 r8 = 0xc70a1440 r9 = 0xc25bce90 r10 = 0xc70cea60 linker_load_module() at linker_load_module+0xcb8 pc = 0xc2181e4c lr = 0xc2183d90 (kern_kldload+0x128) sp = 0xfa77db48 fp = 0xfa77db78 r4 = 0xfa77db84 r5 = 0xc709a7f0 r6 = 0x00000000 r7 = 0x00000001 r8 = 0xc25bce90 r9 = 0xc25bcec0 r10 = 0xc72766a0 kern_kldload() at kern_kldload+0x128 pc = 0xc2183d90 lr = 0xc2264ed8 (vfs_byname_kld+0x34) sp = 0xfa77db80 fp = 0xfa77db98 r4 = 0xfa77dbe4 r5 = 0xc72766a0 r6 = 0xc709a7f0 r7 = 0x00000000 r8 = 0xc7030cd0 r9 = 0x00000000 vfs_byname_kld() at vfs_byname_kld+0x34 pc = 0xc2264ed8 lr = 0xc22681e8 (vfs_donmount+0x990) sp = 0xfa77dba0 fp = 0xfa77ddb8 r4 = 0x00000000 r5 = 0x000000ff --More-- r6 = 0xc2596be0 r7 = 0x00000000 vfs_donmount() at vfs_donmount+0x990 pc = 0xc22681e8 lr = 0xc2267838 (sys_nmount+0x64) sp = 0xfa77ddc0 fp = 0xfa77ddd8 r4 = 0xc72766a0 r5 = 0x00000000 r6 = 0x00000000 r7 = 0x00000000 r8 = 0xfa77ddf0 r9 = 0x00000000 r10 = 0xc726c000 sys_nmount() at sys_nmount+0x64 pc = 0xc2267838 lr = 0xc249a948 (swi_handler+0x4b8) sp = 0xfa77dde0 fp = 0xfa77de50 r4 = 0xc72766a0 r5 = 0xbfbff394 r6 = 0x60000013 r10 = 0xc726c000 swi_handler() at swi_handler+0x4b8 pc = 0xc249a948 lr = 0xc24838b0 (swi_exit) sp = 0xfa77de58 fp = 0xbfbff3b8 r4 = 0x2081c198 r5 = 0xbfbff394 r6 = 0xbfbff390 r7 = 0x0000017a r8 = 0x00000000 r9 = 0x00014708 r10 = 0x000155c0 --More-- swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xfa77de58 fp = 0xbfbff3b8 db> show threads 100050 (0xc72766a0) (stack 0xfa77c000) db_trace_self() at db_trace_self pc = 0xc2482298 lr = 0xc20478b4 (db_show_threads+0x80) sp = 0xfa77d2a8 fp = 0xfa77d3c8 r10 = 0xc25d6970 db_show_threads() at db_show_threads+0x80 pc = 0xc20478b4 lr = 0xc2041db8 (db_command+0x388) sp = 0xfa77d3d0 fp = 0xfa77d470 r4 = 0x00000000 r5 = 0x00000000 r6 = 0x00000065 r7 = 0xc2047834 r8 = 0x00000001 r9 = 0xc2579278 db_command() at db_command+0x388 pc = 0xc2041db8 lr = 0xc2041a20 (db_command_loop+0x74) sp = 0xfa77d478 fp = 0xfa77d488 r4 = 0xc24ce3e7 r5 = 0xc24dfb1f r6 = 0xc25d695c r7 = 0xfa77d668 r8 = 0xc25cd9e0 r9 = 0xc2579794 r10 = 0xc25cd9e4 db_command_loop() at db_command_loop+0x74 pc = 0xc2041a20 lr = 0xc20445e4 (db_trap+0x108) sp = 0xfa77d490 fp = 0xfa77d5a8 --More-- r4 = 0x00000000 r5 = 0xc25d6968 r6 = 0xc25cda08 r10 = 0xc25cd9e4 db_trap() at db_trap+0x108 pc = 0xc20445e4 lr = 0xc21f3f90 (kdb_trap+0x184) sp = 0xfa77d5b0 fp = 0xfa77d5d8 r4 = 0x00000000 r5 = 0x00000001 r6 = 0xc25cda08 r7 = 0xfa77d668 kdb_trap() at kdb_trap+0x184 pc = 0xc21f3f90 lr = 0xc249c210 (undefinedinstruction+0x3a8) sp = 0xfa77d5e0 fp = 0xfa77d660 r4 = 0x00000000 r5 = 0x00000000 r6 = 0xc249bdb8 r7 = 0xe7ffffff r8 = 0xc72766a0 r9 = 0xc21f36e8 r10 = 0xfa77d668 undefinedinstruction() at undefinedinstruction+0x3a8 pc = 0xc249c210 lr = 0xc2483920 (exception_exit) sp = 0xfa77d668 fp = 0xfa77d700 r4 = 0xc24dfb74 r5 = 0x00000001 r6 = 0xc25be5a0 r7 = 0xc25be610 r8 = 0xfa77d744 r9 = 0xc25d8160 --More-- r10 = 0xc72766a0 exception_exit() at exception_exit pc = 0xc2483920 lr = 0xc21f36d8 (kdb_enter+0x48) sp = 0xfa77d6f8 fp = 0xfa77d700 r0 = 0xc25cd9f4 r1 = 0x00000000 r2 = 0x00000001 r3 = 0xc24e2302 r4 = 0xc24dfb74 r5 = 0x00000001 r6 = 0xc25be5a0 r7 = 0xc25be610 r8 = 0xfa77d744 r9 = 0xc25d8160 r10 = 0xc72766a0 r12 = 0x00000000 $a.8() at $a.8 pc = 0xc21f36ec lr = 0xc21abd40 (vpanic+0x164) sp = 0xfa77d708 fp = 0xfa77d728 r4 = 0x00000100 r10 = 0xc72766a0 vpanic() at vpanic+0x164 pc = 0xc21abd40 lr = 0xc21abbdc (vpanic) sp = 0xfa77d730 fp = 0xfa77d738 r4 = 0x00000000 r5 = 0x00000000 r6 = 0xc249bdb8 r7 = 0xe28fc600 r8 = 0xc72766a0 r9 = 0xc737f040 --More-- r10 = 0xfa77d7d8 vpanic() at vpanic pc = 0xc21abbdc lr = 0xc249c2ac (unwind_stack_one) sp = 0xfa77d740 fp = 0xfa77d7d0 r4 = 0xc72766a0 r5 = 0xc737f040 r6 = 0xfa77d7d8 r7 = 0xfa77d738 r8 = 0xc21abbdc r9 = 0xfa77d750 r10 = 0xfa77d744 unwind_stack_one() at unwind_stack_one pc = 0xc249c2ac lr = 0xc2483920 (exception_exit) sp = 0xfa77d7d8 fp = 0xfa77d870 r4 = 0xc73883ac r5 = 0xc73883b0 r6 = 0xc73883b0 r7 = 0x00000002 r8 = 0xc2596af4 r9 = 0xc25d8918 r10 = 0xc7388340 exception_exit() at exception_exit pc = 0xc2483920 lr = 0xc737f3d4 (fdesc_init+0x20) sp = 0xfa77d868 fp = 0xfa77d870 r0 = 0xc7388570 r1 = 0xc7380065 r2 = 0x00000000 r3 = 0x00000000 --More-- r4 = 0xc73883ac r5 = 0xc73883b0 r6 = 0xc73883b0 r7 = 0x00000002 r8 = 0xc2596af4 r9 = 0xc25d8918 r10 = 0xc7388340 r12 = 0xc738faa0 $a() at $a+0x198 pc = 0xc737f040 lr = 0xc226554c (vfs_modevent+0x618) sp = 0xfa77d878 fp = 0xfa77d8a8 r4 = 0xfa77d8a8 r5 = 0xc2446760 r6 = 0xc70cea20 r7 = 0xc277a08c r8 = 0xc73883ac r9 = 0xc7388340 vfs_modevent() at vfs_modevent+0x618 pc = 0xc226554c lr = 0xc2190328 (module_register_init+0x1fc) sp = 0xfa77d8b0 fp = 0xfa77d8e0 r4 = 0xc25d7f48 r5 = 0xc73800e4 r6 = 0xc70a1440 r7 = 0xc7380008 r8 = 0xc25d7f70 r9 = 0xc25be378 module_register_init() at module_register_init+0x1fc pc = 0xc2190328 lr = 0xc2181e4c (linker_load_module+0xcb8) sp = 0xfa77d8e8 fp = 0xfa77db40 r4 = 0xc25d7f70 r5 = 0xc73800e4 --More-- r6 = 0xc25bcec0 r7 = 0xc73800e4 r8 = 0xc70a1440 r9 = 0xc25bce90 r10 = 0xc70cea60 linker_load_module() at linker_load_module+0xcb8 pc = 0xc2181e4c lr = 0xc2183d90 (kern_kldload+0x128) sp = 0xfa77db48 fp = 0xfa77db78 r4 = 0xfa77db84 r5 = 0xc709a7f0 r6 = 0x00000000 r7 = 0x00000001 r8 = 0xc25bce90 r9 = 0xc25bcec0 r10 = 0xc72766a0 kern_kldload() at kern_kldload+0x128 pc = 0xc2183d90 lr = 0xc2264ed8 (vfs_byname_kld+0x34) sp = 0xfa77db80 fp = 0xfa77db98 r4 = 0xfa77dbe4 r5 = 0xc72766a0 r6 = 0xc709a7f0 r7 = 0x00000000 r8 = 0xc7030cd0 r9 = 0x00000000 vfs_byname_kld() at vfs_byname_kld+0x34 pc = 0xc2264ed8 lr = 0xc22681e8 (vfs_donmount+0x990) sp = 0xfa77dba0 fp = 0xfa77ddb8 r4 = 0x00000000 r5 = 0x000000ff --More-- r6 = 0xc2596be0 r7 = 0x00000000 vfs_donmount() at vfs_donmount+0x990 pc = 0xc22681e8 lr = 0xc2267838 (sys_nmount+0x64) sp = 0xfa77ddc0 fp = 0xfa77ddd8 r4 = 0xc72766a0 r5 = 0x00000000 r6 = 0x00000000 r7 = 0x00000000 r8 = 0xfa77ddf0 r9 = 0x00000000 r10 = 0xc726c000 sys_nmount() at sys_nmount+0x64 pc = 0xc2267838 lr = 0xc249a948 (swi_handler+0x4b8) sp = 0xfa77dde0 fp = 0xfa77de50 r4 = 0xc72766a0 r5 = 0xbfbff394 r6 = 0x60000013 r10 = 0xc726c000 swi_handler() at swi_handler+0x4b8 pc = 0xc249a948 lr = 0xc24838b0 (swi_exit) sp = 0xfa77de58 fp = 0xbfbff3b8 r4 = 0x2081c198 r5 = 0xbfbff394 r6 = 0xbfbff390 r7 = 0x0000017a r8 = 0x00000000 r9 = 0x00014708 r10 = 0x000155c0 --More-- swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xfa77de58 fp = 0xbfbff3b8 100049 (0xc70a99f0) (stack 0xfa760000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xfa761ae8 fp = 0xfa761b20 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xfa761b28 fp = 0xfa761b40 r4 = 0x00000000 r5 = 0x000af1a6 r6 = 0xc70a99f0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0x00000000 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204d24 (sleepq_catch_signals+0xb4) sp = 0xfa761b48 fp = 0xfa761b90 r4 = 0xc70a99f0 r5 = 0xc7206a68 r6 = 0x0000006c r7 = 0x00000000 r8 = 0x00000002 r9 = 0xc7206a68 sleepq_catch_signals() at sleepq_catch_signals+0xb4 --More-- pc = 0xc2204d24 lr = 0xc2204bf8 (sleepq_wait_sig+0xc) sp = 0xfa761b98 fp = 0xfa761ba0 r4 = 0xc70a99f0 r5 = 0xc7206a68 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x0000006c r10 = 0xc7206b14 sleepq_wait_sig() at sleepq_wait_sig+0xc pc = 0xc2204bf8 lr = 0xc21b6da8 (_sleep+0x464) sp = 0xfa761ba8 fp = 0xfa761c08 r4 = 0xc70a99f0 r10 = 0xc7206b14 _sleep() at _sleep+0x464 pc = 0xc21b6da8 lr = 0xc2167520 (kern_wait6+0x7dc) sp = 0xfa761c10 fp = 0xfa761c98 r4 = 0x00000000 r5 = 0x00000007 r6 = 0x00000000 r7 = 0x00000000 r8 = 0xc70a99f0 r9 = 0xc7206b24 r10 = 0x00000000 kern_wait6() at kern_wait6+0x7dc pc = 0xc2167520 lr = 0xc2166bfc (sys_wait4+0x84) sp = 0xfa761ca0 fp = 0xfa761dd8 --More-- r4 = 0x00000030 r5 = 0x00000000 r6 = 0x00000000 r7 = 0xfa761cb4 r8 = 0xfa761df8 r9 = 0x00000000 r10 = 0xc7206a68 sys_wait4() at sys_wait4+0x84 pc = 0xc2166bfc lr = 0xc249a948 (swi_handler+0x4b8) sp = 0xfa761de0 fp = 0xfa761e50 r4 = 0xc70a99f0 r5 = 0x00000000 r6 = 0x60000013 r7 = 0x00000000 r8 = 0xfa761df0 r10 = 0xc7206a68 swi_handler() at swi_handler+0x4b8 pc = 0xc249a948 lr = 0xc24838b0 (swi_exit) sp = 0xfa761e58 fp = 0xbfbfe8e8 r4 = 0x00000001 r5 = 0x00000000 r6 = 0xbfbfe878 r7 = 0x00000007 r8 = 0x00031dd0 r9 = 0x00000001 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xfa761e58 fp = 0xbfbfe8e8 --More-- 100048 (0xc71b5350) (stack 0xfa758000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xfa759ae8 fp = 0xfa759b20 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xfa759b28 fp = 0xfa759b40 r4 = 0x00000000 r5 = 0x0021157c r6 = 0xc71b5350 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0x00000000 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204d24 (sleepq_catch_signals+0xb4) sp = 0xfa759b48 fp = 0xfa759b90 r4 = 0xc71b5350 r5 = 0xc71ab6f0 r6 = 0x0000006c r7 = 0x00000000 r8 = 0x00000046 r9 = 0xc71ab6f0 sleepq_catch_signals() at sleepq_catch_signals+0xb4 pc = 0xc2204d24 lr = 0xc2204bf8 (sleepq_wait_sig+0xc) sp = 0xfa759b98 fp = 0xfa759ba0 r4 = 0xc71b5350 r5 = 0xc71ab6f0 --More-- r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x0000006c r10 = 0xc71ab79c sleepq_wait_sig() at sleepq_wait_sig+0xc pc = 0xc2204bf8 lr = 0xc21b6da8 (_sleep+0x464) sp = 0xfa759ba8 fp = 0xfa759c08 r4 = 0xc71b5350 r10 = 0xc71ab79c _sleep() at _sleep+0x464 pc = 0xc21b6da8 lr = 0xc2167520 (kern_wait6+0x7dc) sp = 0xfa759c10 fp = 0xfa759c98 r4 = 0x00000000 r5 = 0x00000007 r6 = 0x00000000 r7 = 0x00000000 r8 = 0xc71b5350 r9 = 0xc71ab7ac r10 = 0x00000000 kern_wait6() at kern_wait6+0x7dc pc = 0xc2167520 lr = 0xc2166bfc (sys_wait4+0x84) sp = 0xfa759ca0 fp = 0xfa759dd8 r4 = 0x00000030 r5 = 0x00000000 r6 = 0x00000000 r7 = 0xfa759cb4 r8 = 0xfa759df8 r9 = 0x00000000 --More-- r10 = 0xc71ab6f0 sys_wait4() at sys_wait4+0x84 pc = 0xc2166bfc lr = 0xc249a948 (swi_handler+0x4b8) sp = 0xfa759de0 fp = 0xfa759e50 r4 = 0xc71b5350 r5 = 0x00000000 r6 = 0x60000013 r7 = 0x00000000 r8 = 0xfa759df0 r10 = 0xc71ab6f0 swi_handler() at swi_handler+0x4b8 pc = 0xc249a948 lr = 0xc24838b0 (swi_exit) sp = 0xfa759e58 fp = 0xbfbffa30 r4 = 0x00000001 r5 = 0x00000000 r6 = 0xbfbff9c0 r7 = 0x00000007 r8 = 0x00031dd0 r9 = 0x00000001 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xfa759e58 fp = 0xbfbffa30 100046 (0xc7033350) (stack 0xe1df6000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1df7d00 fp = 0xe1df7d38 --More-- sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1df7d40 fp = 0xe1df7d58 r4 = 0x00000000 r5 = 0x0000d4ce r6 = 0xc7033350 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0x00000000 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc22052ac (sleepq_timedwait+0x38) sp = 0xe1df7d60 fp = 0xe1df7d70 r4 = 0xc7033350 r5 = 0x00000000 r6 = 0xc25d18b0 r7 = 0x00000000 r8 = 0xc25d7f60 r9 = 0x00000000 sleepq_timedwait() at sleepq_timedwait+0x38 pc = 0xc22052ac lr = 0xc2144d8c (_cv_timedwait_sbt+0x228) sp = 0xe1df7d78 fp = 0xe1df7dc0 r4 = 0xc25d18e8 r5 = 0xc25d18b0 r6 = 0xc258e590 r10 = 0x00000000 _cv_timedwait_sbt() at _cv_timedwait_sbt+0x228 pc = 0xc2144d8c lr = 0xc227bb08 (sched_sync+0xb3c) --More-- sp = 0xe1df7dc8 fp = 0xe1df7e30 r4 = 0xc7033350 r5 = 0x00000004 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x00000000 r10 = 0xc25d1840 sched_sync() at sched_sync+0xb3c pc = 0xc227bb08 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1df7e38 fp = 0xe1df7e50 r4 = 0xc7033350 r5 = 0xc7041000 r6 = 0xc227afcc r7 = 0x00000000 r8 = 0xe1df7e58 r9 = 0xc25d7930 r10 = 0xc25d86dc fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1df7e58 fp = 0x00000000 r4 = 0xc227afcc r5 = 0x00000000 r6 = 0xc6c5a9f0 r7 = 0x7ffb6c69 r8 = 0xc25cd790 r10 = 0xc25d86dc swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) --More-- sp = 0xe1df7e58 fp = 0x00000000 100045 (0xc70336a0) (stack 0xe1df3000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1df4ce8 fp = 0xe1df4d20 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1df4d28 fp = 0xe1df4d40 r4 = 0x00000000 r5 = 0x00001230 r6 = 0xc70336a0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc25d18d4 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc22052ac (sleepq_timedwait+0x38) sp = 0xe1df4d48 fp = 0xe1df4d58 r4 = 0xc70336a0 r5 = 0x00000060 r6 = 0xc7041378 r7 = 0xfffffed8 r8 = 0x00000000 r9 = 0x00000060 sleepq_timedwait() at sleepq_timedwait+0x38 pc = 0xc22052ac lr = 0xc21b6d88 (_sleep+0x444) sp = 0xe1df4d60 fp = 0xe1df4dc0 --More-- r4 = 0xc258e590 r5 = 0xc7041378 r6 = 0x00000100 r10 = 0xc25d18d4 _sleep() at _sleep+0x444 pc = 0xc21b6d88 lr = 0xc227bd2c (vnlru_proc+0xc4) sp = 0xe1df4dc8 fp = 0xe1df4e30 r4 = 0x00000004 r5 = 0x00000000 r6 = 0xc25d18a0 r7 = 0xfffffed8 r8 = 0xe1df4e58 r9 = 0xc7041378 r10 = 0xc25d1840 vnlru_proc() at vnlru_proc+0xc4 pc = 0xc227bd2c lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1df4e38 fp = 0xe1df4e50 r4 = 0xc70336a0 r5 = 0xc7041378 r6 = 0xc227bc68 r7 = 0x00000000 r8 = 0xe1df4e58 r9 = 0xc25d7930 r10 = 0xc25d86dc fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1df4e58 fp = 0x00000000 r4 = 0xc227bc68 r5 = 0x00000000 --More-- r6 = 0xc6c5a9f0 r7 = 0x7ffb6c69 r8 = 0xc25cd790 r10 = 0xc25d86dc swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1df4e58 fp = 0x00000000 100044 (0xc70339f0) (stack 0xe1df0000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1df1d10 fp = 0xe1df1d48 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1df1d50 fp = 0xe1df1d68 r4 = 0x00000000 r5 = 0x000141e1 r6 = 0xc70339f0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc25d1500 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc22052ac (sleepq_timedwait+0x38) sp = 0xe1df1d70 fp = 0xe1df1d80 r4 = 0xc70339f0 r5 = 0x00000054 r6 = 0xc25d1650 r7 = 0xfffffed8 --More-- r8 = 0x00000000 r9 = 0x00000054 sleepq_timedwait() at sleepq_timedwait+0x38 pc = 0xc22052ac lr = 0xc21b6d88 (_sleep+0x444) sp = 0xe1df1d88 fp = 0xe1df1de8 r4 = 0xc258e590 r5 = 0xc25d1650 r6 = 0x00000100 r10 = 0xc25d1500 _sleep() at _sleep+0x444 pc = 0xc21b6d88 lr = 0xc225b610 (buf_daemon+0x328) sp = 0xe1df1df0 fp = 0xe1df1e30 r4 = 0x0000038d r5 = 0xc25d1510 r6 = 0x00000000 r7 = 0x00000000 r8 = 0xc25d1500 r9 = 0xc25d1640 r10 = 0x00000004 buf_daemon() at buf_daemon+0x328 pc = 0xc225b610 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1df1e38 fp = 0xe1df1e50 r4 = 0xc70339f0 r5 = 0xc6c54000 r6 = 0xc225b2e8 r7 = 0x00000000 r8 = 0xe1df1e58 r9 = 0xc25d7930 r10 = 0xc25d86dc --More-- fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1df1e58 fp = 0x00000000 r4 = 0xc225b2e8 r5 = 0x00000000 r6 = 0xc6c5a9f0 r7 = 0x7ffb6c69 r8 = 0xc25cd790 r10 = 0xc25d86dc swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1df1e58 fp = 0x00000000 100055 (0xc7276000) (stack 0xfa7bd000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xfa7bed08 fp = 0xfa7bed40 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xfa7bed48 fp = 0xfa7bed60 r4 = 0x00000000 r5 = 0x00000000 r6 = 0xc7276000 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc70dc200 mi_switch() at mi_switch+0x140 --More-- pc = 0xc21b7410 lr = 0xc22052ac (sleepq_timedwait+0x38) sp = 0xfa7bed68 fp = 0xfa7bed78 r4 = 0xc7276000 r5 = 0x00000054 r6 = 0xc70dc284 r7 = 0x7fffff6c r8 = 0x00000000 r9 = 0x00000054 sleepq_timedwait() at sleepq_timedwait+0x38 pc = 0xc22052ac lr = 0xc21b6d88 (_sleep+0x444) sp = 0xfa7bed80 fp = 0xfa7bede0 r4 = 0xc258f360 r5 = 0xc70dc284 r6 = 0x00000100 r10 = 0xc70dc200 _sleep() at _sleep+0x444 pc = 0xc21b6d88 lr = 0xc23fec88 (softdep_flush+0x2e8) sp = 0xfa7bede8 fp = 0xfa7bee30 r4 = 0xc71702b0 r5 = 0x000000fa r6 = 0x00000000 r7 = 0x7fffff6c r8 = 0x00000001 r9 = 0xc7178100 r10 = 0xc7170308 softdep_flush() at softdep_flush+0x2e8 pc = 0xc23fec88 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xfa7bee38 fp = 0xfa7bee50 --More-- r4 = 0xc7276000 r5 = 0xc6c54000 r6 = 0xc23fe9a0 r7 = 0xc71702b0 r8 = 0xfa7bee58 r9 = 0xc70339f0 r10 = 0xc25d86dc fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xfa7bee58 fp = 0x00000000 r4 = 0xc23fe9a0 r5 = 0xc71702b0 r6 = 0xc6c5a9f0 r7 = 0x7ffb7c83 r8 = 0xc7033d18 r10 = 0xc25d86dc swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xfa7bee58 fp = 0x00000000 100043 (0xc7034000) (stack 0xe1ded000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1deed10 fp = 0xe1deed48 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1deed50 fp = 0xe1deed68 r4 = 0x00000000 r5 = 0x00000000 --More-- r6 = 0xc7034000 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc25dbbc0 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc22052ac (sleepq_timedwait+0x38) sp = 0xe1deed70 fp = 0xe1deed80 r4 = 0xc7034000 r5 = 0x00000000 r6 = 0xc25d4b84 r7 = 0xfffea52b r8 = 0x00000000 r9 = 0x00000000 sleepq_timedwait() at sleepq_timedwait+0x38 pc = 0xc22052ac lr = 0xc21b6d88 (_sleep+0x444) sp = 0xe1deed88 fp = 0xe1deede8 r4 = 0xc258e590 r5 = 0xc25d4b84 r6 = 0x00000100 r10 = 0xc25dbbc0 _sleep() at _sleep+0x444 pc = 0xc21b6d88 lr = 0xc24763bc (vm_pagezero+0x108) sp = 0xe1deedf0 fp = 0xe1deee30 r4 = 0x0000012b r5 = 0xfffea520 r6 = 0x00000000 r7 = 0x00000100 r8 = 0xc25d4b80 r9 = 0xc25d7930 --More-- r10 = 0xc25d86dc vm_pagezero() at vm_pagezero+0x108 pc = 0xc24763bc lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1deee38 fp = 0xe1deee50 r4 = 0xc7034000 r5 = 0xc6c54378 r6 = 0xc24762b4 r7 = 0x00000000 r8 = 0xe1deee58 r10 = 0xc25d86dc fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1deee58 fp = 0x00000000 r4 = 0xc24762b4 r5 = 0x00000000 r6 = 0xc6c5a9f0 r7 = 0x7ffb6c69 r8 = 0xc25cd790 r10 = 0xc25d86dc swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1deee58 fp = 0x00000000 100042 (0xc7034350) (stack 0xe1dea000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1debce8 fp = 0xe1debd20 sched_switch() at sched_switch+0x264 --More-- pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1debd28 fp = 0xe1debd40 r4 = 0x00000000 r5 = 0x00000000 r6 = 0xc7034350 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc25d4a98 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1debd48 fp = 0xe1debd58 r4 = 0x00000074 r5 = 0xc25d4a80 r6 = 0xc7034350 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x00000074 sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21b6db4 (_sleep+0x470) sp = 0xe1debd60 fp = 0xe1debdc0 r4 = 0xc7034350 r5 = 0xc25d4a80 r6 = 0x00000000 r10 = 0xc25d4a98 _sleep() at _sleep+0x470 pc = 0xc21b6db4 lr = 0xc246ccbc (vm_daemon+0x100) sp = 0xe1debdc8 fp = 0xe1debe30 --More-- r4 = 0xc25d4aa8 r5 = 0xc25d4a60 r6 = 0x00000004 r7 = 0xc25d4aa8 r8 = 0xc25d8144 r9 = 0x00000000 r10 = 0xc25d86dc vm_daemon() at vm_daemon+0x100 pc = 0xc246ccbc lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1debe38 fp = 0xe1debe50 r4 = 0xc7034350 r5 = 0xc6c546f0 r6 = 0xc246cbbc r7 = 0x00000000 r8 = 0xe1debe58 r9 = 0xc25d7930 r10 = 0xc25d86dc fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1debe58 fp = 0x00000000 r4 = 0xc246cbbc r5 = 0x00000000 r6 = 0xc6c5a9f0 r7 = 0x7ffb6c69 r8 = 0xc25cd790 r10 = 0xc25d86dc swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1debe58 fp = 0x00000000 --More-- 100041 (0xc70346a0) (stack 0xe1de7000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1de8cc8 fp = 0xe1de8d00 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1de8d08 fp = 0xe1de8d20 r4 = 0x00000000 r5 = 0x00026fa5 r6 = 0xc70346a0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc25dbbc0 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc22052ac (sleepq_timedwait+0x38) sp = 0xe1de8d28 fp = 0xe1de8d38 r4 = 0xc70346a0 r5 = 0x00000054 r6 = 0xc25dbc04 r7 = 0xfffffed8 r8 = 0x00000000 r9 = 0x00000054 sleepq_timedwait() at sleepq_timedwait+0x38 pc = 0xc22052ac lr = 0xc21b6d88 (_sleep+0x444) sp = 0xe1de8d40 fp = 0xe1de8da0 r4 = 0xc258e590 r5 = 0xc25dbc04 --More-- r6 = 0x00000100 r10 = 0xc25dbbc0 _sleep() at _sleep+0x444 pc = 0xc21b6d88 lr = 0xc246d988 (vm_pageout+0x240) sp = 0xe1de8da8 fp = 0xe1de8e30 r4 = 0xc25dbbd0 r5 = 0xc25dbc04 r6 = 0x00000000 r7 = 0x00000000 r8 = 0xc25dba80 r9 = 0x00000004 r10 = 0x00000000 vm_pageout() at vm_pageout+0x240 pc = 0xc246d988 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1de8e38 fp = 0xe1de8e50 r4 = 0xc70346a0 r5 = 0xc6c54a68 r6 = 0xc246d748 r7 = 0x00000000 r8 = 0xe1de8e58 r9 = 0xc25d7930 r10 = 0xc25d86dc fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1de8e58 fp = 0x00000000 r4 = 0xc246d748 r5 = 0x00000000 r6 = 0xc6c5a9f0 r7 = 0x7ffb6c69 --More-- r8 = 0xc25cd790 r10 = 0xc25d86dc swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1de8e58 fp = 0x00000000 100047 (0xc70ab000) (stack 0xe1df9000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1dfad20 fp = 0xe1dfad58 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1dfad60 fp = 0xe1dfad78 r4 = 0x00000000 r5 = 0x00000000 r6 = 0xc70ab000 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc25d49a0 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1dfad80 fp = 0xe1dfad90 r4 = 0x00000054 r5 = 0xc25d4994 r6 = 0xc70ab000 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x00000054 --More-- sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21b6db4 (_sleep+0x470) sp = 0xe1dfad98 fp = 0xe1dfadf8 r4 = 0xc70ab000 r5 = 0xc25d4994 r6 = 0x00000000 r10 = 0xc25d49a0 _sleep() at _sleep+0x470 pc = 0xc21b6db4 lr = 0xc2448d64 (uma_reclaim_worker+0xd0) sp = 0xe1dfae00 fp = 0xe1dfae30 r4 = 0xc25d4980 r5 = 0x00000000 r6 = 0xc2448c94 r7 = 0x00000000 r8 = 0xe1dfae58 r9 = 0xc25d7930 r10 = 0xc25d86dc uma_reclaim_worker() at uma_reclaim_worker+0xd0 pc = 0xc2448d64 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1dfae38 fp = 0xe1dfae50 r4 = 0xc70ab000 r5 = 0xc6c54a68 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1dfae58 fp = 0x00000000 r4 = 0xc2448c94 r5 = 0x00000000 --More-- r6 = 0xc6c5a9f0 r7 = 0x7ffb6c69 r8 = 0xc25cd790 r10 = 0xc25d86dc swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1dfae58 fp = 0x00000000 100040 (0xc70349f0) (stack 0xe1de4000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1de5c78 fp = 0xe1de5cb0 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1de5cb8 fp = 0xe1de5cd0 r4 = 0x00000000 r5 = 0x000b065a r6 = 0xc70349f0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc6cf8c04 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1de5cd8 fp = 0xe1de5ce8 r4 = 0x0000005c r5 = 0xc6cf8c00 r6 = 0xc70349f0 r7 = 0x00000000 --More-- r8 = 0x00000000 r9 = 0x0000005c sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21b6db4 (_sleep+0x470) sp = 0xe1de5cf0 fp = 0xe1de5d50 r4 = 0xc70349f0 r5 = 0xc6cf8c00 r6 = 0x00000000 r10 = 0xc6cf8c04 _sleep() at _sleep+0x470 pc = 0xc21b6db4 lr = 0xc206ddf8 (mmcsd_task+0x118) sp = 0xe1de5d58 fp = 0xe1de5e30 r4 = 0xc6cf8c00 r5 = 0xc6cf8c04 r6 = 0xc6cf8c20 r7 = 0x00000100 r8 = 0x00000000 r9 = 0x00000000 r10 = 0xc6cf8c14 mmcsd_task() at mmcsd_task+0x118 pc = 0xc206ddf8 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1de5e38 fp = 0xe1de5e50 r4 = 0xc70349f0 r5 = 0xc6c55000 r6 = 0xc206dce0 r7 = 0xc6cf8c00 r8 = 0xe1de5e58 r9 = 0xc25d7930 r10 = 0xc25d86dc --More-- fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1de5e58 fp = 0x00000000 r4 = 0xc206dce0 r5 = 0xc6cf8c00 r6 = 0xc6c5a9f0 r7 = 0x7ffb6c69 r8 = 0xc25cd790 r10 = 0xc25d86dc swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1de5e58 fp = 0x00000000 100037 (0xc6dfc000) (stack 0xe1ddb000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1ddcd20 fp = 0xe1ddcd58 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1ddcd60 fp = 0xe1ddcd78 r4 = 0x00000000 r5 = 0x00000000 r6 = 0xc6dfc000 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc25d8f0c mi_switch() at mi_switch+0x140 --More-- pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1ddcd80 fp = 0xe1ddcd90 r4 = 0x00000000 r5 = 0xc25d8f44 r6 = 0xc6dfc000 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x00000000 sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21b6db4 (_sleep+0x470) sp = 0xe1ddcd98 fp = 0xe1ddcdf8 r4 = 0xc6dfc000 r5 = 0xc25d8f44 r6 = 0x00000000 r10 = 0xc25d8f0c _sleep() at _sleep+0x470 pc = 0xc21b6db4 lr = 0xc22e2c9c (sctp_iterator_thread+0xc0) sp = 0xe1ddce00 fp = 0xe1ddce30 r4 = 0xc25d8f0c r5 = 0xc6c55378 r6 = 0xc22e2bdc r7 = 0x00000000 r8 = 0xe1ddce58 r9 = 0xc25d7930 r10 = 0xc25d86dc sctp_iterator_thread() at sctp_iterator_thread+0xc0 pc = 0xc22e2c9c lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1ddce38 fp = 0xe1ddce50 --More-- r4 = 0xc6dfc000 r10 = 0xc25d86dc fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1ddce58 fp = 0x00000000 r4 = 0xc22e2bdc r5 = 0x00000000 r6 = 0xc6c599f0 r7 = 0x7ffb6c1f r8 = 0xc25cd790 r10 = 0xc25d86dc swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1ddce58 fp = 0x00000000 100026 (0xc6c5b350) (stack 0xe1da4000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1da5d48 fp = 0xe1da5d80 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1da5d88 fp = 0xe1da5da0 r4 = 0x00000000 r5 = 0x00000000 r6 = 0xc6c5b350 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc6d2bea0 --More-- mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1da5da8 fp = 0xe1da5db8 r4 = 0x00000000 r5 = 0xc6d2bca4 r6 = 0xc6c5b350 r7 = 0x00000000 r8 = 0x00000000 r9 = 0xc25d7f60 sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21444f4 (_cv_wait+0x1e4) sp = 0xe1da5dc0 fp = 0xe1da5df8 r4 = 0xc258e590 r5 = 0xc6d2bca4 r6 = 0xc6c5b350 r10 = 0xc6d2bea0 _cv_wait() at _cv_wait+0x1e4 pc = 0xc21444f4 lr = 0xc209fa5c (usb_process+0x180) sp = 0xe1da5e00 fp = 0xe1da5e30 r4 = 0xc6d2bc9c r5 = 0xc6d2bca4 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000001 r9 = 0xc6d2bcac r10 = 0x00000000 usb_process() at usb_process+0x180 pc = 0xc209fa5c lr = 0xc216c968 (fork_exit+0xa4) --More-- sp = 0xe1da5e38 fp = 0xe1da5e50 r4 = 0xc6c5b350 r5 = 0xc6c556f0 r6 = 0xc209f8dc r7 = 0xc6d2bc9c r8 = 0xe1da5e58 r9 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1da5e58 fp = 0x00000000 r4 = 0xc209f8dc r5 = 0xc6d2bc9c r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1da5e58 fp = 0x00000000 100027 (0xc6dfe6a0) (stack 0xe1da7000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1da8d48 fp = 0xe1da8d80 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1da8d88 fp = 0xe1da8da0 r4 = 0x00000000 r5 = 0x00000000 --More-- r6 = 0xc6dfe6a0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc6d2bea0 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1da8da8 fp = 0xe1da8db8 r4 = 0x00000000 r5 = 0xc6d2bcd4 r6 = 0xc6dfe6a0 r7 = 0x00000000 r8 = 0x00000000 r9 = 0xc25d7f60 sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21444f4 (_cv_wait+0x1e4) sp = 0xe1da8dc0 fp = 0xe1da8df8 r4 = 0xc258e590 r5 = 0xc6d2bcd4 r6 = 0xc6dfe6a0 r10 = 0xc6d2bea0 _cv_wait() at _cv_wait+0x1e4 pc = 0xc21444f4 lr = 0xc209fa5c (usb_process+0x180) sp = 0xe1da8e00 fp = 0xe1da8e30 r4 = 0xc6d2bccc r5 = 0xc6d2bcd4 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000001 r9 = 0xc6d2bcdc --More-- r10 = 0x00000000 usb_process() at usb_process+0x180 pc = 0xc209fa5c lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1da8e38 fp = 0xe1da8e50 r4 = 0xc6dfe6a0 r5 = 0xc6c556f0 r6 = 0xc209f8dc r7 = 0xc6d2bccc r8 = 0xe1da8e58 r9 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1da8e58 fp = 0x00000000 r4 = 0xc209f8dc r5 = 0xc6d2bccc r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1da8e58 fp = 0x00000000 100028 (0xc6dfe350) (stack 0xe1daa000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1dabd48 fp = 0xe1dabd80 sched_switch() at sched_switch+0x264 --More-- pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1dabd88 fp = 0xe1dabda0 r4 = 0x00000000 r5 = 0x00075fcf r6 = 0xc6dfe350 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc6d2bea0 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1dabda8 fp = 0xe1dabdb8 r4 = 0x00000000 r5 = 0xc6d2bd04 r6 = 0xc6dfe350 r7 = 0x00000000 r8 = 0x00000000 r9 = 0xc25d7f60 sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21444f4 (_cv_wait+0x1e4) sp = 0xe1dabdc0 fp = 0xe1dabdf8 r4 = 0xc258e590 r5 = 0xc6d2bd04 r6 = 0xc6dfe350 r10 = 0xc6d2bea0 _cv_wait() at _cv_wait+0x1e4 pc = 0xc21444f4 lr = 0xc209fa5c (usb_process+0x180) sp = 0xe1dabe00 fp = 0xe1dabe30 --More-- r4 = 0xc6d2bcfc r5 = 0xc6d2bd04 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000001 r9 = 0xc6d2bd0c r10 = 0x00000000 usb_process() at usb_process+0x180 pc = 0xc209fa5c lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1dabe38 fp = 0xe1dabe50 r4 = 0xc6dfe350 r5 = 0xc6c556f0 r6 = 0xc209f8dc r7 = 0xc6d2bcfc r8 = 0xe1dabe58 r9 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1dabe58 fp = 0x00000000 r4 = 0xc209f8dc r5 = 0xc6d2bcfc r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1dabe58 fp = 0x00000000 100029 (0xc6dfe000) (stack 0xe1dad000) cpu_switch() at cpu_switch+0x10 --More-- pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1daed48 fp = 0xe1daed80 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1daed88 fp = 0xe1daeda0 r4 = 0x00000000 r5 = 0x00000000 r6 = 0xc6dfe000 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc6d2bea0 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1daeda8 fp = 0xe1daedb8 r4 = 0x00000000 r5 = 0xc6d2bd34 r6 = 0xc6dfe000 r7 = 0x00000000 r8 = 0x00000000 r9 = 0xc25d7f60 sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21444f4 (_cv_wait+0x1e4) sp = 0xe1daedc0 fp = 0xe1daedf8 r4 = 0xc258e590 r5 = 0xc6d2bd34 r6 = 0xc6dfe000 r10 = 0xc6d2bea0 --More-- _cv_wait() at _cv_wait+0x1e4 pc = 0xc21444f4 lr = 0xc209fa5c (usb_process+0x180) sp = 0xe1daee00 fp = 0xe1daee30 r4 = 0xc6d2bd2c r5 = 0xc6d2bd34 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000001 r9 = 0xc6d2bd3c r10 = 0x00000000 usb_process() at usb_process+0x180 pc = 0xc209fa5c lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1daee38 fp = 0xe1daee50 r4 = 0xc6dfe000 r5 = 0xc6c556f0 r6 = 0xc209f8dc r7 = 0xc6d2bd2c r8 = 0xe1daee58 r9 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1daee58 fp = 0x00000000 r4 = 0xc209f8dc r5 = 0xc6d2bd2c r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit --More-- pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1daee58 fp = 0x00000000 100031 (0xc6dfd6a0) (stack 0xe1dc8000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1dc9d48 fp = 0xe1dc9d80 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1dc9d88 fp = 0xe1dc9da0 r4 = 0x00000000 r5 = 0x00000000 r6 = 0xc6dfd6a0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc6e06ea0 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1dc9da8 fp = 0xe1dc9db8 r4 = 0x00000000 r5 = 0xc6e06ca4 r6 = 0xc6dfd6a0 r7 = 0x00000000 r8 = 0x00000000 r9 = 0xc25d7f60 sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21444f4 (_cv_wait+0x1e4) --More-- sp = 0xe1dc9dc0 fp = 0xe1dc9df8 r4 = 0xc258e590 r5 = 0xc6e06ca4 r6 = 0xc6dfd6a0 r10 = 0xc6e06ea0 _cv_wait() at _cv_wait+0x1e4 pc = 0xc21444f4 lr = 0xc209fa5c (usb_process+0x180) sp = 0xe1dc9e00 fp = 0xe1dc9e30 r4 = 0xc6e06c9c r5 = 0xc6e06ca4 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000001 r9 = 0xc6e06cac r10 = 0x00000000 usb_process() at usb_process+0x180 pc = 0xc209fa5c lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1dc9e38 fp = 0xe1dc9e50 r4 = 0xc6dfd6a0 r5 = 0xc6c556f0 r6 = 0xc209f8dc r7 = 0xc6e06c9c r8 = 0xe1dc9e58 r9 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1dc9e58 fp = 0x00000000 r4 = 0xc209f8dc r5 = 0xc6e06c9c --More-- r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1dc9e58 fp = 0x00000000 100032 (0xc6dfd350) (stack 0xe1dcb000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1dccd48 fp = 0xe1dccd80 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1dccd88 fp = 0xe1dccda0 r4 = 0x00000000 r5 = 0x000fea6e r6 = 0xc6dfd350 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc6e06ea0 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1dccda8 fp = 0xe1dccdb8 r4 = 0x00000000 r5 = 0xc6e06cd4 r6 = 0xc6dfd350 r7 = 0x00000000 --More-- r8 = 0x00000000 r9 = 0xc25d7f60 sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21444f4 (_cv_wait+0x1e4) sp = 0xe1dccdc0 fp = 0xe1dccdf8 r4 = 0xc258e590 r5 = 0xc6e06cd4 r6 = 0xc6dfd350 r10 = 0xc6e06ea0 _cv_wait() at _cv_wait+0x1e4 pc = 0xc21444f4 lr = 0xc209fa5c (usb_process+0x180) sp = 0xe1dcce00 fp = 0xe1dcce30 r4 = 0xc6e06ccc r5 = 0xc6e06cd4 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000001 r9 = 0xc6e06cdc r10 = 0x00000000 usb_process() at usb_process+0x180 pc = 0xc209fa5c lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1dcce38 fp = 0xe1dcce50 r4 = 0xc6dfd350 r5 = 0xc6c556f0 r6 = 0xc209f8dc r7 = 0xc6e06ccc r8 = 0xe1dcce58 r9 = 0x00000000 fork_exit() at fork_exit+0xa4 --More-- pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1dcce58 fp = 0x00000000 r4 = 0xc209f8dc r5 = 0xc6e06ccc r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1dcce58 fp = 0x00000000 100033 (0xc6dfd000) (stack 0xe1dce000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1dcfd48 fp = 0xe1dcfd80 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1dcfd88 fp = 0xe1dcfda0 r4 = 0x00000000 r5 = 0x0052b40e r6 = 0xc6dfd000 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc6e06ea0 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) --More-- sp = 0xe1dcfda8 fp = 0xe1dcfdb8 r4 = 0x00000000 r5 = 0xc6e06d04 r6 = 0xc6dfd000 r7 = 0x00000000 r8 = 0x00000000 r9 = 0xc25d7f60 sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21444f4 (_cv_wait+0x1e4) sp = 0xe1dcfdc0 fp = 0xe1dcfdf8 r4 = 0xc258e590 r5 = 0xc6e06d04 r6 = 0xc6dfd000 r10 = 0xc6e06ea0 _cv_wait() at _cv_wait+0x1e4 pc = 0xc21444f4 lr = 0xc209fa5c (usb_process+0x180) sp = 0xe1dcfe00 fp = 0xe1dcfe30 r4 = 0xc6e06cfc r5 = 0xc6e06d04 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000001 r9 = 0xc6e06d0c r10 = 0x00000000 usb_process() at usb_process+0x180 pc = 0xc209fa5c lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1dcfe38 fp = 0xe1dcfe50 r4 = 0xc6dfd000 r5 = 0xc6c556f0 --More-- r6 = 0xc209f8dc r7 = 0xc6e06cfc r8 = 0xe1dcfe58 r9 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1dcfe58 fp = 0x00000000 r4 = 0xc209f8dc r5 = 0xc6e06cfc r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1dcfe58 fp = 0x00000000 100034 (0xc6dfc9f0) (stack 0xe1dd1000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1dd2d48 fp = 0xe1dd2d80 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1dd2d88 fp = 0xe1dd2da0 r4 = 0x00000000 r5 = 0x0004f4bf r6 = 0xc6dfc9f0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 --More-- r10 = 0xc6e06ea0 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1dd2da8 fp = 0xe1dd2db8 r4 = 0x00000000 r5 = 0xc6e06d34 r6 = 0xc6dfc9f0 r7 = 0x00000000 r8 = 0x00000000 r9 = 0xc25d7f60 sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21444f4 (_cv_wait+0x1e4) sp = 0xe1dd2dc0 fp = 0xe1dd2df8 r4 = 0xc258e590 r5 = 0xc6e06d34 r6 = 0xc6dfc9f0 r10 = 0xc6e06ea0 _cv_wait() at _cv_wait+0x1e4 pc = 0xc21444f4 lr = 0xc209fa5c (usb_process+0x180) sp = 0xe1dd2e00 fp = 0xe1dd2e30 r4 = 0xc6e06d2c r5 = 0xc6e06d34 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000001 r9 = 0xc6e06d3c r10 = 0x00000000 usb_process() at usb_process+0x180 --More-- pc = 0xc209fa5c lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1dd2e38 fp = 0xe1dd2e50 r4 = 0xc6dfc9f0 r5 = 0xc6c556f0 r6 = 0xc209f8dc r7 = 0xc6e06d2c r8 = 0xe1dd2e58 r9 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1dd2e58 fp = 0x00000000 r4 = 0xc209f8dc r5 = 0xc6e06d2c r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1dd2e58 fp = 0x00000000 100019 (0xc6cf5000) (stack 0xe1ae9000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1aead08 fp = 0xe1aead40 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1aead48 fp = 0xe1aead60 --More-- r4 = 0x00000000 r5 = 0x003691b5 r6 = 0xc6cf5000 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc25ae080 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1aead68 fp = 0xe1aead78 r4 = 0x0000005c r5 = 0xc25ae0c0 r6 = 0xc6cf5000 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x0000005c sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21b6db4 (_sleep+0x470) sp = 0xe1aead80 fp = 0xe1aeade0 r4 = 0xc6cf5000 r5 = 0xc25ae0c0 r6 = 0x00000000 r10 = 0xc25ae080 _sleep() at _sleep+0x470 pc = 0xc21b6db4 lr = 0xc2010940 (xpt_done_td+0xd8) sp = 0xe1aeade8 fp = 0xe1aeae30 r4 = 0xc25ae080 r5 = 0x00000001 r6 = 0xc25ae0c0 r7 = 0xe1aeadfc --More-- r8 = 0xc25ae090 r9 = 0x00000000 r10 = 0x00000004 xpt_done_td() at xpt_done_td+0xd8 pc = 0xc2010940 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1aeae38 fp = 0xe1aeae50 r4 = 0xc6cf5000 r5 = 0xc6c55a68 r6 = 0xc2010868 r7 = 0xc25ae080 r8 = 0xe1aeae58 r9 = 0x00000000 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1aeae58 fp = 0x00000000 r4 = 0xc2010868 r5 = 0xc25ae080 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1aeae58 fp = 0x00000000 100039 (0xc6cfa6a0) (stack 0xe1de1000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) --More-- sp = 0xe1de2cf8 fp = 0xe1de2d30 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1de2d38 fp = 0xe1de2d50 r4 = 0x00000000 r5 = 0x00001e85 r6 = 0xc6cfa6a0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc25ae300 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1de2d58 fp = 0xe1de2d68 r4 = 0x0000005c r5 = 0xc25ae2ac r6 = 0xc6cfa6a0 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x0000005c sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21b6db4 (_sleep+0x470) sp = 0xe1de2d70 fp = 0xe1de2dd0 r4 = 0xc6cfa6a0 r5 = 0xc25ae2ac r6 = 0x00000000 r10 = 0xc25ae300 _sleep() at _sleep+0x470 --More-- pc = 0xc21b6db4 lr = 0xc2010d34 (xpt_scanner_thread+0xf4) sp = 0xe1de2dd8 fp = 0xe1de2e30 r4 = 0xc25ae310 r5 = 0xc24d6637 r6 = 0xc25ae280 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x00000004 r10 = 0x00000100 xpt_scanner_thread() at xpt_scanner_thread+0xf4 pc = 0xc2010d34 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1de2e38 fp = 0xe1de2e50 r4 = 0xc6cfa6a0 r5 = 0xc6c55a68 r6 = 0xc2010c40 r7 = 0x00000000 r8 = 0xe1de2e58 r9 = 0x00000000 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1de2e58 fp = 0x00000000 r4 = 0xc2010c40 r5 = 0x00000000 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit --More-- pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1de2e58 fp = 0x00000000 100015 (0xc6cfa000) (stack 0xe1add000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1aded20 fp = 0xe1aded58 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1aded60 fp = 0xe1aded78 r4 = 0x00000000 r5 = 0x0000ccd4 r6 = 0xc6cfa000 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0x00000000 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc22052ac (sleepq_timedwait+0x38) sp = 0xe1aded80 fp = 0xe1aded90 r4 = 0xc6cfa000 r5 = 0x00000000 r6 = 0xc25bb0f0 r7 = 0x19999999 r8 = 0x00000000 r9 = 0x00000000 sleepq_timedwait() at sleepq_timedwait+0x38 pc = 0xc22052ac lr = 0xc21b6d88 (_sleep+0x444) --More-- sp = 0xe1aded98 fp = 0xe1adedf8 r4 = 0x00000000 r5 = 0xc25bb0f0 r6 = 0x00000004 r10 = 0x00000000 _sleep() at _sleep+0x444 pc = 0xc21b6d88 lr = 0xc2075eb8 (random_kthread+0xc0) sp = 0xe1adee00 fp = 0xe1adee30 r4 = 0x19999999 r5 = 0x0000a004 r6 = 0xc25b10e0 r7 = 0x00000004 r8 = 0x0000a000 r9 = 0xc25bb0f0 r10 = 0x00000000 random_kthread() at random_kthread+0xc0 pc = 0xc2075eb8 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1adee38 fp = 0xe1adee50 r4 = 0xc6cfa000 r5 = 0xc6c56000 r6 = 0xc2075df8 r7 = 0x00000000 r8 = 0xe1adee58 r9 = 0x00000000 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1adee58 fp = 0x00000000 --More-- r4 = 0xc2075df8 r5 = 0x00000000 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1adee58 fp = 0x00000000 100012 (0xc6c58350) (stack 0xe1ad4000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1ad5d00 fp = 0xe1ad5d38 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1ad5d40 fp = 0xe1ad5d58 r4 = 0x00000000 r5 = 0x00097cb1 r6 = 0xc6c58350 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc25bc608 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1ad5d60 fp = 0xe1ad5d70 r4 = 0x0000005c r5 = 0xc25d7588 --More-- r6 = 0xc6c58350 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x0000005c sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21b6db4 (_sleep+0x470) sp = 0xe1ad5d78 fp = 0xe1ad5dd8 r4 = 0xc6c58350 r5 = 0xc25d7588 r6 = 0x00000000 r10 = 0xc25bc608 _sleep() at _sleep+0x470 pc = 0xc21b6db4 lr = 0xc21228f0 (g_run_events+0x8c) sp = 0xe1ad5de0 fp = 0xe1ad5e30 r4 = 0x00000001 r5 = 0xc25bc618 r6 = 0xc25d7578 r7 = 0x00000000 r8 = 0x00000004 r9 = 0xc25833e0 r10 = 0x00000000 g_run_events() at g_run_events+0x8c pc = 0xc21228f0 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1ad5e38 fp = 0xe1ad5e50 r4 = 0xc6c58350 r5 = 0xc6c56378 r6 = 0xc2125604 r7 = 0x00000000 r8 = 0xe1ad5e58 r9 = 0x00000000 --More-- r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1ad5e58 fp = 0x00000000 r4 = 0xc2125604 r5 = 0x00000000 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1ad5e58 fp = 0x00000000 100013 (0xc6c58000) (stack 0xe1ad7000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1ad8d00 fp = 0xe1ad8d38 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1ad8d40 fp = 0xe1ad8d58 r4 = 0x00000000 r5 = 0x0007d3b4 r6 = 0xc6c58000 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc25bc654 --More-- mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1ad8d60 fp = 0xe1ad8d70 r4 = 0x0000005c r5 = 0xc25d758c r6 = 0xc6c58000 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x0000005c sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21b6db4 (_sleep+0x470) sp = 0xe1ad8d78 fp = 0xe1ad8dd8 r4 = 0xc6c58000 r5 = 0xc25d758c r6 = 0x00000000 r10 = 0xc25bc654 _sleep() at _sleep+0x470 pc = 0xc21b6db4 lr = 0xc21250cc (g_io_schedule_up+0x280) sp = 0xe1ad8de0 fp = 0xe1ad8e20 r4 = 0xc25bc664 r5 = 0x00000004 r6 = 0xc25bc620 r7 = 0x00000000 r8 = 0xc25d758c r9 = 0xc24d6637 r10 = 0x00000000 g_io_schedule_up() at g_io_schedule_up+0x280 pc = 0xc21250cc lr = 0xc21256f4 (g_up_procbody+0x78) --More-- sp = 0xe1ad8e28 fp = 0xe1ad8e30 r4 = 0xc25bc68c r5 = 0xc6c56378 r6 = 0xc212567c r7 = 0x00000000 r8 = 0xe1ad8e58 r9 = 0x00000000 r10 = 0x00000000 g_up_procbody() at g_up_procbody+0x78 pc = 0xc21256f4 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1ad8e38 fp = 0xe1ad8e50 r4 = 0xc6c58000 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1ad8e58 fp = 0x00000000 r4 = 0xc212567c r5 = 0x00000000 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1ad8e58 fp = 0x00000000 100014 (0xc6cfa350) (stack 0xe1ada000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) --More-- sp = 0xe1adbcd8 fp = 0xe1adbd10 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1adbd18 fp = 0xe1adbd30 r4 = 0x00000000 r5 = 0x000b83ed r6 = 0xc6cfa350 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc25bc634 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1adbd38 fp = 0xe1adbd48 r4 = 0x0000005c r5 = 0xc25d7590 r6 = 0xc6cfa350 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x0000005c sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21b6db4 (_sleep+0x470) sp = 0xe1adbd50 fp = 0xe1adbdb0 r4 = 0xc6cfa350 r5 = 0xc25d7590 r6 = 0x00000000 r10 = 0xc25bc634 _sleep() at _sleep+0x470 --More-- pc = 0xc21b6db4 lr = 0xc212493c (g_io_schedule_down+0x238) sp = 0xe1adbdb8 fp = 0xe1adbe20 r4 = 0xc25bc644 r5 = 0x00000000 r6 = 0x00000004 r7 = 0x00000001 r8 = 0x00000000 r9 = 0xc25bc620 r10 = 0xc6e12c80 g_io_schedule_down() at g_io_schedule_down+0x238 pc = 0xc212493c lr = 0xc2125770 (g_down_procbody+0x78) sp = 0xe1adbe28 fp = 0xe1adbe30 r4 = 0xc25bc68c r5 = 0xc6c56378 r6 = 0xc21256f8 r7 = 0x00000000 r8 = 0xe1adbe58 r9 = 0x00000000 r10 = 0x00000000 g_down_procbody() at g_down_procbody+0x78 pc = 0xc2125770 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1adbe38 fp = 0xe1adbe50 r4 = 0xc6cfa350 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1adbe58 fp = 0x00000000 --More-- r4 = 0xc21256f8 r5 = 0x00000000 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1adbe58 fp = 0x00000000 100006 (0xc6c599f0) (stack 0xe1ac2000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1ac3da0 fp = 0xe1ac3dd8 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1ac3de0 fp = 0xe1ac3df8 r4 = 0x00000000 r5 = 0x0006bd50 r6 = 0xc6c599f0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000109 r10 = 0x00000000 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2170824 (ithread_loop+0x1a4) sp = 0xe1ac3e00 fp = 0xe1ac3e30 r4 = 0xc6b14ed0 r5 = 0xc6b3496c --More-- r6 = 0xc6b34900 r7 = 0xc6b34910 r8 = 0xc258ad70 r9 = 0xc6b34910 ithread_loop() at ithread_loop+0x1a4 pc = 0xc2170824 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1ac3e38 fp = 0xe1ac3e50 r4 = 0xc6c599f0 r5 = 0xc6c566f0 r6 = 0xc2170680 r7 = 0xc6b14ed0 r8 = 0xe1ac3e58 r9 = 0x00000000 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1ac3e58 fp = 0x00000000 r4 = 0xc2170680 r5 = 0xc6b14ed0 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1ac3e58 fp = 0x00000000 100007 (0xc6c596a0) (stack 0xe1ac5000) uart_sab82532_class() at 0 pc = 0x00000000 lr = 0xc249a1a4 (fork_trampoline) --More-- sp = 0xe1ac6e58 fp = 0x00000000 100008 (0xc6c59350) (stack 0xe1ac8000) uart_sab82532_class() at 0 pc = 0x00000000 lr = 0xc249a1a4 (fork_trampoline) sp = 0xe1ac9e58 fp = 0x00000000 100009 (0xc6c59000) (stack 0xe1acb000) uart_sab82532_class() at 0 pc = 0x00000000 lr = 0xc249a1a4 (fork_trampoline) sp = 0xe1acce58 fp = 0x00000000 100010 (0xc6c589f0) (stack 0xe1ace000) uart_sab82532_class() at 0 pc = 0x00000000 lr = 0xc249a1a4 (fork_trampoline) sp = 0xe1acfe58 fp = 0x00000000 100011 (0xc6c586a0) (stack 0xe1ad1000) uart_sab82532_class() at 0 pc = 0x00000000 lr = 0xc249a1a4 (fork_trampoline) sp = 0xe1ad2e58 fp = 0x00000000 100016 (0xc6cf59f0) (stack 0xe1ae0000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1ae1da0 fp = 0xe1ae1dd8 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1ae1de0 fp = 0xe1ae1df8 r4 = 0x00000000 r5 = 0x00002e27 --More-- r6 = 0xc6cf59f0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000109 r10 = 0x00000000 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2170824 (ithread_loop+0x1a4) sp = 0xe1ae1e00 fp = 0xe1ae1e30 r4 = 0xc6b14cd0 r5 = 0xc6b3436c r6 = 0xc6b34300 r7 = 0xc6b34310 r8 = 0xc258ad70 r9 = 0xc6b34310 ithread_loop() at ithread_loop+0x1a4 pc = 0xc2170824 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1ae1e38 fp = 0xe1ae1e50 r4 = 0xc6cf59f0 r5 = 0xc6c566f0 r6 = 0xc2170680 r7 = 0xc6b14cd0 r8 = 0xe1ae1e58 r9 = 0x00000000 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1ae1e58 fp = 0x00000000 r4 = 0xc2170680 r5 = 0xc6b14cd0 --More-- r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1ae1e58 fp = 0x00000000 100018 (0xc6cf5350) (stack 0xe1ae6000) uart_sab82532_class() at 0 pc = 0x00000000 lr = 0xc249a1a4 (fork_trampoline) sp = 0xe1ae7e58 fp = 0x00000000 100021 (0xc6cf46a0) (stack 0xe1aef000) uart_sab82532_class() at 0 pc = 0x00000000 lr = 0xc249a1a4 (fork_trampoline) sp = 0xe1af0e58 fp = 0x00000000 100023 (0xc6cf4000) (stack 0xe1af5000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1af6da0 fp = 0xe1af6dd8 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1af6de0 fp = 0xe1af6df8 r4 = 0x00000000 r5 = 0x00002348 r6 = 0xc6cf4000 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000109 --More-- r10 = 0x00000000 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2170824 (ithread_loop+0x1a4) sp = 0xe1af6e00 fp = 0xe1af6e30 r4 = 0xc6d30960 r5 = 0xc6b3246c r6 = 0xc6b32400 r7 = 0xc6b32410 r8 = 0xc258ad70 r9 = 0xc6b32410 ithread_loop() at ithread_loop+0x1a4 pc = 0xc2170824 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1af6e38 fp = 0xe1af6e50 r4 = 0xc6cf4000 r5 = 0xc6c566f0 r6 = 0xc2170680 r7 = 0xc6d30960 r8 = 0xe1af6e58 r9 = 0x00000000 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1af6e58 fp = 0x00000000 r4 = 0xc2170680 r5 = 0xc6d30960 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 --More-- swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1af6e58 fp = 0x00000000 100024 (0xc6c5b9f0) (stack 0xe1d7f000) uart_sab82532_class() at 0 pc = 0x00000000 lr = 0xc249a1a4 (fork_trampoline) sp = 0xe1d80e58 fp = 0x00000000 100025 (0xc6c5b6a0) (stack 0xe1da1000) uart_sab82532_class() at 0 pc = 0x00000000 lr = 0xc249a1a4 (fork_trampoline) sp = 0xe1da2e58 fp = 0x00000000 100030 (0xc6dfd9f0) (stack 0xe1dc5000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1dc6da0 fp = 0xe1dc6dd8 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1dc6de0 fp = 0xe1dc6df8 r4 = 0x00000000 r5 = 0x0017040b r6 = 0xc6dfd9f0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000109 r10 = 0x00000000 mi_switch() at mi_switch+0x140 --More-- pc = 0xc21b7410 lr = 0xc2170824 (ithread_loop+0x1a4) sp = 0xe1dc6e00 fp = 0xe1dc6e30 r4 = 0xc6d41a70 r5 = 0xc6b3206c r6 = 0xc6b32000 r7 = 0xc6b32010 r8 = 0xc258ad70 r9 = 0xc6b32010 ithread_loop() at ithread_loop+0x1a4 pc = 0xc2170824 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1dc6e38 fp = 0xe1dc6e50 r4 = 0xc6dfd9f0 r5 = 0xc6c566f0 r6 = 0xc2170680 r7 = 0xc6d41a70 r8 = 0xe1dc6e58 r9 = 0x00000000 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1dc6e58 fp = 0x00000000 r4 = 0xc2170680 r5 = 0xc6d41a70 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) --More-- sp = 0xe1dc6e58 fp = 0x00000000 100035 (0xc6dfc6a0) (stack 0xe1dd4000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1dd5da0 fp = 0xe1dd5dd8 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1dd5de0 fp = 0xe1dd5df8 r4 = 0x00000000 r5 = 0x000059b9 r6 = 0xc6dfc6a0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000109 r10 = 0x00000000 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2170824 (ithread_loop+0x1a4) sp = 0xe1dd5e00 fp = 0xe1dd5e30 r4 = 0xc6d417d0 r5 = 0xc6e1a16c r6 = 0xc6e1a100 r7 = 0xc6e1a110 r8 = 0xc258ad70 r9 = 0xc6e1a110 ithread_loop() at ithread_loop+0x1a4 pc = 0xc2170824 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1dd5e38 fp = 0xe1dd5e50 --More-- r4 = 0xc6dfc6a0 r5 = 0xc6c566f0 r6 = 0xc2170680 r7 = 0xc6d417d0 r8 = 0xe1dd5e58 r9 = 0x00000000 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1dd5e58 fp = 0x00000000 r4 = 0xc2170680 r5 = 0xc6d417d0 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1dd5e58 fp = 0x00000000 100036 (0xc6dfc350) (stack 0xe1dd7000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1dd8da0 fp = 0xe1dd8dd8 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1dd8de0 fp = 0xe1dd8df8 r4 = 0x00000000 r5 = 0x00fb688c --More-- r6 = 0xc6dfc350 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000109 r10 = 0x00000000 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2170824 (ithread_loop+0x1a4) sp = 0xe1dd8e00 fp = 0xe1dd8e30 r4 = 0xc6d41530 r5 = 0xc6e1a06c r6 = 0xc6e1a000 r7 = 0xc6e1a010 r8 = 0xc258ad70 r9 = 0xc6e1a010 ithread_loop() at ithread_loop+0x1a4 pc = 0xc2170824 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1dd8e38 fp = 0xe1dd8e50 r4 = 0xc6dfc350 r5 = 0xc6c566f0 r6 = 0xc2170680 r7 = 0xc6d41530 r8 = 0xe1dd8e58 r9 = 0x00000000 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1dd8e58 fp = 0x00000000 r4 = 0xc2170680 r5 = 0xc6d41530 --More-- r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1dd8e58 fp = 0x00000000 100002 (0xc6c5a9f0) (stack 0xe1ab6000) savectx() at savectx+0x14 pc = 0xc249a18c lr = 0xc2487eec ($a.6+0x1c) sp = 0xe1ab7cd8 fp = 0xe1ab7d00 $a.6() at $a.6+0x1c pc = 0xc2487eec lr = 0xc216ffa0 (intr_event_handle+0x70) sp = 0xe1ab7d08 fp = 0xe1ab7d20 r4 = 0xc6e17900 r5 = 0xe1ab7d40 r6 = 0x00000000 r7 = 0xc6df8600 r8 = 0x00000000 r9 = 0xc6c5a9f0 r10 = 0x0000011c intr_event_handle() at intr_event_handle+0x70 pc = 0xc216ffa0 lr = 0xc248595c (arm_irq_handler+0x6c) sp = 0xe1ab7d28 fp = 0xe1ab7d38 r4 = 0xe1ab7d40 r5 = 0x00000004 r6 = 0xc25e1014 r7 = 0xc25d4ed4 --More-- r8 = 0xc25cbcc4 r9 = 0xc25cbc88 arm_irq_handler() at arm_irq_handler+0x6c pc = 0xc248595c lr = 0xc2483920 (exception_exit) sp = 0xe1ab7d40 fp = 0xe1ab7e30 r4 = 0xc25cbcd4 r5 = 0xc6c5a9f0 r6 = 0xc25cbcd4 r7 = 0xc25cbcd6 exception_exit() at exception_exit pc = 0xc2483920 lr = 0xc2486278 (cpu_idle+0x8c) sp = 0xe1ab7dd0 fp = 0xe1ab7e30 r0 = 0x00002710 r1 = 0x000022ad r2 = 0x000022ad r3 = 0x60000013 r4 = 0xc25cbcd4 r5 = 0xc6c5a9f0 r6 = 0xc25cbcd4 r7 = 0xc25cbcd6 r8 = 0xc25cbcc4 r9 = 0xc25cbc88 r10 = 0x0000011c r12 = 0x00000007 sched_idletd() at sched_idletd+0x3a4 pc = 0xc21e1f14 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1ab7e38 fp = 0xe1ab7e50 r4 = 0xc6c5a9f0 r5 = 0xc6c56a68 r6 = 0xc21e1b70 r7 = 0x00000000 --More-- r8 = 0xe1ab7e58 r9 = 0x00000000 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1ab7e58 fp = 0x00000000 r4 = 0xc21e1b70 r5 = 0x00000000 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1ab7e58 fp = 0x00000000 100003 (0xc6c5a6a0) (stack 0xe1ab9000) savectx() at savectx+0x14 pc = 0xc249a18c lr = 0xc2487eec ($a.6+0x1c) sp = 0xe1abacd8 fp = 0xe1abad00 $a.6() at $a.6+0x1c pc = 0xc2487eec lr = 0xc216ffa0 (intr_event_handle+0x70) sp = 0xe1abad08 fp = 0xe1abad20 r4 = 0xc6e17900 r5 = 0xe1abad40 r6 = 0x00000000 r7 = 0xc6df8600 r8 = 0x00000000 r9 = 0xc6c5a6a0 --More-- r10 = 0x000000a3 intr_event_handle() at intr_event_handle+0x70 pc = 0xc216ffa0 lr = 0xc248595c (arm_irq_handler+0x6c) sp = 0xe1abad28 fp = 0xe1abad38 r4 = 0xe1abad40 r5 = 0x00000004 r6 = 0xc25e1014 r7 = 0xc25d4ed4 r8 = 0xc25cc384 r9 = 0xc25cc348 arm_irq_handler() at arm_irq_handler+0x6c pc = 0xc248595c lr = 0xc2483920 (exception_exit) sp = 0xe1abad40 fp = 0xe1abae30 r4 = 0xc25cc394 r5 = 0xc6c5a6a0 r6 = 0xc25cc394 r7 = 0xc25cc396 exception_exit() at exception_exit pc = 0xc2483920 lr = 0xc2486278 (cpu_idle+0x8c) sp = 0xe1abadd0 fp = 0xe1abae30 r0 = 0x00002710 r1 = 0x000022a6 r2 = 0x000022a6 r3 = 0x60000013 r4 = 0xc25cc394 r5 = 0xc6c5a6a0 r6 = 0xc25cc394 r7 = 0xc25cc396 r8 = 0xc25cc384 r9 = 0xc25cc348 --More-- r10 = 0x000000a3 r12 = 0x00000015 sched_idletd() at sched_idletd+0x3bc pc = 0xc21e1f2c lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1abae38 fp = 0xe1abae50 r4 = 0xc6c5a6a0 r5 = 0xc6c56a68 r6 = 0xc21e1b70 r7 = 0x00000000 r8 = 0xe1abae58 r9 = 0x00000000 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1abae58 fp = 0x00000000 r4 = 0xc21e1b70 r5 = 0x00000000 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1abae58 fp = 0x00000000 100004 (0xc6c5a350) (stack 0xe1abc000) savectx() at savectx+0x14 pc = 0xc249a18c lr = 0xc2487eec ($a.6+0x1c) sp = 0xe1abdcd8 fp = 0xe1abdd00 --More-- $a.6() at $a.6+0x1c pc = 0xc2487eec lr = 0xc216ffa0 (intr_event_handle+0x70) sp = 0xe1abdd08 fp = 0xe1abdd20 r4 = 0xc6e17900 r5 = 0xe1abdd40 r6 = 0x00000000 r7 = 0xc6df8600 r8 = 0x00000000 r9 = 0xc6c5a350 r10 = 0x000000a4 intr_event_handle() at intr_event_handle+0x70 pc = 0xc216ffa0 lr = 0xc248595c (arm_irq_handler+0x6c) sp = 0xe1abdd28 fp = 0xe1abdd38 r4 = 0xe1abdd40 r5 = 0x00000004 r6 = 0xc25e1014 r7 = 0xc25d4ed4 r8 = 0xc25cca44 r9 = 0xc25cca08 arm_irq_handler() at arm_irq_handler+0x6c pc = 0xc248595c lr = 0xc2483920 (exception_exit) sp = 0xe1abdd40 fp = 0xe1abde30 r4 = 0xc25cca54 r5 = 0xc6c5a350 r6 = 0xc25cca54 r7 = 0xc25cca56 exception_exit() at exception_exit pc = 0xc2483920 lr = 0xc2486278 (cpu_idle+0x8c) --More-- sp = 0xe1abddd0 fp = 0xe1abde30 r0 = 0x00002710 r1 = 0x000022a2 r2 = 0x00000000 r3 = 0x60000013 r4 = 0xc25cca54 r5 = 0xc6c5a350 r6 = 0xc25cca54 r7 = 0xc25cca56 r8 = 0xc25cca44 r9 = 0xc25cca08 r10 = 0x000000a4 r12 = 0x00000004 sched_idletd() at sched_idletd+0x3b0 pc = 0xc21e1f20 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1abde38 fp = 0xe1abde50 r4 = 0xc6c5a350 r5 = 0xc6c56a68 r6 = 0xc21e1b70 r7 = 0x00000000 r8 = 0xe1abde58 r9 = 0x00000000 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1abde58 fp = 0x00000000 r4 = 0xc21e1b70 r5 = 0x00000000 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 --More-- swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1abde58 fp = 0x00000000 100005 (0xc6c5a000) (stack 0xe1abf000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1ac0c88 fp = 0xe1ac0cc0 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1ac0cc8 fp = 0xe1ac0ce0 r4 = 0x00000000 r5 = 0x2065adf5 r6 = 0xc6c5a000 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000608 r10 = 0x00000017 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc21b4e38 (critical_exit+0x84) sp = 0xe1ac0ce8 fp = 0xe1ac0cf0 r4 = 0xc6c5a000 r5 = 0xe1ac0d30 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r9 = 0xc6c5a000 critical_exit() at critical_exit+0x84 --More-- pc = 0xc21b4e38 lr = 0xc217001c (intr_event_handle+0xec) sp = 0xe1ac0cf8 fp = 0xe1ac0d10 r4 = 0xc6e17b00 r10 = 0x00000017 intr_event_handle() at intr_event_handle+0xec pc = 0xc217001c lr = 0xc248595c (arm_irq_handler+0x6c) sp = 0xe1ac0d18 fp = 0xe1ac0d28 r4 = 0xe1ac0d30 r5 = 0x00000002 r6 = 0xc25e1014 r7 = 0xc25d4ed4 r8 = 0xc25cd104 r9 = 0xc25cd0c8 arm_irq_handler() at arm_irq_handler+0x6c pc = 0xc248595c lr = 0xc2483920 (exception_exit) sp = 0xe1ac0d30 fp = 0xe1ac0dc8 r4 = 0xc6c5a000 r5 = 0xc6c5a000 r6 = 0xc25cd116 r7 = 0xc25cd108 exception_exit() at exception_exit pc = 0xc2483920 lr = 0xc2486278 (cpu_idle+0x8c) sp = 0xe1ac0dc0 fp = 0xe1ac0dc8 r0 = 0x00000000 r1 = 0x000000c0 r2 = 0x600001d3 r3 = 0x60000113 r4 = 0xc6c5a000 r5 = 0xc6c5a000 --More-- r6 = 0xc25cd116 r7 = 0xc25cd108 r8 = 0xc25cd104 r9 = 0xc25cd0c8 r10 = 0x00000017 r12 = 0x0062ec25 cpu_idle() at cpu_idle+0xb8 pc = 0xc24862a4 lr = 0xc21e1c38 (sched_idletd+0xc8) sp = 0xe1ac0dd0 fp = 0xe1ac0e30 r4 = 0xc25cd114 r10 = 0x00000017 sched_idletd() at sched_idletd+0xc8 pc = 0xc21e1c38 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1ac0e38 fp = 0xe1ac0e50 r4 = 0xc6c5a000 r5 = 0xc6c56a68 r6 = 0xc21e1b70 r7 = 0x00000000 r8 = 0xe1ac0e58 r9 = 0x00000000 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1ac0e58 fp = 0x00000000 r4 = 0xc21e1b70 r5 = 0x00000000 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 --More-- swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1ac0e58 fp = 0x00000000 100001 (0xc6c5b000) (stack 0xe1aae000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1aafae8 fp = 0xe1aafb20 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1aafb28 fp = 0xe1aafb40 r4 = 0x00000000 r5 = 0x002c19a9 r6 = 0xc6c5b000 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0x00000000 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204d24 (sleepq_catch_signals+0xb4) sp = 0xe1aafb48 fp = 0xe1aafb90 r4 = 0xc6c5b000 r5 = 0xc6c57000 r6 = 0x0000006c r7 = 0x00000000 r8 = 0x00000070 r9 = 0xc6c57000 sleepq_catch_signals() at sleepq_catch_signals+0xb4 --More-- pc = 0xc2204d24 lr = 0xc2204bf8 (sleepq_wait_sig+0xc) sp = 0xe1aafb98 fp = 0xe1aafba0 r4 = 0xc6c5b000 r5 = 0xc6c57000 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x0000006c r10 = 0xc6c570ac sleepq_wait_sig() at sleepq_wait_sig+0xc pc = 0xc2204bf8 lr = 0xc21b6da8 (_sleep+0x464) sp = 0xe1aafba8 fp = 0xe1aafc08 r4 = 0xc6c5b000 r10 = 0xc6c570ac _sleep() at _sleep+0x464 pc = 0xc21b6da8 lr = 0xc2167520 (kern_wait6+0x7dc) sp = 0xe1aafc10 fp = 0xe1aafc98 r4 = 0x00000000 r5 = 0x00000007 r6 = 0x00000000 r7 = 0x00000000 r8 = 0xc6c5b000 r9 = 0xc6c570bc r10 = 0x00000000 kern_wait6() at kern_wait6+0x7dc pc = 0xc2167520 lr = 0xc2166bfc (sys_wait4+0x84) sp = 0xe1aafca0 fp = 0xe1aafdd8 --More-- r4 = 0x00000032 r5 = 0x00000000 r6 = 0x00000000 r7 = 0xe1aafcb4 r8 = 0xe1aafdf8 r9 = 0x00000000 r10 = 0xc6c57000 sys_wait4() at sys_wait4+0x84 pc = 0xc2166bfc lr = 0xc249a948 (swi_handler+0x4b8) sp = 0xe1aafde0 fp = 0xe1aafe50 r4 = 0xc6c5b000 r5 = 0x000c2171 r6 = 0x60000013 r7 = 0x00000000 r8 = 0xe1aafdf0 r10 = 0xc6c57000 swi_handler() at swi_handler+0x4b8 pc = 0xc249a948 lr = 0xc24838b0 (swi_exit) sp = 0xe1aafe58 fp = 0xbfbff928 r4 = 0x000c2280 r5 = 0x000c2171 r6 = 0x00009e00 r7 = 0x00000007 r8 = 0xbfbff908 r9 = 0x000e0810 r10 = 0x0000000e swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1aafe58 fp = 0xbfbff928 --More-- 100000 (0xc25d7930) (stack 0xc2712000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xc2713d78 fp = 0xc2713db0 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xc2713db8 fp = 0xc2713dd0 r4 = 0x00000000 r5 = 0x00000000 r6 = 0xc25d7930 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0x00000000 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc22052ac (sleepq_timedwait+0x38) sp = 0xc2713dd8 fp = 0xc2713de8 r4 = 0xc25d7930 r5 = 0x00000054 r6 = 0xc25d75a8 r7 = 0xfffff479 r8 = 0x00000000 r9 = 0x00000054 sleepq_timedwait() at sleepq_timedwait+0x38 pc = 0xc22052ac lr = 0xc21b6d88 (_sleep+0x444) sp = 0xc2713df0 fp = 0xc2713e50 r4 = 0x00000009 r5 = 0xc25d75a8 --More-- r6 = 0x00000100 r10 = 0x00000000 _sleep() at _sleep+0x444 pc = 0xc21b6d88 lr = 0xc24516cc (swapper+0x4f0) sp = 0xc2713e58 fp = 0xc2713ea0 r4 = 0xc25d8144 r5 = 0x00000009 r6 = 0xfffff470 r7 = 0xc24fa8ad r8 = 0xc26a4000 r9 = 0x00000000 r10 = 0x80000000 swapper() at swapper+0x4f0 pc = 0xc24516cc lr = 0xc20001f0 (_start+0xf0) sp = 0xc2713ea8 fp = 0x00000000 r4 = 0xc2000308 r5 = 0xc25e4000 r6 = 0x1104c740 r7 = 0x0085207a r8 = 0xc26a4000 r9 = 0x00000014 r10 = 0x02020000 _start() at _start+0xf0 pc = 0xc20001f0 lr = 0xc20001f0 (_start+0xf0) sp = 0xc2713ea8 fp = 0x00000000 100017 (0xc6cf56a0) (stack 0xe1ae3000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) --More-- sp = 0xe1ae4d10 fp = 0xe1ae4d48 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1ae4d50 fp = 0xe1ae4d68 r4 = 0x00000000 r5 = 0x0015d031 r6 = 0xc6cf56a0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc6cf8498 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1ae4d70 fp = 0xe1ae4d80 r4 = 0x00000000 r5 = 0xc6cf8480 r6 = 0xc6cf56a0 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x00000000 sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21b6db4 (_sleep+0x470) sp = 0xe1ae4d88 fp = 0xe1ae4de8 r4 = 0xc6cf56a0 r5 = 0xc6cf8480 r6 = 0x00000000 r10 = 0xc6cf8498 _sleep() at _sleep+0x470 --More-- pc = 0xc21b6db4 lr = 0xc2209544 (taskqueue_thread_loop+0x1d8) sp = 0xe1ae4df0 fp = 0xe1ae4e30 r4 = 0xc6cf8480 r5 = 0xc6cf8498 r6 = 0xc24d6637 r7 = 0x00000000 r8 = 0x00000100 r9 = 0x00000000 r10 = 0x00000000 taskqueue_thread_loop() at taskqueue_thread_loop+0x1d8 pc = 0xc2209544 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1ae4e38 fp = 0xe1ae4e50 r4 = 0xc6cf56a0 r5 = 0xc25d75a8 r6 = 0xc220936c r7 = 0xc25d8798 r8 = 0xe1ae4e58 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1ae4e58 fp = 0x00000000 r4 = 0xc220936c r5 = 0xc25d8798 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) --More-- sp = 0xe1ae4e58 fp = 0x00000000 100020 (0xc6cf49f0) (stack 0xe1aec000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1aedd10 fp = 0xe1aedd48 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1aedd50 fp = 0xe1aedd68 r4 = 0x00000000 r5 = 0x00000000 r6 = 0xc6cf49f0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc6cf8118 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1aedd70 fp = 0xe1aedd80 r4 = 0x00000000 r5 = 0xc6cf8100 r6 = 0xc6cf49f0 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x00000000 sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21b6db4 (_sleep+0x470) sp = 0xe1aedd88 fp = 0xe1aedde8 --More-- r4 = 0xc6cf49f0 r5 = 0xc6cf8100 r6 = 0x00000000 r10 = 0xc6cf8118 _sleep() at _sleep+0x470 pc = 0xc21b6db4 lr = 0xc2209544 (taskqueue_thread_loop+0x1d8) sp = 0xe1aeddf0 fp = 0xe1aede30 r4 = 0xc6cf8100 r5 = 0xc6cf8118 r6 = 0xc24d6637 r7 = 0x00000000 r8 = 0x00000100 r9 = 0x00000000 r10 = 0x00000000 taskqueue_thread_loop() at taskqueue_thread_loop+0x1d8 pc = 0xc2209544 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1aede38 fp = 0xe1aede50 r4 = 0xc6cf49f0 r5 = 0xc25d75a8 r6 = 0xc220936c r7 = 0xc25d7ec0 r8 = 0xe1aede58 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1aede58 fp = 0x00000000 r4 = 0xc220936c r5 = 0xc25d7ec0 r6 = 0x00000000 r7 = 0x00000000 --More-- r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1aede58 fp = 0x00000000 100022 (0xc6cf4350) (stack 0xe1af2000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1af3d10 fp = 0xe1af3d48 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1af3d50 fp = 0xe1af3d68 r4 = 0x00000000 r5 = 0x00000000 r6 = 0xc6cf4350 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc6cf8018 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1af3d70 fp = 0xe1af3d80 r4 = 0x00000000 r5 = 0xc6cf8000 r6 = 0xc6cf4350 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x00000000 --More-- sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21b6db4 (_sleep+0x470) sp = 0xe1af3d88 fp = 0xe1af3de8 r4 = 0xc6cf4350 r5 = 0xc6cf8000 r6 = 0x00000000 r10 = 0xc6cf8018 _sleep() at _sleep+0x470 pc = 0xc21b6db4 lr = 0xc2209544 (taskqueue_thread_loop+0x1d8) sp = 0xe1af3df0 fp = 0xe1af3e30 r4 = 0xc6cf8000 r5 = 0xc6cf8018 r6 = 0xc24d6637 r7 = 0x00000000 r8 = 0x00000100 r9 = 0x00000000 r10 = 0x00000000 taskqueue_thread_loop() at taskqueue_thread_loop+0x1d8 pc = 0xc2209544 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1af3e38 fp = 0xe1af3e50 r4 = 0xc6cf4350 r5 = 0xc25d75a8 r6 = 0xc220936c r7 = 0xc25dae2c r8 = 0xe1af3e58 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) --More-- sp = 0xe1af3e58 fp = 0x00000000 r4 = 0xc220936c r5 = 0xc25dae2c r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1af3e58 fp = 0x00000000 100038 (0xc6cfa9f0) (stack 0xe1dde000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1ddfd10 fp = 0xe1ddfd48 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1ddfd50 fp = 0xe1ddfd68 r4 = 0x00000000 r5 = 0x00000233 r6 = 0xc6cfa9f0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc6cf8398 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1ddfd70 fp = 0xe1ddfd80 --More-- r4 = 0x00000000 r5 = 0xc6cf8380 r6 = 0xc6cfa9f0 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x00000000 sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21b6db4 (_sleep+0x470) sp = 0xe1ddfd88 fp = 0xe1ddfde8 r4 = 0xc6cfa9f0 r5 = 0xc6cf8380 r6 = 0x00000000 r10 = 0xc6cf8398 _sleep() at _sleep+0x470 pc = 0xc21b6db4 lr = 0xc2209544 (taskqueue_thread_loop+0x1d8) sp = 0xe1ddfdf0 fp = 0xe1ddfe30 r4 = 0xc6cf8380 r5 = 0xc6cf8398 r6 = 0xc24d6637 r7 = 0x00000000 r8 = 0x00000100 r9 = 0xc25d7930 r10 = 0xc25d86dc taskqueue_thread_loop() at taskqueue_thread_loop+0x1d8 pc = 0xc2209544 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1ddfe38 fp = 0xe1ddfe50 r4 = 0xc6cfa9f0 r5 = 0xc25d75a8 r6 = 0xc220936c r7 = 0xc25ae328 --More-- r8 = 0xe1ddfe58 r10 = 0xc25d86dc fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1ddfe58 fp = 0x00000000 r4 = 0xc220936c r5 = 0xc25ae328 r6 = 0xc6c599f0 r7 = 0x7ffb6c1f r8 = 0xc25cd790 r10 = 0xc25d86dc swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1ddfe58 fp = 0x00000000 db> ps pid ppid pgrp uid state wmesg wchan cmd 60 59 16 0 R+ CPU 3 mount 59 16 16 0 S+ wait 0xc7206a68 sh 16 1 16 0 Ss+ wait 0xc71ab6f0 sh 15 0 0 0 DL syncer 0xc25d18b0 [syncer] 9 0 0 0 DL vlruwt 0xc7041378 [vnlru] 8 0 0 0 DL (threaded) [bufdaemon] 100044 D psleep 0xc25d1650 [bufdaemon] 100055 D sdflush 0xc70dc284 [/ worker] 7 0 0 0 DL pgzero 0xc25d4b84 [pagezero] 6 0 0 0 DL psleep 0xc25d4a80 [vmdaemon] 5 0 0 0 DL (threaded) [pagedaemon] 100041 D psleep 0xc25dbc04 [pagedaemon] 100047 D umarcl 0xc25d4994 [uma] 4 0 0 0 DL jobqueue 0xc6cf8c00 [mmcsd0: mmc/sd card] 3 0 0 0 DL waiting_ 0xc25d8f44 [sctp_iterator] 14 0 0 0 DL (threaded) [usb] 100026 D - 0xc6d2bca4 [usbus0] 100027 D - 0xc6d2bcd4 [usbus0] 100028 D - 0xc6d2bd04 [usbus0] --More-- 100029 D - 0xc6d2bd34 [usbus0] 100031 D - 0xc6e06ca4 [usbus1] 100032 D - 0xc6e06cd4 [usbus1] 100033 D - 0xc6e06d04 [usbus1] 100034 D - 0xc6e06d34 [usbus1] 2 0 0 0 DL (threaded) [cam] 100019 D - 0xc25ae0c0 [doneq0] 100039 D - 0xc25ae2ac [scanner] 13 0 0 0 DL - 0xc25bb0f0 [rand_harvestq] 12 0 0 0 DL (threaded) [geom] 100012 D - 0xc25d7588 [g_event] 100013 D - 0xc25d758c [g_up] 100014 D - 0xc25d7590 [g_down] 11 0 0 0 WL (threaded) [intr] 100006 I [swi4: clock (0)] 100007 I [swi4: clock (1)] 100008 I [swi4: clock (2)] 100009 I [swi4: clock (3)] 100010 I [swi1: netisr 0] 100011 I [swi3: vm] --More-- 100016 I [swi6: Giant taskq] 100018 I [swi5: fast taskq] 100021 I [swi6: task queue] 100023 I [swi0: uart] 100024 I [intr150: ffec0] 100025 I [intr75: ehci0] 100030 I [intr72: ehci1] 100035 I [intr54: sdhci_imx0] 100036 I [intr56: sdhci_imx1] 10 0 0 0 RL (threaded) [idle] 100002 Run CPU 0 [idle: cpu0] 100003 Run CPU 1 [idle: cpu1] 100004 Run CPU 2 [idle: cpu2] 100005 CanRun [idle: cpu3] 1 0 1 0 SLs wait 0xc6c57000 [init] 0 0 0 0 DLs (threaded) [kernel] 100000 D swapin 0xc25d75a8 [swapper] 100017 D - 0xc6cf8480 [thread taskq] 100020 D - 0xc6cf8100 [kqueue taskq] 100022 D - 0xc6cf8000 [ffs_trim taskq] --More-- 100038 D - 0xc6cf8380 [CAM taskq] db> root@devel:/usr/local/DEVEL/LOG # ^Dexit Script done on Sat Jun 20 08:39:30 2015 --Multipart=_Sat__20_Jun_2015_09_09_57_+0000_B=ud7D.d18bpgJM4-- From owner-freebsd-arm@FreeBSD.ORG Sat Jun 20 12:24:56 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 45C4F854 for ; Sat, 20 Jun 2015 12:24:56 +0000 (UTC) (envelope-from usenet@ulrich-grey.de) Received: from mo6-p00-ob.smtp.rzone.de (mo6-p00-ob.smtp.rzone.de [IPv6:2a01:238:20a:202:5300::3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.smtp.rzone.de", Issuer "TeleSec ServerPass DE-2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 290F2B93 for ; Sat, 20 Jun 2015 12:24:54 +0000 (UTC) (envelope-from usenet@ulrich-grey.de) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; t=1434803089; l=155359; s=domk; d=ulrich-grey.de; h=Content-Type:Mime-Version:References:In-Reply-To:Subject:To:From: Date; bh=J2XPU92T6Y/LCn5I8iVF6QuKxx1vx+eQ+KPJKRbubBg=; b=oVEJW2zXSAQgg+lxUJCoYoy00PMZzeCnHD6BKHagpyQSj4dzToCERQQoAJq3lbdbxQU Vvf8tf9Idwo1oVpxDGVhv86QNT56Mcj1D58Pe8gjxUVj0UFQ6L0/nFVQcpPpDt1/9iAiH 6SBq+5U6WZjiz/JZPOeu5+YKl7ERs6bQNCk= X-RZG-AUTH: :OX8Be0W8W+pMC3rDLL/lo2xV/LZTbZkYhOcjg8suic3iYr/B8J9Lzp3TJg49sMv/e26f X-RZG-CLASS-ID: mo00 Received: from quad (p54869E86.dip0.t-ipconnect.de [84.134.158.134]) by smtp.strato.de (RZmta 37.7 DYNA|AUTH) with ESMTPSA id x0454ar5KCOkTeM (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (curve X9_62_prime256v1 with 256 ECDH bits, eq. 3072 bits RSA)) (Client did not present a certificate) for ; Sat, 20 Jun 2015 14:24:46 +0200 (CEST) Date: Sat, 20 Jun 2015 12:24:44 +0000 From: Ulrich Grey To: freebsd-arm@freebsd.org Subject: Wandboard-Quad: 'Translation Fault (L2)' on read Message-Id: <20150620122444.17da6540b012024b9165a758@ulrich-grey.de> In-Reply-To: <20150620101840.9fbbf123c62f24f2dfa82485@ulrich-grey.de> References: <20150620090957.eeb8cc36a07cf3a4a67dca72@ulrich-grey.de> <20150620101840.9fbbf123c62f24f2dfa82485@ulrich-grey.de> Organization: - X-Mailer: Sylpheed 3.4.2 (GTK+ 2.24.25; armv6-portbld-freebsd11.0) Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Multipart=_Sat__20_Jun_2015_12_24_44_+0000_=yLux8gU0=dJ8=59" X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Jun 2015 12:24:56 -0000 This is a multi-part message in MIME format. --Multipart=_Sat__20_Jun_2015_12_24_44_+0000_=yLux8gU0=dJ8=59 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Sat, 20 Jun 2015 10:18:40 +0000 Ulrich Grey wrote: > After reebooting successfully I tried to log in via ssh. > After login the system was frozen immediately. > Breaking to debugger did not work. > I changed the NIC to an usb ethernet device, using kernel module if_axge. > During reboot I got a panic (I attached a file with more infos): > > Mounting local file systems:Fatal kernel mode data abort: 'Translation Fault (L2)' on > read > > trapframe: 0xfa9367d8 > > FSR=00000007, FAR=00000000, spsr=60000113 > > r0 =c73bd570, r1 =c73b5065, r2 =00000000, r3 =00000000 > > r4 =c73bd3ac, r5 =c73bd3b0, r6 =c73bd3b0, r7 =00000087 > > r8 =c2596af4, r9 =c25d8918, r10=c73bd340, r11=fa936870 > > r12=c73c4d60, ssp=fa936868, slr=c73b43d4, pc =00000000 > # > db> show reg > > spsr 0x60000113 > > r0 0xc73bd570 _edata+0x10 > > r1 0xc73b5065 $d.20 > > r2 0 > > r3 0 > > r4 0xc73bd3ac _MergedGlobals+0x6c > > r5 0xc73bd3b0 _MergedGlobals+0x70 > > r6 0xc73bd3b0 _MergedGlobals+0x70 > > r7 0x87 $d.0+0x5 > > r8 0xc2596af4 vfsconf > > r9 0xc25d8918 vfsconf_sx+0x10 > > r10 0xc73bd340 _MergedGlobals > > r11 0xfa936870 > > r12 0xc73c4d60 _end+0x77e4 > > usr_sp 0xbfbffc08 > > usr_lr 0x23160 > > svc_sp 0xfa936868 > > svc_lr 0xc73b43d4 fdesc_init+0x20 > > pc 0 > > und_sp 0xc2710000 > > --More-- > > abt_sp 0xc270c000 > > irq_sp 0xc2708000 > > 0: address 0 is invalid > > *** error reading from address 0 *** > > KDB: reentering > > KDB: stack backtrace: > # --Multipart=_Sat__20_Jun_2015_12_24_44_+0000_=yLux8gU0=dJ8=59 Content-Type: text/plain; name="script20150620_2.txt" Content-Disposition: attachment; filename="script20150620_2.txt" Content-Transfer-Encoding: 7bit Script started on Sat Jun 20 08:39:39 2015 root@devel:/usr/local/DEVEL/LOG # cu -l/dev/cuaU0 -s 115200 Connected U-Boot 2014.10 (Jun 20 2015 - 09:33:42) CPU: Freescale i.MX6Q rev1.2 at 792 MHz Reset cause: POR Board: Wandboard I2C: ready DRAM: 2 GiB WARNING: Caches not enabled MMC: FSL_SDHC: 0, FSL_SDHC: 1 *** Warning - bad CRC, using default en Unknown command '' - try 'help' => Unknown command '' - try 'help' => U-Boot 2014.10 (Jun 20 2015 - 09:33:42) CPU: Freescale i.MX6Q rev1.2 at 792 MHz Reset cause: POR Board: Wandboard I2C: ready DRAM: 2 GiB WARNING: Caches not enabled MMC: FSL_SDHC: 0, FSL_SDHC: 1 *** Warning - bad CRC, using default environment No panel detected: default to HDMI Display: HDMI (1024x768) In: serial Out: serial Err: serial Net: FEC [PRIME] Hit any key to stop autoboot: 5  4  3  2  1  0 switch to partitions #0, OK mmc0 is current device reading boot.scr 158 bytes read in 9 ms (16.6 KiB/s) Running bootscript from mmc ... ## Executing script at 12000000 reading ubldr 265350 bytes read in 27 ms (9.4 MiB/s) ## Starting application at 0x11000094 ... Consoles: U-Boot console Compatible U-Boot API signature found @8f5844a8 FreeBSD/armv6 U-Boot loader, Revision 1.2 (root@noname.privat, Sat Jun 20 06:25:53 CEST 2015) DRAM: 2048MB MMC: no card present MMC Device 2 not found MMC Device 3 not found Number of U-Boot devices: 2 U-Boot env: loaderdev not set, will probe all devices. Found U-Boot device: disk Probing all disk devices... Checking unit=0 slice= partition=... good. |/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\/boot/kernel/kernel data=0x5aa31c+0x3dce4 |/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|syms=[0x4+0x5c960/-\+0x4+0x5868c|/-] Hit [Enter] to boot immediately, or any other key for command prompt. Booting [/boot/kernel/kernel] in 9 seconds... Booting [/boot/kernel/kernel] in 8 seconds... Booting [/boot/kernel/kernel] in 7 seconds... Booting [/boot/kernel/kernel]... \|/-\|/-\|/boot/kernel/wandboard-quad.dtb size=0x22cc Loaded DTB from file 'wandboard-quad.dtb'. /-\|/Kernel entry at 0x11200100... Kernel args: (null) KDB: debugger backends: ddb KDB: current backend: ddb Copyright (c) 1992-2015 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 11.0-CURRENT #0 r284621M: Sat Jun 20 06:17:16 CEST 2015 root@noname.privat:/usr/home/CROCHET/crochet/work/obj/arm.armv6/usr/SRC/head/sys/IMX6 arm FreeBSD clang version 3.6.1 (tags/RELEASE_361/final 237755) 20150525 CPU: Cortex A9-r2 rev 10 (Cortex-A core) Supported features: ARM_ISA THUMB2 JAZELLE THUMBEE ARMv4 Security_Ext WB disabled EABT branch prediction enabled LoUU:2 LoC:2 LoUIS:2 Cache level 1: 32KB/32B 4-way data cache WB Read-Alloc Write-Alloc 32KB/32B 4-way instruction cache Read-Alloc real memory = 2147483648 (2048 MB) avail memory = 2093948928 (1996 MB) FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs random: entropy device infrastructure driver random: selecting highest priority adaptor random: SOFT: yarrow init() random: selecting highest priority adaptor ofwbus0: simplebus0: on ofwbus0 simplebus1: mem 0x2000000-0x20fffff on simplebus0 imx6_anatop0: mem 0x20c8000-0x20c8fff irq 49 on simplebus1 simplebus2: mem 0x2100000-0x21fffff on simplebus0 ocotp0: mem 0x21bc000-0x21bffff on simplebus2 ccm0: mem 0x20c4000-0x20c7fff irq 119,120 on simplebus1 l2cache0: mem 0xa02000-0xa02fff irq 124 on simplebus0 l2cache0: Part number: 0x3, release: 0x7 l2cache0: L2 Cache enabled: 1024KB/32B 16 ways imx_iomux0: mem 0x20e0000-0x20e3fff irq 32 on simplebus1 gic0: mem 0xa01000-0xa01fff,0xa00100-0xa001ff on simplebus0 gic0: pn 0x390, arch 0x1, rev 0x2, implementer 0x43b irqs 160 imx_gpt0: mem 0x2098000-0x209bfff irq 87 on simplebus1 Event timer "iMXGPT" frequency 66000000 Hz quality 800 Timecounter "iMXGPT" frequency 66000000 Hz quality 1000 mp_tmr0: mem 0xa00200-0xa002ff,0xa00600-0xa006ff irq 27,29 on simplebus0 Event timer "MPCore" frequency 492000000 Hz quality 1000 gpio0: mem 0x209c000-0x209ffff irq 98,99 on simplebus1 gpiobus0: on gpio0 gpioc0: on gpio0 gpio1: mem 0x20a0000-0x20a3fff irq 100,101 on simplebus1 gpiobus1: on gpio1 gpioc1: on gpio1 gpio2: mem 0x20a4000-0x20a7fff irq 102,103 on simplebus1 gpiobus2: on gpio2 gpioc2: on gpio2 gpio3: mem 0x20a8000-0x20abfff irq 104,105 on simplebus1 gpiobus3: on gpio3 gpioc3: on gpio3 gpio4: mem 0x20ac000-0x20affff irq 106,107 on simplebus1 gpiobus4: on gpio4 gpioc4: on gpio4 gpio5: mem 0x20b0000-0x20b3fff irq 108,109 on simplebus1 gpiobus5: on gpio5 gpioc5: on gpio5 gpio6: mem 0x20b4000-0x20b7fff irq 110,111 on simplebus1 gpiobus6: on gpio6 gpioc6: on gpio6 uart0: mem 0x2020000-0x2023fff irq 58 on simplebus1 uart0: console (115200,n,8,1) usbphy0: mem 0x20c9000-0x20c9fff irq 44 on simplebus1 usbphy1: mem 0x20ca000-0x20cafff irq 45 on simplebus1 ffec0: mem 0x2188000-0x218bfff irq 150,151 on simplebus2 miibus0: on ffec0 atphy0: PHY 1 on miibus0 atphy0: none, 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseSX-FDX, 1000baseT-FDX, 1000baseT-FDX-master, auto ffec0: Ethernet address: 00:1f:7b:b4:17:64 ehci0: mem 0x2184000-0x21841ff irq 75 on simplebus2 ehci0: [GIANT-LOCKED] usbus0: EHCI version 1.0 usbus0 on ehci0 ehci1: mem 0x2184200-0x21843ff irq 72 on simplebus2 ehci1: [GIANT-LOCKED] usbus1: EHCI version 1.0 usbus1 on ehci1 sdhci_imx0: mem 0x2190000-0x2193fff irq 54 on simplebus2 mmc0: on sdhci_imx0 sdhci_imx1: mem 0x2198000-0x219bfff irq 56 on simplebus2 mmc1: on sdhci_imx1 Timecounters tick every 2.000 msec usbus0: 480Mbps High Speed USB v2.0 usbus1: 480Mbps High Speed USB v2.0 mmc0: No compatible cards found on bus ugen1.1: at usbus0 uhub0: on usbus0 Freescale> at usbus1 uhub1: on usbus1 mmc1: CMD7 failed, RESULT: 1 sdhci_imx1-slot0: Got data interrupt 0x00000002, but there is no active command. sdhci_imx1-slot0: ============== REGISTER DUMP ============== sdhci_imx1-slot0: Sys addr: 0x00000000 | Version: 0x00000002 sdhci_imx1-slot0: Blk size: 0x00000040 | Blk cnt: 0x00000001 sdhci_imx1-slot0: Argument: 0x00010000 | Trn mode: 0x00000012 sdhci_imx1-slot0: Present: 0x00fd0000 | Host ctl: 0x00000001 sdhci_imx1-slot0: Power: 0x0000000d | Blk gap: 0x00000080 sdhci_imx1-slot0: Wake-up: 0x00000000 | Clock: 0x0000fa07 sdhci_imx1-slot0: Timeout: 0x00000006 | Int stat: 0x00000000 sdhci_imx1-slot0: Int enab: 0x017f00fb | Sig enab: 0x017f00fb sdhci_imx1-slot0: AC12 err: 0x00000000 | Slot int: 0x00000000 sdhci_imx1-slot0: Caps: 0x0377c800 | Max curr: 0x80000012 sdhci_imx1-slot0: =========================================== mmcsd0: 16GB at mmc1 50.0MHz/4bit/65535-block random: unblocking device. Release APs Root mount waiting for: usbus1 usbus0 uhub0: 1 port with 1 removable, self powered uhub1: 1 port with 1 removable, self powered Spurious interrupt detected ugen1.2: at usbus1 uhub2: on usbus1 Root mount waiting for: usbus1 uhub2: 4 ports with 3 removable, self powered Root mount waiting for: usbus1 ugen1.3: at usbus1 uhub3: on usbus1 uhub3: 4 ports with 4 removable, self powered Root mount waiting for: usbus1 ugen1.4: at usbus1 umass0: on usbus1 da0 at umass-sim0 bus 0 scbus0 target 0 lun 0 da0: Fixed Direct Access SCSI device da0: Serial Number 100 da0: 40.000MB/s transfers da0: 57231MB (117210240 512 byte sectors: 255H 63S/T 7296C) da0: quirks=0x2 Root mount waiting for: usbus1 Root mount waiting for: usbus1 ugen1.5: at usbus1 umass1: on usbus1 Trying to mount root from ufs:/dev/mmcsd0s2a [rw,noatime]... WARNING: / was not properly dismounted da1 at umass-sim1 bus 1 scbus1 target 0 lun 0 da1: Fixed Direct Access SPC-2 SCSI device da1: Serial Number 2HB50SN0 da1: 40.000MB/s transfers da1: 152627MB (3125w8a1r8n0i8n g5:1 2n ob yttiem es-eocft-odrasy: c2l5o5cHk 6r3eSg/iTs t1e9r4e5d7,C )s y sdtae1m: tqiumier kwsi=l0lx 2na c curately Setting hostuuid: 48a01975-1723-11e5-8c5f-001f7bb41764. Setting hostid: 0xdb3b3790. No suitable dump device was found. Starting file system checks: ** SU+J Recovering /dev/mmcsd0s2a ** Reading 4194304 byte journal from inode 4. ** Building recovery table. ** Resolving unreferenced inode list. ** Processing journal entries. ***** FILE SYSTEM MARKED CLEAN ***** Mounting local file systems:. Setting hostname: wqtest. Additional TCP/IP options: drop SYN+FIN packets=YES. Feeding entropy:. ffec0: link state changed to DOWN Starting Network: lo0 ffec0. lo0: flags=8049 metric 0 mtu 16384 options=600003 inet 127.0.0.1 netmask 0xff000000 inet6 ::1 prefixlen 128 inet6 fe80::1%lo0 prefixlen 64 scopeid 0x2 groups: lo nd6 options=21 ffec0: flags=8843 metric 0 mtu 1500 options=80008 ether 00:1f:7b:b4:17:64 inet 192.168.0.201 netmask 0xffffff00 broadcast 192.168.0.255 media: Ethernet autoselect (none) status: no carrier nd6 options=29 ELF ldconfig path: /lib /usr/lib /usr/lib/compat Starting devd. add net default: gateway 192.168.0.155 Additional inet routing options: ignore ICMP redirect=YES log ICMP redirect=YES. add net fe80::: gateway ::1 add net ff02::: gateway ::1 add net ::ffff:0.0.0.0: gateway ::1 add net ::0.0.0.0: gateway ::1 Creating and/or trimming log files. Starting syslogd. Starting casperd. Clearing /tmp. Updating motd:. Mounting late file systems:. Starting ntpd. Performing sanity check on sshd configuration. Starting sshd. Starting cron. Starting background file system checks in 60 seconds. Sat Jun 20 08:26:29 UTC 2015 FreeBSD/arm (wqtest) (ttyu0) login: root Password: Jun 20 08:45:54 wqtest login: ROOT LOGIN (root) ON ttyu0 FreeBSD 11.0-CURRENT (IMX6) #0 r284621M: Sat Jun 20 06:17:16 CEST 2015 Welcome to FreeBSD! Release Notes, Errata: https://www.FreeBSD.org/releases/ Security Advisories: https://www.FreeBSD.org/security/ FreeBSD Handbook: https://www.FreeBSD.org/handbook/ FreeBSD FAQ: https://www.FreeBSD.org/faq/ Questions List: https://lists.FreeBSD.org/mailman/listinfo/freebsd-questions/ FreeBSD Forums: https://forums.FreeBSD.org/ Documents installed with the system are in the /usr/local/share/doc/freebsd/ directory, or can be installed later with: pkg install en-freebsd-doc For other languages, replace "en" with a language code like de or fr. Show the version of FreeBSD installed: freebsd-version ; uname -a Please include that output and any error messages when posting questions. Introduction to manual pages: man man FreeBSD directory layout: man hier Edit /etc/motd to change this login announcement. root@wqtest:~ # Jun 20 08:46:48 wqtest su: gwgpi to root on /dev/pts/0 U-Boot 2014.10 (Jun 20 2015 - 09:33:42) CPU: Freescale i.MX6Q rev1.2 at 792 MHz Reset cause: POR Board: Wandboard I2C: ready DRAM: 2 GiB WARNING: Caches not enabled MMC: FSL_SDHC: 0, FSL_SDHC: 1 *** Warning - bad CRC, using default environment No panel detected: default to HDMI Display: HDMI (1024x768) In: serial Out: serial Err: serial Net: FEC [PRIME] Hit any key to stop autoboot: 5  4  3  2  1  0 switch to partitions #0, OK mmc0 is current device reading boot.scr 158 bytes read in 9 ms (16.6 KiB/s) Running bootscript from mmc ... ## Executing script at 12000000 reading ubldr 265350 bytes read in 27 ms (9.4 MiB/s) ## Starting application at 0x11000094 ... Consoles: U-Boot console Compatible U-Boot API signature found @8f5844a8 FreeBSD/armv6 U-Boot loader, Revision 1.2 (root@noname.privat, Sat Jun 20 06:25:53 CEST 2015) DRAM: 2048MB MMC: no card present MMC Device 2 not found MMC Device 3 not found Number of U-Boot devices: 2 U-Boot env: loaderdev not set, will probe all devices. Found U-Boot device: disk Probing all disk devices... Checking unit=0 slice= partition=... good. |/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\/boot/kernel/kernel data=0x5aa31c+0x3dce4 |/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|syms=[0x4+0x5c960/-\+0x4+0x5868c|/-] Hit [Enter] to boot immediately, or any other key for command prompt. Booting [/boot/kernel/kernel] in 9 seconds... Booting [/boot/kernel/kernel] in 8 seconds... Booting [/boot/kernel/kernel] in 7 seconds... Booting [/boot/kernel/kernel] in 6 seconds... Booting [/boot/kernel/kernel]... \|/-\|/-\|/boot/kernel/wandboard-quad.dtb size=0x22cc Loaded DTB from file 'wandboard-quad.dtb'. /-\|/Kernel entry at 0x11200100... Kernel args: (null) KDB: debugger backends: ddb KDB: current backend: ddb Copyright (c) 1992-2015 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 11.0-CURRENT #0 r284621M: Sat Jun 20 06:17:16 CEST 2015 root@noname.privat:/usr/home/CROCHET/crochet/work/obj/arm.armv6/usr/SRC/head/sys/IMX6 arm FreeBSD clang version 3.6.1 (tags/RELEASE_361/final 237755) 20150525 CPU: Cortex A9-r2 rev 10 (Cortex-A core) Supported features: ARM_ISA THUMB2 JAZELLE THUMBEE ARMv4 Security_Ext WB disabled EABT branch prediction enabled LoUU:2 LoC:2 LoUIS:2 Cache level 1: 32KB/32B 4-way data cache WB Read-Alloc Write-Alloc 32KB/32B 4-way instruction cache Read-Alloc real memory = 2147483648 (2048 MB) avail memory = 2093948928 (1996 MB) FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs random: entropy device infrastructure driver random: selecting highest priority adaptor random: SOFT: yarrow init() random: selecting highest priority adaptor ofwbus0: simplebus0: on ofwbus0 simplebus1: mem 0x2000000-0x20fffff on simplebus0 imx6_anatop0: mem 0x20c8000-0x20c8fff irq 49 on simplebus1 simplebus2: mem 0x2100000-0x21fffff on simplebus0 ocotp0: mem 0x21bc000-0x21bffff on simplebus2 ccm0: mem 0x20c4000-0x20c7fff irq 119,120 on simplebus1 l2cache0: mem 0xa02000-0xa02fff irq 124 on simplebus0 l2cache0: Part number: 0x3, release: 0x7 l2cache0: L2 Cache enabled: 1024KB/32B 16 ways imx_iomux0: mem 0x20e0000-0x20e3fff irq 32 on simplebus1 gic0: mem 0xa01000-0xa01fff,0xa00100-0xa001ff on simplebus0 gic0: pn 0x390, arch 0x1, rev 0x2, implementer 0x43b irqs 160 imx_gpt0: mem 0x2098000-0x209bfff irq 87 on simplebus1 Event timer "iMXGPT" frequency 66000000 Hz quality 800 Timecounter "iMXGPT" frequency 66000000 Hz quality 1000 mp_tmr0: mem 0xa00200-0xa002ff,0xa00600-0xa006ff irq 27,29 on simplebus0 Event timer "MPCore" frequency 492000000 Hz quality 1000 gpio0: mem 0x209c000-0x209ffff irq 98,99 on simplebus1 gpiobus0: on gpio0 gpioc0: on gpio0 gpio1: mem 0x20a0000-0x20a3fff irq 100,101 on simplebus1 gpiobus1: on gpio1 gpioc1: on gpio1 gpio2: mem 0x20a4000-0x20a7fff irq 102,103 on simplebus1 gpiobus2: on gpio2 gpioc2: on gpio2 gpio3: mem 0x20a8000-0x20abfff irq 104,105 on simplebus1 gpiobus3: on gpio3 gpioc3: on gpio3 gpio4: mem 0x20ac000-0x20affff irq 106,107 on simplebus1 gpiobus4: on gpio4 gpioc4: on gpio4 gpio5: mem 0x20b0000-0x20b3fff irq 108,109 on simplebus1 gpiobus5: on gpio5 gpioc5: on gpio5 gpio6: mem 0x20b4000-0x20b7fff irq 110,111 on simplebus1 gpiobus6: on gpio6 gpioc6: on gpio6 uart0: mem 0x2020000-0x2023fff irq 58 on simplebus1 uart0: console (115200,n,8,1) usbphy0: mem 0x20c9000-0x20c9fff irq 44 on simplebus1 usbphy1: mem 0x20ca000-0x20cafff irq 45 on simplebus1 ffec0: mem 0x2188000-0x218bfff irq 150,151 on simplebus2 miibus0: on ffec0 atphy0: PHY 1 on miibus0 atphy0: none, 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseSX-FDX, 1000baseT-FDX, 1000baseT-FDX-master, auto ffec0: Ethernet address: 00:1f:7b:b4:17:64 ehci0: mem 0x2184000-0x21841ff irq 75 on simplebus2 ehci0: [GIANT-LOCKED] usbus0: EHCI version 1.0 usbus0 on ehci0 ehci1: mem 0x2184200-0x21843ff irq 72 on simplebus2 ehci1: [GIANT-LOCKED] usbus1: EHCI version 1.0 usbus1 on ehci1 sdhci_imx0: mem 0x2190000-0x2193fff irq 54 on simplebus2 mmc0: on sdhci_imx0 sdhci_imx1: mem 0x2198000-0x219bfff irq 56 on simplebus2 mmc1: on sdhci_imx1 Timecounters tick every 2.000 msec usbus0: 480Mbps High Speed USB v2.0 usbus1: 480Mbps High Speed USB v2.0 mmc0: No compatible cards found on bus ugen1.1: at usbus0 uhub0: on usbus0 Freescale> at usbus1 uhub1: on usbus1 mmc1: CMD7 failed, RESULT: 1 sdhci_imx1-slot0: Got data interrupt 0x00000002, but there is no active command. sdhci_imx1-slot0: ============== REGISTER DUMP ============== sdhci_imx1-slot0: Sys addr: 0x00000000 | Version: 0x00000002 sdhci_imx1-slot0: Blk size: 0x00000040 | Blk cnt: 0x00000001 sdhci_imx1-slot0: Argument: 0x00010000 | Trn mode: 0x00000012 sdhci_imx1-slot0: Present: 0x00fd0000 | Host ctl: 0x00000001 sdhci_imx1-slot0: Power: 0x0000000d | Blk gap: 0x00000080 sdhci_imx1-slot0: Wake-up: 0x00000000 | Clock: 0x0000fa07 sdhci_imx1-slot0: Timeout: 0x00000006 | Int stat: 0x00000000 sdhci_imx1-slot0: Int enab: 0x017f00fb | Sig enab: 0x017f00fb sdhci_imx1-slot0: AC12 err: 0x00000000 | Slot int: 0x00000000 sdhci_imx1-slot0: Caps: 0x0377c800 | Max curr: 0x80000012 sdhci_imx1-slot0: =========================================== mmcsd0: 16GB at mmc1 50.0MHz/4bit/65535-block random: unblocking device. Release APs Root mount waiting for: usbus1 usbus0 uhub0: 1 port with 1 removable, self powered uhub1: 1 port with 1 removable, self powered Spurious interrupt detected ugen1.2: at usbus1 uhub2: on usbus1 Root mount waiting for: usbus1 uhub2: 4 ports with 3 removable, self powered Root mount waiting for: usbus1 ugen1.3: at usbus1 uhub3: on usbus1 uhub3: 4 ports with 4 removable, self powered Root mount waiting for: usbus1 ugen1.4: at usbus1 umass0: on usbus1 da0 at umass-sim0 bus 0 scbus0 target 0 lun 0 da0: Fixed Direct Access SCSI device da0: Serial Number 100 da0: 40.000MB/s transfers da0: 57231MB (117210240 512 byte sectors: 255H 63S/T 7296C) da0: quirks=0x2 Root mount waiting for: usbus1 Root mount waiting for: usbus1 ugen1.5: at usbus1 umass1: on usbus1 Trying to mount root from ufs:/dev/mmcsd0s2a [rw,noatime]... WARNING: / was not properly dismounted da1 at umass-sim1 bus 1 scbus1 target 0 lun 0 da1: Fixed Direct Access SPC-2 SCSI device da1: Serial Number 2HB50SN0 w a r n idnag1:: n4o0 .t0i0m0eM-Bo/fs- dtarya ncslfoecrks r edgai1s:t e1r5e2d6,2 7sMyBs t(e3m1 2t5i8m1e8 0w8i l5l1 2n obty tbee sseectt oarcsc:u r2a5t5eHl y6 3 S/T 19457C) da1: quirks=0x2 Setting hostuuid: 48a01975-1723-11e5-8c5f-001f7bb41764. Setting hostid: 0xdb3b3790. No suitable dump device was found. Starting file system checks: ** SU+J Recovering /dev/mmcsd0s2a ** Reading 4194304 byte journal from inode 4. ** Building recovery table. ** Resolving unreferenced inode list. ** Processing journal entries. ** 2 journal records in 512 bytes for 12.50% utilization ** Freed 0 inodes (0 dirs) 0 blocks, and 0 frags. ***** FILE SYSTEM MARKED CLEAN ***** Mounting local file systems:. Setting hostname: wqtest. Additional TCP/IP options: drop SYN+FIN packets=YES. Feeding entropy:. ffec0: link state changed to DOWN Starting Network: lo0 ffec0. lo0: flags=8049 metric 0 mtu 16384 options=600003 inet 127.0.0.1 netmask 0xff000000 inet6 ::1 prefixlen 128 inet6 fe80::1%lo0 prefixlen 64 scopeid 0x2 groups: lo nd6 options=21 ffec0: flags=8843 metric 0 mtu 1500 options=80008 ether 00:1f:7b:b4:17:64 inet 192.168.0.201 netmask 0xffffff00 broadcast 192.168.0.255 media: Ethernet autoselect (none) status: no carrier nd6 options=29 ELF ldconfig path: /lib /usr/lib /usr/lib/compat Starting devd. add net default: gateway 192.168.0.155 Additional inet routing options: ignore ICMP redirect=YES log ICMP redirect=YES. add net fe80::: gateway ::1 add net ff02::: gateway ::1 add net ::ffff:0.0.0.0: gateway ::1 add net ::0.0.0.0: gateway ::1 Creating and/or trimming log files. Starting syslogd. Starting casperd. Clearing /tmp. Updating motd:. Mounting late file systems:. Starting ntpd. Performing sanity check on sshd configuration. Starting sshd. Starting cron. Starting background file system checks in 60 seconds. Sat Jun 20 08:47:32 UTC 2015 FreeBSD/arm (wqtest) (ttyu0) login: root Password: Jun 20 09:28:28 wqtest login: ROOT LOGIN (root) ON ttyu0 FreeBSD 11.0-CURRENT (IMX6) #0 r284621M: Sat Jun 20 06:17:16 CEST 2015 Welcome to FreeBSD! Release Notes, Errata: https://www.FreeBSD.org/releases/ Security Advisories: https://www.FreeBSD.org/security/ FreeBSD Handbook: https://www.FreeBSD.org/handbook/ FreeBSD FAQ: https://www.FreeBSD.org/faq/ Questions List: https://lists.FreeBSD.org/mailman/listinfo/freebsd-questions/ FreeBSD Forums: https://forums.FreeBSD.org/ Documents installed with the system are in the /usr/local/share/doc/freebsd/ directory, or can be installed later with: pkg install en-freebsd-doc For other languages, replace "en" with a language code like de or fr. Show the version of FreeBSD installed: freebsd-version ; uname -a Please include that output and any error messages when posting questions. Introduction to manual pages: man man FreeBSD directory layout: man hier Edit /etc/motd to change this login announcement. root@wqtest:~ # fsck -tufs -y /dev/da1 ** /dev/da1 ** Last Mounted on /usr/local/DEVEL ** Phase 1 - Check Blocks and Sizes INCORRECT BLOCK COUNT I=1926159 (4288 should be 832) CORRECT? yes INCORRECT BLOCK COUNT I=1926526 (2304 should be 832) CORRECT? yes INCORRECT BLOCK COUNT I=1926536 (3392 should be 832) CORRECT? yes INCORRECT BLOCK COUNT I=1926618 (3392 should be 832) CORRECT? yes INCORRECT BLOCK COUNT I=1926752 (3392 should be 832) CORRECT? yes ** Phase 2 - Check Pathnames ** Phase 3 - Check Connectivity ** Phase 4 - Check Reference Counts ** Phase 5 - Check Cyl groups FREE BLK COUNT(S) WRONG IN SUPERBLK SALVAGE? yes SUMMARY INFORMATION BAD SALVAGE? yes BLK(S) MISSING IN BIT MAPS SALVAGE? yes 2203035 files, 12608364 used, 25236529 free (337873 frags, 3112332 blocks, 0.9% fragmentation) ***** FILE SYSTEM MARKED CLEAN ***** ***** FILE SYSTEM WAS MODIFIED ***** root@wqtest:~ # s root@wqtest:~ # root@wqtest:~ # ugen1.6: at usbus1 axge0: on usbus1 miibus1: on axge0 rgephy0: PHY 3 on miibus1 rgephy0: none, 10baseT, 10baseT-FDX, 10baseT-FDX-flow, 100baseTX, 100baseTX-FDX, 100baseTX-FDX-flow, 1000baseT-FDX, 1000baseT-FDX-master, 1000baseT-FDX-flow, 1000baseT-FDX-flow-master, auto, auto-flow ue0: on axge0 ue0: Ethernet address: a0:ce:c8:00:08:13 root@wqtest:~ # vi /etc/rc.conf [?7h[?1h=#gateway_enable="YES" #!! #local_unbound_enable="YES" # local caching resolver #hostname="wqtest" ifconfig_lo0="inet 127.0.0.1" #!! ifconfig_ffec0="inet 192.168.0.201 netmask 255.255.255.0" #ifconfig_ue1="up mtu 1492" ##pf_enable="YES"# Enable PF (load module if required) #pflog_enable="YES"# start pflogd(8) #ftpproxy_enable="YES"# Set to YES to enable ftp-proxy(8) for pf #ftpproxy_flags=""# additional flags for ftp-proxy(8) #sshguard_enable="YES" #expiretable_enable="YES" #expiretable_flags="-v -d -t 24h bruteforce" #defaultrouter="192.168.0.155" #!! #keymap="german.iso" font8x14="iso15-8x14" font8x16="iso15-8x16" font8x8="iso15-8x8" #/etc/rc.conf: unmodified: line 1ifconfig_affec0="inet 192.168.0.201 netmask 255.255.255.0"xffec0="inet 192.168.0.201 netmask 255.255.255.0"gffec0="inet 192.168.0.201 net mask 255.255.255.0"effec0="inet 192.168.0.201 netmask 255.255.255.0" Copying file for recovery... efec0="inet 192.168.0.201 netmask 255.255.255.0" ec0="inet 192.168.0.201 netmask 255.255.255.0" c0="inet 192.168.0.201 netmask 255.255.255.0" 0="inet 192.168.0.201 netmask 255.255.255.0"  :wq /etc/rc.conf: 78 lines, 2819 characters [?1l>D.  [?1l>root@wqtest:~ # reboot Jun 20 09:38:08 wqtest reboot: rebooted by root Jun 20 09:38:08 wqtest syslogd: exiting on signal 15 Waiting (max 60 seconds) for system process `vnlru' to stop...done W a iStyinncgi n(gm adxi s6k0s ,s evcnoonddess) rfeomra isnyisntge.m. .p2r ocess `syncer' to stop...1 1 0 0 0 done Waiting (max 60 seconds) for system process `bufdaemon' to stop...done All buffers synced. Uptime: 10m20s Rebooting... U-Boot 2014.10 (Jun 20 2015 - 09:33:42) CPU: Freescale i.MX6Q rev1.2 at 792 MHz Reset cause: WDOG Board: Wandboard I2C: ready DRAM: 2 GiB WARNING: Caches not enabled MMC: FSL_SDHC: 0, FSL_SDHC: 1 *** Warning - bad CRC, using default environment No panel detected: default to HDMI Display: HDMI (1024x768) In: serial Out: serial Err: serial Net: FEC [PRIME] Hit any key to stop autoboot: 5  4  3  2  1  0 switch to partitions #0, OK mmc0 is current device reading boot.scr 158 bytes read in 10 ms (14.6 KiB/s) Running bootscript from mmc ... ## Executing script at 12000000 reading ubldr 265350 bytes read in 28 ms (9 MiB/s) ## Starting application at 0x11000094 ... Consoles: U-Boot console Compatible U-Boot API signature found @8f5844a8 FreeBSD/armv6 U-Boot loader, Revision 1.2 (root@noname.privat, Sat Jun 20 06:25:53 CEST 2015) DRAM: 2048MB MMC: no card present MMC Device 2 not found MMC Device 3 not found Number of U-Boot devices: 2 U-Boot env: loaderdev not set, will probe all devices. Found U-Boot device: disk Probing all disk devices... Checking unit=0 slice= partition=... good. |/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\/boot/kernel/kernel data=0x5aa31c+0x3dce4 |/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|syms=[0x4+0x5c960/-\+0x4+0x5868c|/-] Hit [Enter] to boot immediately, or any other key for command prompt. Booting [/boot/kernel/kernel] in 9 seconds... Booting [/boot/kernel/kernel] in 8 seconds... Booting [/boot/kernel/kernel]... \|/-\|/-\|/boot/kernel/wandboard-quad.dtb size=0x22cc Loaded DTB from file 'wandboard-quad.dtb'. /-\|/Kernel entry at 0x11200100... Kernel args: (null) KDB: debugger backends: ddb KDB: current backend: ddb Copyright (c) 1992-2015 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 11.0-CURRENT #0 r284621M: Sat Jun 20 06:17:16 CEST 2015 root@noname.privat:/usr/home/CROCHET/crochet/work/obj/arm.armv6/usr/SRC/head/sys/IMX6 arm FreeBSD clang version 3.6.1 (tags/RELEASE_361/final 237755) 20150525 CPU: Cortex A9-r2 rev 10 (Cortex-A core) Supported features: ARM_ISA THUMB2 JAZELLE THUMBEE ARMv4 Security_Ext WB disabled EABT branch prediction enabled LoUU:2 LoC:2 LoUIS:2 Cache level 1: 32KB/32B 4-way data cache WB Read-Alloc Write-Alloc 32KB/32B 4-way instruction cache Read-Alloc real memory = 2147483648 (2048 MB) avail memory = 2093948928 (1996 MB) FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs random: entropy device infrastructure driver random: selecting highest priority adaptor random: SOFT: yarrow init() random: selecting highest priority adaptor ofwbus0: simplebus0: on ofwbus0 simplebus1: mem 0x2000000-0x20fffff on simplebus0 imx6_anatop0: mem 0x20c8000-0x20c8fff irq 49 on simplebus1 simplebus2: mem 0x2100000-0x21fffff on simplebus0 ocotp0: mem 0x21bc000-0x21bffff on simplebus2 ccm0: mem 0x20c4000-0x20c7fff irq 119,120 on simplebus1 l2cache0: mem 0xa02000-0xa02fff irq 124 on simplebus0 l2cache0: Part number: 0x3, release: 0x7 l2cache0: L2 Cache enabled: 1024KB/32B 16 ways imx_iomux0: mem 0x20e0000-0x20e3fff irq 32 on simplebus1 gic0: mem 0xa01000-0xa01fff,0xa00100-0xa001ff on simplebus0 gic0: pn 0x390, arch 0x1, rev 0x2, implementer 0x43b irqs 160 imx_gpt0: mem 0x2098000-0x209bfff irq 87 on simplebus1 Event timer "iMXGPT" frequency 66000000 Hz quality 800 Timecounter "iMXGPT" frequency 66000000 Hz quality 1000 mp_tmr0: mem 0xa00200-0xa002ff,0xa00600-0xa006ff irq 27,29 on simplebus0 Event timer "MPCore" frequency 492000000 Hz quality 1000 gpio0: mem 0x209c000-0x209ffff irq 98,99 on simplebus1 gpiobus0: on gpio0 gpioc0: on gpio0 gpio1: mem 0x20a0000-0x20a3fff irq 100,101 on simplebus1 gpiobus1: on gpio1 gpioc1: on gpio1 gpio2: mem 0x20a4000-0x20a7fff irq 102,103 on simplebus1 gpiobus2: on gpio2 gpioc2: on gpio2 gpio3: mem 0x20a8000-0x20abfff irq 104,105 on simplebus1 gpiobus3: on gpio3 gpioc3: on gpio3 gpio4: mem 0x20ac000-0x20affff irq 106,107 on simplebus1 gpiobus4: on gpio4 gpioc4: on gpio4 gpio5: mem 0x20b0000-0x20b3fff irq 108,109 on simplebus1 gpiobus5: on gpio5 gpioc5: on gpio5 gpio6: mem 0x20b4000-0x20b7fff irq 110,111 on simplebus1 gpiobus6: on gpio6 gpioc6: on gpio6 uart0: mem 0x2020000-0x2023fff irq 58 on simplebus1 uart0: console (115200,n,8,1) usbphy0: mem 0x20c9000-0x20c9fff irq 44 on simplebus1 usbphy1: mem 0x20ca000-0x20cafff irq 45 on simplebus1 ffec0: mem 0x2188000-0x218bfff irq 150,151 on simplebus2 miibus0: on ffec0 atphy0: PHY 1 on miibus0 atphy0: none, 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseSX-FDX, 1000baseT-FDX, 1000baseT-FDX-master, auto ffec0: Ethernet address: 00:1f:7b:b4:17:64 ehci0: mem 0x2184000-0x21841ff irq 75 on simplebus2 ehci0: [GIANT-LOCKED] usbus0: EHCI version 1.0 usbus0 on ehci0 ehci1: mem 0x2184200-0x21843ff irq 72 on simplebus2 ehci1: [GIANT-LOCKED] usbus1: EHCI version 1.0 usbus1 on ehci1 sdhci_imx0: mem 0x2190000-0x2193fff irq 54 on simplebus2 mmc0: on sdhci_imx0 sdhci_imx1: mem 0x2198000-0x219bfff irq 56 on simplebus2 mmc1: on sdhci_imx1 Timecounters tick every 2.000 msec usbus0: 480Mbps High Speed USB v2.0 usbus1: 480Mbps High Speed USB v2.0 mmc0: No compatible cards found on bus ugen1.1: at usbus0 uhub0: on usbus0 Freescale> at usbus1 uhub1: on usbus1 mmc1: CMD7 failed, RESULT: 1 sdhci_imx1-slot0: Got data interrupt 0x00000002, but there is no active command. sdhci_imx1-slot0: ============== REGISTER DUMP ============== sdhci_imx1-slot0: Sys addr: 0x00000000 | Version: 0x00000002 sdhci_imx1-slot0: Blk size: 0x00000040 | Blk cnt: 0x00000001 sdhci_imx1-slot0: Argument: 0x00010000 | Trn mode: 0x00000012 sdhci_imx1-slot0: Present: 0x00fd0000 | Host ctl: 0x00000001 sdhci_imx1-slot0: Power: 0x0000000d | Blk gap: 0x00000080 sdhci_imx1-slot0: Wake-up: 0x00000000 | Clock: 0x0000fa07 sdhci_imx1-slot0: Timeout: 0x00000006 | Int stat: 0x00000000 sdhci_imx1-slot0: Int enab: 0x017f00fb | Sig enab: 0x017f00fb sdhci_imx1-slot0: AC12 err: 0x00000000 | Slot int: 0x00000000 sdhci_imx1-slot0: Caps: 0x0377c800 | Max curr: 0x80000012 sdhci_imx1-slot0: =========================================== mmcsd0: 16GB at mmc1 50.0MHz/4bit/65535-block random: unblocking device. Release APs Root mount waiting for: usbus1 usbus0 uhub0: 1 port with 1 removable, self powered uhub1: 1 port with 1 removable, self powered ugen1.2: at usbus1 uhub2: on usbus1 Root mount waiting for: usbus1 uhub2: 4 ports with 3 removable, self powered Root mount waiting for: usbus1 ugen1.3: at usbus1 ugen1.4: at usbus1 uhub3: on usbus1 Root mount waiting for: usbus1 uhub3: 4 ports with 4 removable, self powered Root mount waiting for: usbus1 ugen1.5: at usbus1 umass0: on usbus1 da0 at umass-sim0 bus 0 scbus0 target 0 lun 0 da0: Fixed Direct Access SCSI device da0: Serial Number 100 da0: 40.000MB/s transfers da0: 57231MB (117210240 512 byte sectors: 255H 63S/T 7296C) da0: quirks=0x2 Root mount waiting for: usbus1 ugen1.6: at usbus1 umass1: on usbus1 Trying to mount root from ufs:/dev/mmcsd0s2a [rw,noatime]... da1 at umass-sim1 bus 1 scbus1 target 0 lun 0 da1: Fixed Direct Access SPC-2 SCSI device da1: Serial Number 2HBw5a0rSnNi0n g : n o dtai1m:e -4o0f.-0d0a0yM Bc/lso ctkr arnesgfiesrtse r edda,1 :s y1s5t2e6m2 7tMiBm e( 3w1i2l5l8 1n8o0t8 b5e1 2s ebty taec csuercattoerlsy: 255H 63S/T 19457C) da1: quirks=0x2 Setting hostuuid: 48a01975-1723-11e5-8c5f-001f7bb41764. Setting hostid: 0xdb3b3790. No suitable dump device was found. Starting file system checks: /dev/mmcsd0s2a: FILE SYSTEM CLEAN; SKIPPING CHECKS /dev/mmcsd0s2a: clean, 3583402 free (178 frags, 447903 blocks, 0.0% fragmentation) Mounting local file systems:. Setting hostname: wqtest. Additional TCP/IP options: drop SYN+FIN packets=YES. Feeding entropy:. Starting Network: lo0 ffec0. lo0: flags=8049 metric 0 mtu 16384 options=600003 inet 127.0.0.1 netmask 0xff000000 inet6 ::1 prefixlen 128 inetffSpurious interrupt detected eSpurious interrupt detected cSpurious interrupt detected 0Spurious interrupt detected :Spurious interrupt detected lSpurious interrupt detected iSpurious interrupt detected nSpurious interrupt detected kSpurious interrupt detected Spurious interrupt detected sSpurious interrupt detected taSpurious interrupt detected te chaSpurious interrupt detected nSpurious interrupt detected ged toSpurious interrupt detected DOSpurious interrupt detected WNSpurious interrupt detected Spurious interrupt detected Spurious interrupt detected 6 fe80::1%lo0 prefixlen 64 scopeid 0x2 groups: lo nd6 options=21 ffec0: flags=8802 metric 0 mtu 1500 options=80008 ether 00:1f:7b:b4:17:64 media: Ethernet autoselect (none) status: no carrier nd6 options=29 ELF ldconfig path: /lib /usr/lib /usr/lib/compat Starting devd. Starting Network: ffec0. ffec0: flags=8802 metric 0 mtu 1500 options=80008 ether 00:1f:7b:b4:17:64 media: Ethernet autoselect (none) status: no carrier nd6 options=29 Additional inet routing options: ignore ICMP redirect=YES log ICMP redirect=YES. axge0: on usbus1 route: writing to routing socket: Network is unreachable add net default: gateway 192.168.0.155 fib 0: Network is unreachable Additional inet routing options: ignore ICMP redirect=YES log ICMP redirect=YES. add net fe80::: gateway ::1 add net ff02::: gateway ::1 miibus1: on axge0 rgephy0: PHY 3 on miibus1 rgephy0: none, 10baseT, 10baseT-FDX, 10baseT-FDX-flow, 100baseTX, 100baseTX-FDX, 100baseTX-FDX-flow, 1000baseT-FDX, 1000baseT-FDX-master, 1000baseT-FDX-flow, 1000baseT-FDX-flow-master, auto, auto-flow add net ::ffff:0.0.0.0: gateway ::1 ue0: on axge0 ue0: Ethernet address: a0:ce:c8:00:08:13 add net ::0.0.0.0: gateway ::1 ue0: link state changed to DOWN Creating and/or trimming log files. Starting syslogd. Starting casperd. Clearing /tmp. Updating motd:. Mounting late file systems:. Starting ntpd. Performing sanity check on sshd configuration. Starting sshd. Starting cron. Starting background file system checks in 60 seconds. Sat Jun 20 09:38:32 UTC 2015 FreeBSD/arm (wqtest) (ttyu0) login: root Password: Jun 20 09:38:38 wqtest login: ROOT LOGIN (root) ON ttyu0 FreeBSD 11.0-CURRENT (IMX6) #0 r284621M: Sat Jun 20 06:17:16 CEST 2015 Welcome to FreeBSD! Release Notes, Errata: https://www.FreeBSD.org/releases/ Security Advisories: https://www.FreeBSD.org/security/ FreeBSD Handbook: https://www.FreeBSD.org/handbook/ FreeBSD FAQ: https://www.FreeBSD.org/faq/ Questions List: https://lists.FreeBSD.org/mailman/listinfo/freebsd-questions/ FreeBSD Forums: https://forums.FreeBSD.org/ Documents installed with the system are in the /usr/local/share/doc/freebsd/ directory, or can be installed later with: pkg install en-freebsd-doc For other languages, replace "en" with a language code like de or fr. Show the version of FreeBSD installed: freebsd-version ; uname -a Please include that output and any error messages when posting questions. Introduction to manual pages: man man FreeBSD directory layout: man hier Edit /etc/motd to change this login announcement. root@wqtest:~ # ifconfig ffec0: flags=8802 metric 0 mtu 1500 options=80008 ether 00:1f:7b:b4:17:64 media: Ethernet autoselect (none) status: no carrier nd6 options=29 lo0: flags=8049 metric 0 mtu 16384 options=600003 inet 127.0.0.1 netmask 0xff000000 inet6 ::1 prefixlen 128 inet6 fe80::1%lo0 prefixlen 64 scopeid 0x2 groups: lo nd6 options=21 ue0: flags=8802 metric 0 mtu 1500 options=8000b ether a0:ce:c8:00:08:13 media: Ethernet autoselect (1000baseT ) status: active nd6 options=29 root@wqtest:~ # ping www.freebsd.org ping: cannot resolve www.freebsd.org: Host name lookup failure root@wqtest:~ # vi /boot/kldstat Id Refs Address Size Name 1 13 0xc2000000 69cff4 kernel 2 1 0xc7397000 b000 fdescfs.ko 3 1 0xc73f3000 c000 if_axge.ko 4 1 0xc744d000 b000 uether.ko root@wqtest:~ # vi /boot/loader.conf [?7h[?1h=#console="comconsole" ~~~~~~~~~~~~~~~~~~~~~/boot/loader.conf: unmodified: line 1if_axge_load="" Copying file for recovery... Y"E"S""  :wq /boot/loader.conf: 3 lines, 42 characters [?1l>D.  [?1l>root@wqtest:~ # ls .cshrc .k5login .login .profile root@wqtest:~ # reboot Jun 20 09:40:03 wqtest reboot: rebooted by root Jun 20 09:40:03 wqtest syslogd: exiting on signal 15 Waiting (max 60 seconds) for system process `vnlru' to stop...done Waiting (max 60 seconds) for system process `bufdaemon' to stop...done Waiting (max 60 seconds) for system process `syncer' to stop... Syncing disks, vnodes remaining...2 1 0 0 0 done All buffers synced. Uptime: 2m2s Rebooting... U-Boot 2014.10 (Jun 20 2015 - 09:33:42) CPU: Freescale i.MX6Q rev1.2 at 792 MHz Reset cause: WDOG Board: Wandboard I2C: ready DRAM: 2 GiB WARNING: Caches not enabled MMC: FSL_SDHC: 0, FSL_SDHC: 1 *** Warning - bad CRC, using default environment No panel detected: default to HDMI Display: HDMI (1024x768) In: serial Out: serial Err: serial Net: FEC [PRIME] Hit any key to stop autoboot: 5  4  3  2  1  0 switch to partitions #0, OK mmc0 is current device reading boot.scr 158 bytes read in 9 ms (16.6 KiB/s) Running bootscript from mmc ... ## Executing script at 12000000 reading ubldr 265350 bytes read in 27 ms (9.4 MiB/s) ## Starting application at 0x11000094 ... Consoles: U-Boot console Compatible U-Boot API signature found @8f5844a8 FreeBSD/armv6 U-Boot loader, Revision 1.2 (root@noname.privat, Sat Jun 20 06:25:53 CEST 2015) DRAM: 2048MB MMC: no card present MMC Device 2 not found MMC Device 3 not found Number of U-Boot devices: 2 U-Boot env: loaderdev not set, will probe all devices. Found U-Boot device: disk Probing all disk devices... Checking unit=0 slice= partition=... good. |/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\/boot/kernel/kernel data=0x5aa31c+0x3dce4 |/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|syms=[0x4+0x5c960/-\+0x4+0x5868c|/-] \|/-\|/-\|/-\|//boot/kernel/if_axge.ko text=0x3370 data=0x2e0+0x4 syms=[0x4+0xc20+0x4+0xb11] loading required module 'uether' -\|/-\|/-\|/-\|/-\|/boot/kernel/uether.ko text=0x20d0 data=0x210+0x4 syms=[0x4+0xac0+0x4+0x81c] Hit [Enter] to boot immediately, or any other key for command prompt. Booting [/boot/kernel/kernel] in 9 seconds... Booting [/boot/kernel/kernel] in 8 seconds... Booting [/boot/kernel/kernel]... /-\|/-\|/-/boot/kernel/wandboard-quad.dtb size=0x22cc Loaded DTB from file 'wandboard-quad.dtb'. \|/-\|Kernel entry at 0x11200100... Kernel args: (null) KDB: debugger backends: ddb KDB: current backend: ddb Copyright (c) 1992-2015 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 11.0-CURRENT #0 r284621M: Sat Jun 20 06:17:16 CEST 2015 root@noname.privat:/usr/home/CROCHET/crochet/work/obj/arm.armv6/usr/SRC/head/sys/IMX6 arm FreeBSD clang version 3.6.1 (tags/RELEASE_361/final 237755) 20150525 CPU: Cortex A9-r2 rev 10 (Cortex-A core) Supported features: ARM_ISA THUMB2 JAZELLE THUMBEE ARMv4 Security_Ext WB disabled EABT branch prediction enabled LoUU:2 LoC:2 LoUIS:2 Cache level 1: 32KB/32B 4-way data cache WB Read-Alloc Write-Alloc 32KB/32B 4-way instruction cache Read-Alloc real memory = 2147483648 (2048 MB) avail memory = 2093940736 (1996 MB) FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs random: entropy device infrastructure driver random: selecting highest priority adaptor random: SOFT: yarrow init() random: selecting highest priority adaptor ofwbus0: simplebus0: on ofwbus0 simplebus1: mem 0x2000000-0x20fffff on simplebus0 imx6_anatop0: mem 0x20c8000-0x20c8fff irq 49 on simplebus1 simplebus2: mem 0x2100000-0x21fffff on simplebus0 ocotp0: mem 0x21bc000-0x21bffff on simplebus2 ccm0: mem 0x20c4000-0x20c7fff irq 119,120 on simplebus1 l2cache0: mem 0xa02000-0xa02fff irq 124 on simplebus0 l2cache0: Part number: 0x3, release: 0x7 l2cache0: L2 Cache enabled: 1024KB/32B 16 ways imx_iomux0: mem 0x20e0000-0x20e3fff irq 32 on simplebus1 gic0: mem 0xa01000-0xa01fff,0xa00100-0xa001ff on simplebus0 gic0: pn 0x390, arch 0x1, rev 0x2, implementer 0x43b irqs 160 imx_gpt0: mem 0x2098000-0x209bfff irq 87 on simplebus1 Event timer "iMXGPT" frequency 66000000 Hz quality 800 Timecounter "iMXGPT" frequency 66000000 Hz quality 1000 mp_tmr0: mem 0xa00200-0xa002ff,0xa00600-0xa006ff irq 27,29 on simplebus0 Event timer "MPCore" frequency 492000000 Hz quality 1000 gpio0: mem 0x209c000-0x209ffff irq 98,99 on simplebus1 gpiobus0: on gpio0 gpioc0: on gpio0 gpio1: mem 0x20a0000-0x20a3fff irq 100,101 on simplebus1 gpiobus1: on gpio1 gpioc1: on gpio1 gpio2: mem 0x20a4000-0x20a7fff irq 102,103 on simplebus1 gpiobus2: on gpio2 gpioc2: on gpio2 gpio3: mem 0x20a8000-0x20abfff irq 104,105 on simplebus1 gpiobus3: on gpio3 gpioc3: on gpio3 gpio4: mem 0x20ac000-0x20affff irq 106,107 on simplebus1 gpiobus4: on gpio4 gpioc4: on gpio4 gpio5: mem 0x20b0000-0x20b3fff irq 108,109 on simplebus1 gpiobus5: on gpio5 gpioc5: on gpio5 gpio6: mem 0x20b4000-0x20b7fff irq 110,111 on simplebus1 gpiobus6: on gpio6 gpioc6: on gpio6 uart0: mem 0x2020000-0x2023fff irq 58 on simplebus1 uart0: console (115200,n,8,1) usbphy0: mem 0x20c9000-0x20c9fff irq 44 on simplebus1 usbphy1: mem 0x20ca000-0x20cafff irq 45 on simplebus1 ffec0: mem 0x2188000-0x218bfff irq 150,151 on simplebus2 miibus0: on ffec0 atphy0: PHY 1 on miibus0 atphy0: none, 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseSX-FDX, 1000baseT-FDX, 1000baseT-FDX-master, auto ffec0: Ethernet address: 00:1f:7b:b4:17:64 ehci0: mem 0x2184000-0x21841ff irq 75 on simplebus2 ehci0: [GIANT-LOCKED] usbus0: EHCI version 1.0 usbus0 on ehci0 ehci1: mem 0x2184200-0x21843ff irq 72 on simplebus2 ehci1: [GIANT-LOCKED] usbus1: EHCI version 1.0 usbus1 on ehci1 sdhci_imx0: mem 0x2190000-0x2193fff irq 54 on simplebus2 mmc0: on sdhci_imx0 sdhci_imx1: mem 0x2198000-0x219bfff irq 56 on simplebus2 mmc1: on sdhci_imx1 Timecounters tick every 2.000 msec usbus0: 480Mbps High Speed USB v2.0 usbus1: 480Mbps High Speed USB v2.0 mmc0: No compatible cards found on bus ugen1.1: at usbus0 uhub0: on usbus0 Freescale> at usbus1 uhub1: on usbus1 mmc1: CMD7 failed, RESULT: 1 sdhci_imx1-slot0: Got data interrupt 0x00000002, but there is no active command. sdhci_imx1-slot0: ============== REGISTER DUMP ============== sdhci_imx1-slot0: Sys addr: 0x00000000 | Version: 0x00000002 sdhci_imx1-slot0: Blk size: 0x00000040 | Blk cnt: 0x00000001 sdhci_imx1-slot0: Argument: 0x00010000 | Trn mode: 0x00000012 sdhci_imx1-slot0: Present: 0x00fd0000 | Host ctl: 0x00000001 sdhci_imx1-slot0: Power: 0x0000000d | Blk gap: 0x00000080 sdhci_imx1-slot0: Wake-up: 0x00000000 | Clock: 0x0000fa07 sdhci_imx1-slot0: Timeout: 0x00000006 | Int stat: 0x00000000 sdhci_imx1-slot0: Int enab: 0x017f00fb | Sig enab: 0x017f00fb sdhci_imx1-slot0: AC12 err: 0x00000000 | Slot int: 0x00000000 sdhci_imx1-slot0: Caps: 0x0377c800 | Max curr: 0x80000012 sdhci_imx1-slot0: =========================================== mmcsd0: 16GB at mmc1 50.0MHz/4bit/65535-block random: unblocking device. Release APs Root mount waiting for: usbus1 usbus0 uhub0: 1 port with 1 removable, self powered uhub1: 1 port with 1 removable, self powered Spurious interrupt detected ugen1.2: at usbus1 uhub2: on usbus1 Root mount waiting for: usbus1 uhub2: 4 ports with 3 removable, self powered Root mount waiting for: usbus1 ugen1.3: at usbus1 axge0: on usbus1 miibus1: on axge0 rgephy0: PHY 3 on miibus1 rgephy0: none, 10baseT, 10baseT-FDX, 10baseT-FDX-flow, 100baseTX, 100baseTX-FDX, 100baseTX-FDX-flow, 1000baseT-FDX, 1000baseT-FDX-master, 1000baseT-FDX-flow, 1000baseT-FDX-flow-master, auto, auto-flow ue0: on axge0 ue0: Ethernet address: a0:ce:c8:00:08:13 ugen1.4: at usbus1 uhub3: on usbus1 Root mount waiting for: usbus1 uhub3: 4 ports with 4 removable, self powered Root mount waiting for: usbus1 ugen1.5: at usbus1 umass0: on usbus1 da0 at umass-sim0 bus 0 scbus0 target 0 lun 0 da0: Fixed Direct Access SCSI device da0: Serial Number 100 da0: 40.000MB/s transfers da0: 57231MB (117210240 512 byte sectors: 255H 63S/T 7296C) da0: quirks=0x2 Root mount waiting for: usbus1 ugen1.6: at usbus1 umass1: on usbus1 Trying to mount root from ufs:/dev/mmcsd0s2a [rw,noatime]... da1 at umass-sim1 bus 1 scbus1 target 0 lun 0 da1: Fixed Direct Access SPC-2 SCSI device da1: Serial Numberw a2rHnBi5n0gS:N 0n o t i m ed-ao1f:- d4a0y. 0c0l0oMcBk/ sr etgriasntsefreerds, sdyas1t:e m1 5t2i6m2e7 MwBi l(l3 1n2o5t8 1b8e0 8s e5t1 2a cbcyutrea tseelcyt o rs: 255H 63S/T 19457C) da1: quirks=0x2 Setting hostuuid: 48a01975-1723-11e5-8c5f-001f7bb41764. Setting hostid: 0xdb3b3790. No suitable dump device was found. Starting file system checks: /dev/mmcsd0s2a: FILE SYSTEM CLEAN; SKIPPING CHECKS /dev/mmcsd0s2a: clean, 3583402 free (178 frags, 447903 blocks, 0.0% fragmentation) Mounting local file systems:Fatal kernel mode data abort: 'Translation Fault (L2)' on read trapframe: 0xfa9367d8 FSR=00000007, FAR=00000000, spsr=60000113 r0 =c73bd570, r1 =c73b5065, r2 =00000000, r3 =00000000 r4 =c73bd3ac, r5 =c73bd3b0, r6 =c73bd3b0, r7 =00000087 r8 =c2596af4, r9 =c25d8918, r10=c73bd340, r11=fa936870 r12=c73c4d60, ssp=fa936868, slr=c73b43d4, pc =00000000 [ thread pid 60 tid 100059 ] Stopped at 0: address 0 is invalid *** error reading from address 0 *** KDB: reentering KDB: stack backtrace: db_trace_self() at db_trace_self pc = 0xc2482298 lr = 0xc2044480 (db_trace_self_wrapper+0x30) sp = 0xfa936370 fp = 0xfa936488 r10 = 0xc24be49c db_trace_self_wrapper() at db_trace_self_wrapper+0x30 pc = 0xc2044480 lr = 0xc21f3b8c (kdb_reenter+0x74) sp = 0xfa936490 fp = 0xfa936498 r4 = 0xc25cda00 r5 = 0xc25cd9e4 r6 = 0xfa9364a0 r7 = 0x00000000 kdb_reenter() at kdb_reenter+0x74 pc = 0xc21f3b8c lr = 0xc2040b7c (db_get_value+0x44) sp = 0xfa9364a0 fp = 0xfa9364b8 r4 = 0x00000004 r5 = 0x00000000 db_get_value() at db_get_value+0x44 pc = 0xc2040b7c lr = 0xc2482824 (disasm+0x20) sp = 0xfa9364c0 fp = 0xfa9365a8 r4 = 0x00000000 r5 = 0x00000000 r6 = 0xc25cda08 r7 = 0xfa9367d8 disasm() at disasm+0x20 pc = 0xc2482824 lr = 0xc20445c0 (db_trap+0xe4) sp = 0xfa9365b0 fp = 0xfa9366c8 r4 = 0x00000000 r5 = 0xc25d6968 r6 = 0xc25cda08 r7 = 0xfa9367d8 r8 = 0xc25cd9e0 r9 = 0xc2579794 r10 = 0xc25cd9e4 db_trap() at db_trap+0xe4 pc = 0xc20445c0 lr = 0xc21f3f90 (kdb_trap+0x184) sp = 0xfa9366d0 fp = 0xfa9366f8 r4 = 0x00000000 r5 = 0x00000007 r6 = 0xc25cda08 r7 = 0xfa9367d8 kdb_trap() at kdb_trap+0x184 pc = 0xc21f3f90 lr = 0xc249ba40 (abort_fatal+0x1d4) sp = 0xfa936700 fp = 0xfa936720 r4 = 0xfa9367d8 r5 = 0x00000013 r6 = 0x00000000 r7 = 0x00000007 r8 = 0x00000007 r9 = 0xc72b7000 r10 = 0x00000013 abort_fatal() at abort_fatal+0x1d4 pc = 0xc249ba40 lr = 0xc249b79c (abort_handler+0x62c) sp = 0xfa936728 fp = 0xfa9367d0 r4 = 0xfa9367d8 r5 = 0x00000001 r6 = 0x00000007 r7 = 0x00000007 r8 = 0x00000000 r10 = 0x00000013 abort_handler() at abort_handler+0x62c pc = 0xc249b79c lr = 0xc2483920 (exception_exit) sp = 0xfa9367d8 fp = 0xfa936870 r4 = 0xc73bd3ac r5 = 0xc73bd3b0 r6 = 0xc73bd3b0 r7 = 0x00000087 r8 = 0xc2596af4 r9 = 0xc25d8918 r10 = 0xc73bd340 exception_exit() at exception_exit pc = 0xc2483920 lr = 0xc73b43d4 (fdesc_init+0x20) sp = 0xfa936868 fp = 0xfa936870 r0 = 0xc73bd570 r1 = 0xc73b5065 r2 = 0x00000000 r3 = 0x00000000 r4 = 0xc73bd3ac r5 = 0xc73bd3b0 r6 = 0xc73bd3b0 r7 = 0x00000087 r8 = 0xc2596af4 r9 = 0xc25d8918 r10 = 0xc73bd340 r12 = 0xc73c4d60 fdesc_init() at fdesc_init+0x20 pc = 0xc73b43d4 lr = 0xc226554c (vfs_modevent+0x618) sp = 0xfa936878 fp = 0xfa9368a8 r4 = 0xc73bd3ac r10 = 0xc73bd340 vfs_modevent() at vfs_modevent+0x618 pc = 0xc226554c lr = 0xc2190328 (module_register_init+0x1fc) sp = 0xfa9368b0 fp = 0xfa9368e0 r4 = 0xc25d7f48 r5 = 0xc73b50e4 r6 = 0xc70ea480 r7 = 0xc73b5008 r8 = 0xc25d7f70 r9 = 0xc25be378 module_register_init() at module_register_init+0x1fc pc = 0xc2190328 lr = 0xc2181e4c (linker_load_module+0xcb8) sp = 0xfa9368e8 fp = 0xfa936b40 r4 = 0xc25d7f70 r5 = 0xc73b50e4 r6 = 0xc25bcec0 r7 = 0xc73b50e4 r8 = 0xc70ea480 r9 = 0xc25bce90 r10 = 0xc711d600 linker_load_module() at linker_load_module+0xcb8 pc = 0xc2181e4c lr = 0xc2183d90 (kern_kldload+0x128) sp = 0xfa936b48 fp = 0xfa936b78 r4 = 0xfa936b84 r5 = 0xc70d47e0 r6 = 0x00000000 r7 = 0x00000001 r8 = 0xc25bce90 r9 = 0xc25bcec0 r10 = 0xc72b7000 kern_kldload() at kern_kldload+0x128 pc = 0xc2183d90 lr = 0xc2264ed8 (vfs_byname_kld+0x34) sp = 0xfa936b80 fp = 0xfa936b98 r4 = 0xfa936be4 r5 = 0xc72b7000 r6 = 0xc70d47e0 r7 = 0x00000000 r8 = 0xc70d4970 r9 = 0x00000000 vfs_byname_kld() at vfs_byname_kld+0x34 pc = 0xc2264ed8 lr = 0xc22681e8 (vfs_donmount+0x990) sp = 0xfa936ba0 fp = 0xfa936db8 r4 = 0x00000000 r5 = 0x000000ff r6 = 0xc2596be0 r7 = 0x00000000 vfs_donmount() at vfs_donmount+0x990 pc = 0xc22681e8 lr = 0xc2267838 (sys_nmount+0x64) sp = 0xfa936dc0 fp = 0xfa936dd8 r4 = 0xc72b7000 r5 = 0x00000000 r6 = 0x00000000 r7 = 0x00000000 r8 = 0xfa936df0 r9 = 0x00000000 r10 = 0xc72a86f0 sys_nmount() at sys_nmount+0x64 pc = 0xc2267838 lr = 0xc249a948 (swi_handler+0x4b8) sp = 0xfa936de0 fp = 0xfa936e50 r4 = 0xc72b7000 r5 = 0xbfbff394 r6 = 0x60000013 r10 = 0xc72a86f0 swi_handler() at swi_handler+0x4b8 pc = 0xc249a948 lr = 0xc24838b0 (swi_exit) sp = 0xfa936e58 fp = 0xbfbff3b8 r4 = 0x2081c198 r5 = 0xbfbff394 r6 = 0xbfbff390 r7 = 0x0000017a r8 = 0x00000000 r9 = 0x00014708 r10 = 0x000155c0 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xfa936e58 fp = 0xbfbff3b8 db> show all pcpu Current CPU: 1 cpuid = 0 dynamic pcpu = 0x15ba80 curthread = 0xc6c5a9f0: pid 11 "swi4: clock (0)" curpcb = 0xe1ac3ea8 fpcurthread = none idlethread = 0xc6c5b9f0: tid 100002 "idle: cpu0" cpuid = 1 dynamic pcpu = 0x1f500a80 curthread = 0xc72b7000: pid 60 "mount" curpcb = 0xfa936ea8 fpcurthread = 0xc72b7000: pid 60 "mount" idlethread = 0xc6c5b6a0: tid 100003 "idle: cpu1" cpuid = 2 dynamic pcpu = 0x1f501a80 curthread = 0xc6c5b350: pid 10 "idle: cpu2" curpcb = 0xe1abdea8 --More-- fpcurthread = none idlethread = 0xc6c5b350: tid 100004 "idle: cpu2" cpuid = 3 dynamic pcpu = 0x1f502a80 curthread = 0xc6c5b000: pid 10 "idle: cpu3" curpcb = 0xe1ac0ea8 fpcurthread = 0xc71e8000: pid 59 "sh" idlethread = 0xc6c5b000: tid 100005 "idle: cpu3" db> where 11 Tracing pid 11 tid 100006 td 0xc6c5a9f0 savectx() at savectx+0x14 pc = 0xc249a18c lr = 0xc2487eec ($a.6+0x1c) sp = 0xe1ac3cf8 fp = 0xe1ac3d20 $a.6() at $a.6+0x1c pc = 0xc2487eec lr = 0xc216ffa0 (intr_event_handle+0x70) sp = 0xe1ac3d28 fp = 0xe1ac3d40 r4 = 0xc6de9700 r5 = 0xe1ac3d60 r6 = 0x00000000 r7 = 0xc6ded4c0 r8 = 0x00000000 r9 = 0xc6c5a9f0 r10 = 0x00000000 intr_event_handle() at intr_event_handle+0x70 pc = 0xc216ffa0 lr = 0xc248595c (arm_irq_handler+0x6c) sp = 0xe1ac3d48 fp = 0xe1ac3d58 r4 = 0xe1ac3d60 r5 = 0x00000004 r6 = 0xc25e1014 r7 = 0xc25d4ed4 r8 = 0xc258ad70 r9 = 0x00000000 arm_irq_handler() at arm_irq_handler+0x6c pc = 0xc248595c lr = 0xc2483920 (exception_exit) sp = 0xe1ac3d60 fp = 0xe1ac3df8 --More-- r4 = 0xc6c5a9f0 r5 = 0xc6b3476c r6 = 0xc6b34700 r7 = 0xc6b34710 exception_exit() at exception_exit pc = 0xc2483920 lr = 0xc24862f8 (spinlock_exit+0x10) sp = 0xe1ac3df0 fp = 0xe1ac3df8 r0 = 0x00000000 r1 = 0x000000c0 r2 = 0x600000d3 r3 = 0x60000013 r4 = 0xc6c5a9f0 r5 = 0xc6b3476c r6 = 0xc6b34700 r7 = 0xc6b34710 r8 = 0xc258ad70 r9 = 0x00000000 r10 = 0x00000000 r12 = 0x00000000 spinlock_exit() at spinlock_exit+0x3c pc = 0xc2486324 lr = 0xc2170874 (ithread_loop+0x1f4) sp = 0xe1ac3e00 fp = 0xe1ac3e30 r4 = 0xc6b14ea0 r10 = 0x00000000 ithread_loop() at ithread_loop+0x1f4 pc = 0xc2170874 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1ac3e38 fp = 0xe1ac3e50 r4 = 0xc6c5a9f0 r5 = 0xc6c576f0 r6 = 0xc2170680 r7 = 0xc6b14ea0 --More-- r8 = 0xe1ac3e58 r9 = 0x00000000 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1ac3e58 fp = 0x00000000 r4 = 0xc2170680 r5 = 0xc6b14ea0 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1ac3e58 fp = 0x00000000 db> where 60 Tracing pid 60 tid 100059 td 0xc72b7000 db_trace_self() at db_trace_self pc = 0xc2482298 lr = 0xc2042320 (db_stack_trace+0x108) sp = 0xfa9364d0 fp = 0xfa9364e8 r10 = 0xc25d6970 db_stack_trace() at db_stack_trace+0x108 pc = 0xc2042320 lr = 0xc2041db8 (db_command+0x388) sp = 0xfa9364f0 fp = 0xfa936590 r4 = 0x00000000 r5 = 0x00000000 r6 = 0x00000072 r10 = 0xc25d6970 db_command() at db_command+0x388 pc = 0xc2041db8 lr = 0xc2041a20 (db_command_loop+0x74) sp = 0xfa936598 fp = 0xfa9365a8 r4 = 0xc24ce3e7 r5 = 0xc24dfb1f r6 = 0xc25d695c r7 = 0xfa9367d8 r8 = 0xc25cd9e0 r9 = 0xc2579794 r10 = 0xc25cd9e4 db_command_loop() at db_command_loop+0x74 pc = 0xc2041a20 lr = 0xc20445e4 (db_trap+0x108) sp = 0xfa9365b0 fp = 0xfa9366c8 --More-- r4 = 0x00000000 r5 = 0xfa9365b4 r6 = 0xc25cda08 r10 = 0xc25cd9e4 db_trap() at db_trap+0x108 pc = 0xc20445e4 lr = 0xc21f3f90 (kdb_trap+0x184) sp = 0xfa9366d0 fp = 0xfa9366f8 r4 = 0x00000000 r5 = 0x00000007 r6 = 0xc25cda08 r7 = 0xfa9367d8 kdb_trap() at kdb_trap+0x184 pc = 0xc21f3f90 lr = 0xc249ba40 (abort_fatal+0x1d4) sp = 0xfa936700 fp = 0xfa936720 r4 = 0xfa9367d8 r5 = 0x00000013 r6 = 0x00000000 r7 = 0x00000007 r8 = 0x00000007 r9 = 0xc72b7000 r10 = 0x00000013 abort_fatal() at abort_fatal+0x1d4 pc = 0xc249ba40 lr = 0xc249b79c (abort_handler+0x62c) sp = 0xfa936728 fp = 0xfa9367d0 r4 = 0xfa9367d8 r5 = 0x00000001 r6 = 0x00000007 r7 = 0x00000007 r8 = 0x00000000 r10 = 0x00000013 --More-- abort_handler() at abort_handler+0x62c pc = 0xc249b79c lr = 0xc2483920 (exception_exit) sp = 0xfa9367d8 fp = 0xfa936870 r4 = 0xc73bd3ac r5 = 0xc73bd3b0 r6 = 0xc73bd3b0 r7 = 0x00000087 r8 = 0xc2596af4 r9 = 0xc25d8918 r10 = 0xc73bd340 exception_exit() at exception_exit pc = 0xc2483920 lr = 0xc73b43d4 (fdesc_init+0x20) sp = 0xfa936868 fp = 0xfa936870 r0 = 0xc73bd570 r1 = 0xc73b5065 r2 = 0x00000000 r3 = 0x00000000 r4 = 0xc73bd3ac r5 = 0xc73bd3b0 r6 = 0xc73bd3b0 r7 = 0x00000087 r8 = 0xc2596af4 r9 = 0xc25d8918 r10 = 0xc73bd340 r12 = 0xc73c4d60 fdesc_init() at fdesc_init+0x20 pc = 0xc73b43d4 lr = 0xc226554c (vfs_modevent+0x618) sp = 0xfa936878 fp = 0xfa9368a8 r4 = 0xc73bd3ac r10 = 0xc73bd340 --More-- vfs_modevent() at vfs_modevent+0x618 pc = 0xc226554c lr = 0xc2190328 (module_register_init+0x1fc) sp = 0xfa9368b0 fp = 0xfa9368e0 r4 = 0xc25d7f48 r5 = 0xc73b50e4 r6 = 0xc70ea480 r7 = 0xc73b5008 r8 = 0xc25d7f70 r9 = 0xc25be378 module_register_init() at module_register_init+0x1fc pc = 0xc2190328 lr = 0xc2181e4c (linker_load_module+0xcb8) sp = 0xfa9368e8 fp = 0xfa936b40 r4 = 0xc25d7f70 r5 = 0xc73b50e4 r6 = 0xc25bcec0 r7 = 0xc73b50e4 r8 = 0xc70ea480 r9 = 0xc25bce90 r10 = 0xc711d600 linker_load_module() at linker_load_module+0xcb8 pc = 0xc2181e4c lr = 0xc2183d90 (kern_kldload+0x128) sp = 0xfa936b48 fp = 0xfa936b78 r4 = 0xfa936b84 r5 = 0xc70d47e0 r6 = 0x00000000 r7 = 0x00000001 r8 = 0xc25bce90 r9 = 0xc25bcec0 r10 = 0xc72b7000 --More-- kern_kldload() at kern_kldload+0x128 pc = 0xc2183d90 lr = 0xc2264ed8 (vfs_byname_kld+0x34) sp = 0xfa936b80 fp = 0xfa936b98 r4 = 0xfa936be4 r5 = 0xc72b7000 r6 = 0xc70d47e0 r7 = 0x00000000 r8 = 0xc70d4970 r9 = 0x00000000 vfs_byname_kld() at vfs_byname_kld+0x34 pc = 0xc2264ed8 lr = 0xc22681e8 (vfs_donmount+0x990) sp = 0xfa936ba0 fp = 0xfa936db8 r4 = 0x00000000 r5 = 0x000000ff r6 = 0xc2596be0 r7 = 0x00000000 vfs_donmount() at vfs_donmount+0x990 pc = 0xc22681e8 lr = 0xc2267838 (sys_nmount+0x64) sp = 0xfa936dc0 fp = 0xfa936dd8 r4 = 0xc72b7000 r5 = 0x00000000 r6 = 0x00000000 r7 = 0x00000000 r8 = 0xfa936df0 r9 = 0x00000000 r10 = 0xc72a86f0 sys_nmount() at sys_nmount+0x64 pc = 0xc2267838 lr = 0xc249a948 (swi_handler+0x4b8) --More-- sp = 0xfa936de0 fp = 0xfa936e50 r4 = 0xc72b7000 r5 = 0xbfbff394 r6 = 0x60000013 r10 = 0xc72a86f0 swi_handler() at swi_handler+0x4b8 pc = 0xc249a948 lr = 0xc24838b0 (swi_exit) sp = 0xfa936e58 fp = 0xbfbff3b8 r4 = 0x2081c198 r5 = 0xbfbff394 r6 = 0xbfbff390 r7 = 0x0000017a r8 = 0x00000000 r9 = 0x00014708 r10 = 0x000155c0 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xfa936e58 fp = 0xbfbff3b8 db> where 59 Tracing pid 59 tid 100050 td 0xc71e8000 cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xfa8d0ae8 fp = 0xfa8d0b20 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xfa8d0b28 fp = 0xfa8d0b40 r4 = 0x00000000 r5 = 0x000aecff r6 = 0xc71e8000 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0x00000000 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204d24 (sleepq_catch_signals+0xb4) sp = 0xfa8d0b48 fp = 0xfa8d0b90 r4 = 0xc71e8000 r5 = 0xc71db378 r6 = 0x0000006c r7 = 0x00000000 r8 = 0x000000cb r9 = 0xc71db378 sleepq_catch_signals() at sleepq_catch_signals+0xb4 pc = 0xc2204d24 lr = 0xc2204bf8 (sleepq_wait_sig+0xc) sp = 0xfa8d0b98 fp = 0xfa8d0ba0 --More-- r4 = 0xc71e8000 r5 = 0xc71db378 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x0000006c r10 = 0xc71db424 sleepq_wait_sig() at sleepq_wait_sig+0xc pc = 0xc2204bf8 lr = 0xc21b6da8 (_sleep+0x464) sp = 0xfa8d0ba8 fp = 0xfa8d0c08 r4 = 0xc71e8000 r10 = 0xc71db424 _sleep() at _sleep+0x464 pc = 0xc21b6da8 lr = 0xc2167520 (kern_wait6+0x7dc) sp = 0xfa8d0c10 fp = 0xfa8d0c98 r4 = 0x00000000 r5 = 0x00000007 r6 = 0x00000000 r7 = 0x00000000 r8 = 0xc71e8000 r9 = 0xc71db434 r10 = 0x00000000 kern_wait6() at kern_wait6+0x7dc pc = 0xc2167520 lr = 0xc2166bfc (sys_wait4+0x84) sp = 0xfa8d0ca0 fp = 0xfa8d0dd8 r4 = 0x00000030 r5 = 0x00000000 r6 = 0x00000000 r7 = 0xfa8d0cb4 --More-- r8 = 0xfa8d0df8 r9 = 0x00000000 r10 = 0xc71db378 sys_wait4() at sys_wait4+0x84 pc = 0xc2166bfc lr = 0xc249a948 (swi_handler+0x4b8) sp = 0xfa8d0de0 fp = 0xfa8d0e50 r4 = 0xc71e8000 r5 = 0x00000000 r6 = 0x60000013 r7 = 0x00000000 r8 = 0xfa8d0df0 r10 = 0xc71db378 swi_handler() at swi_handler+0x4b8 pc = 0xc249a948 lr = 0xc24838b0 (swi_exit) sp = 0xfa8d0e58 fp = 0xbfbfe8e8 r4 = 0x00000001 r5 = 0x00000000 r6 = 0xbfbfe878 r7 = 0x00000007 r8 = 0x00031dd0 r9 = 0x00000001 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xfa8d0e58 fp = 0xbfbfe8e8 db> ps pid ppid pgrp uid state wmesg wchan cmd 60 59 16 0 R+ CPU 1 mount 59 16 16 0 S+ wait 0xc71db378 sh 16 1 16 0 Ss+ wait 0xc71db6f0 sh 15 0 0 0 DL vlruwt 0xc7042000 [vnlru] 9 0 0 0 DL syncer 0xc25d18b0 [syncer] 8 0 0 0 DL (threaded) [bufdaemon] 100044 D psleep 0xc25d1650 [bufdaemon] 100056 D sdflush 0xc70bc684 [/ worker] 7 0 0 0 DL pgzero 0xc25d4b84 [pagezero] 6 0 0 0 DL psleep 0xc25d4a80 [vmdaemon] 5 0 0 0 DL (threaded) [pagedaemon] 100041 D psleep 0xc25dbc04 [pagedaemon] 100047 D umarcl 0xc25d4994 [uma] 4 0 0 0 DL jobqueue 0xc6cf9c00 [mmcsd0: mmc/sd card] 3 0 0 0 DL waiting_ 0xc25d8f44 [sctp_iterator] 14 0 0 0 DL (threaded) [usb] 100026 D - 0xc6d2cca4 [usbus0] 100027 D - 0xc6d2ccd4 [usbus0] 100028 D - 0xc6d2cd04 [usbus0] --More-- 100029 D - 0xc6d2cd34 [usbus0] 100031 D - 0xc6e0bca4 [usbus1] 100032 D - 0xc6e0bcd4 [usbus1] 100033 D - 0xc6e0bd04 [usbus1] 100034 D - 0xc6e0bd34 [usbus1] 100048 D - 0xc7073028 [axge0] 2 0 0 0 DL (threaded) [cam] 100017 D - 0xc25ae0c0 [doneq0] 100039 D - 0xc25ae2ac [scanner] 13 0 0 0 DL - 0xc25bb0f0 [rand_harvestq] 12 0 0 0 DL (threaded) [geom] 100012 D - 0xc25d7588 [g_event] 100013 D - 0xc25d758c [g_up] 100014 D - 0xc25d7590 [g_down] 11 0 0 0 RL (threaded) [intr] 100006 Run CPU 0 [swi4: clock (0)] 100007 I [swi4: clock (1)] 100008 I [swi4: clock (2)] 100009 I [swi4: clock (3)] 100010 I [swi1: netisr 0] --More-- 100011 I [swi3: vm] 100016 I [swi5: fast taskq] 100019 I [swi6: task queue] 100021 I [swi6: Giant taskq] 100023 I [swi0: uart] 100024 I [intr150: ffec0] 100025 I [intr75: ehci0] 100030 I [intr72: ehci1] 100035 I [intr54: sdhci_imx0] 100036 I [intr56: sdhci_imx1] 10 0 0 0 RL (threaded) [idle] 100002 CanRun [idle: cpu0] 100003 CanRun [idle: cpu1] 100004 Run CPU 2 [idle: cpu2] 100005 Run CPU 3 [idle: cpu3] 1 0 1 0 SLs wait 0xc6c58000 [init] 0 0 0 0 DLs (threaded) [kernel] 100000 D swapin 0xc25d75a8 [swapper] 100018 D - 0xc6cf9200 [kqueue taskq] 100020 D - 0xc6cf9100 [ffs_trim taskq] --More-- 100022 D - 0xc6cf9000 [thread taskq] 100038 D - 0xc6cf9480 [CAM taskq] db> show threads 100059 (0xc72b7000) (stack 0xfa935000) db_trace_self() at db_trace_self pc = 0xc2482298 lr = 0xc20478b4 (db_show_threads+0x80) sp = 0xfa9363c8 fp = 0xfa9364e8 r10 = 0xc25d6970 db_show_threads() at db_show_threads+0x80 pc = 0xc20478b4 lr = 0xc2041db8 (db_command+0x388) sp = 0xfa9364f0 fp = 0xfa936590 r4 = 0x00000000 r5 = 0x00000000 r6 = 0x00000065 r7 = 0xc2047834 r8 = 0x00000001 r9 = 0xc2579278 db_command() at db_command+0x388 pc = 0xc2041db8 lr = 0xc2041a20 (db_command_loop+0x74) sp = 0xfa936598 fp = 0xfa9365a8 r4 = 0xc24ce3e7 r5 = 0xc24dfb1f r6 = 0xc25d695c r7 = 0xfa9367d8 r8 = 0xc25cd9e0 r9 = 0xc2579794 r10 = 0xc25cd9e4 db_command_loop() at db_command_loop+0x74 pc = 0xc2041a20 lr = 0xc20445e4 (db_trap+0x108) sp = 0xfa9365b0 fp = 0xfa9366c8 --More-- r4 = 0x00000000 r5 = 0xfa9365b4 r6 = 0xc25cda08 r10 = 0xc25cd9e4 db_trap() at db_trap+0x108 pc = 0xc20445e4 lr = 0xc21f3f90 (kdb_trap+0x184) sp = 0xfa9366d0 fp = 0xfa9366f8 r4 = 0x00000000 r5 = 0x00000007 r6 = 0xc25cda08 r7 = 0xfa9367d8 kdb_trap() at kdb_trap+0x184 pc = 0xc21f3f90 lr = 0xc249ba40 (abort_fatal+0x1d4) sp = 0xfa936700 fp = 0xfa936720 r4 = 0xfa9367d8 r5 = 0x00000013 r6 = 0x00000000 r7 = 0x00000007 r8 = 0x00000007 r9 = 0xc72b7000 r10 = 0x00000013 abort_fatal() at abort_fatal+0x1d4 pc = 0xc249ba40 lr = 0xc249b79c (abort_handler+0x62c) sp = 0xfa936728 fp = 0xfa9367d0 r4 = 0xfa9367d8 r5 = 0x00000001 r6 = 0x00000007 r7 = 0x00000007 r8 = 0x00000000 r10 = 0x00000013 --More-- abort_handler() at abort_handler+0x62c pc = 0xc249b79c lr = 0xc2483920 (exception_exit) sp = 0xfa9367d8 fp = 0xfa936870 r4 = 0xc73bd3ac r5 = 0xc73bd3b0 r6 = 0xc73bd3b0 r7 = 0x00000087 r8 = 0xc2596af4 r9 = 0xc25d8918 r10 = 0xc73bd340 exception_exit() at exception_exit pc = 0xc2483920 lr = 0xc73b43d4 (fdesc_init+0x20) sp = 0xfa936868 fp = 0xfa936870 r0 = 0xc73bd570 r1 = 0xc73b5065 r2 = 0x00000000 r3 = 0x00000000 r4 = 0xc73bd3ac r5 = 0xc73bd3b0 r6 = 0xc73bd3b0 r7 = 0x00000087 r8 = 0xc2596af4 r9 = 0xc25d8918 r10 = 0xc73bd340 r12 = 0xc73c4d60 fdesc_init() at fdesc_init+0x20 pc = 0xc73b43d4 lr = 0xc226554c (vfs_modevent+0x618) sp = 0xfa936878 fp = 0xfa9368a8 r4 = 0xc73bd3ac r10 = 0xc73bd340 --More-- vfs_modevent() at vfs_modevent+0x618 pc = 0xc226554c lr = 0xc2190328 (module_register_init+0x1fc) sp = 0xfa9368b0 fp = 0xfa9368e0 r4 = 0xc25d7f48 r5 = 0xc73b50e4 r6 = 0xc70ea480 r7 = 0xc73b5008 r8 = 0xc25d7f70 r9 = 0xc25be378 module_register_init() at module_register_init+0x1fc pc = 0xc2190328 lr = 0xc2181e4c (linker_load_module+0xcb8) sp = 0xfa9368e8 fp = 0xfa936b40 r4 = 0xc25d7f70 r5 = 0xc73b50e4 r6 = 0xc25bcec0 r7 = 0xc73b50e4 r8 = 0xc70ea480 r9 = 0xc25bce90 r10 = 0xc711d600 linker_load_module() at linker_load_module+0xcb8 pc = 0xc2181e4c lr = 0xc2183d90 (kern_kldload+0x128) sp = 0xfa936b48 fp = 0xfa936b78 r4 = 0xfa936b84 r5 = 0xc70d47e0 r6 = 0x00000000 r7 = 0x00000001 r8 = 0xc25bce90 r9 = 0xc25bcec0 r10 = 0xc72b7000 --More-- kern_kldload() at kern_kldload+0x128 pc = 0xc2183d90 lr = 0xc2264ed8 (vfs_byname_kld+0x34) sp = 0xfa936b80 fp = 0xfa936b98 r4 = 0xfa936be4 r5 = 0xc72b7000 r6 = 0xc70d47e0 r7 = 0x00000000 r8 = 0xc70d4970 r9 = 0x00000000 vfs_byname_kld() at vfs_byname_kld+0x34 pc = 0xc2264ed8 lr = 0xc22681e8 (vfs_donmount+0x990) sp = 0xfa936ba0 fp = 0xfa936db8 r4 = 0x00000000 r5 = 0x000000ff r6 = 0xc2596be0 r7 = 0x00000000 vfs_donmount() at vfs_donmount+0x990 pc = 0xc22681e8 lr = 0xc2267838 (sys_nmount+0x64) sp = 0xfa936dc0 fp = 0xfa936dd8 r4 = 0xc72b7000 r5 = 0x00000000 r6 = 0x00000000 r7 = 0x00000000 r8 = 0xfa936df0 r9 = 0x00000000 r10 = 0xc72a86f0 sys_nmount() at sys_nmount+0x64 pc = 0xc2267838 lr = 0xc249a948 (swi_handler+0x4b8) --More-- sp = 0xfa936de0 fp = 0xfa936e50 r4 = 0xc72b7000 r5 = 0xbfbff394 r6 = 0x60000013 r10 = 0xc72a86f0 swi_handler() at swi_handler+0x4b8 pc = 0xc249a948 lr = 0xc24838b0 (swi_exit) sp = 0xfa936e58 fp = 0xbfbff3b8 r4 = 0x2081c198 r5 = 0xbfbff394 r6 = 0xbfbff390 r7 = 0x0000017a r8 = 0x00000000 r9 = 0x00014708 r10 = 0x000155c0 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xfa936e58 fp = 0xbfbff3b8 100050 (0xc71e8000) (stack 0xfa8cf000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xfa8d0ae8 fp = 0xfa8d0b20 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xfa8d0b28 fp = 0xfa8d0b40 r4 = 0x00000000 r5 = 0x000aecff --More-- r6 = 0xc71e8000 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0x00000000 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204d24 (sleepq_catch_signals+0xb4) sp = 0xfa8d0b48 fp = 0xfa8d0b90 r4 = 0xc71e8000 r5 = 0xc71db378 r6 = 0x0000006c r7 = 0x00000000 r8 = 0x000000cb r9 = 0xc71db378 sleepq_catch_signals() at sleepq_catch_signals+0xb4 pc = 0xc2204d24 lr = 0xc2204bf8 (sleepq_wait_sig+0xc) sp = 0xfa8d0b98 fp = 0xfa8d0ba0 r4 = 0xc71e8000 r5 = 0xc71db378 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x0000006c r10 = 0xc71db424 sleepq_wait_sig() at sleepq_wait_sig+0xc pc = 0xc2204bf8 lr = 0xc21b6da8 (_sleep+0x464) sp = 0xfa8d0ba8 fp = 0xfa8d0c08 r4 = 0xc71e8000 r10 = 0xc71db424 --More-- _sleep() at _sleep+0x464 pc = 0xc21b6da8 lr = 0xc2167520 (kern_wait6+0x7dc) sp = 0xfa8d0c10 fp = 0xfa8d0c98 r4 = 0x00000000 r5 = 0x00000007 r6 = 0x00000000 r7 = 0x00000000 r8 = 0xc71e8000 r9 = 0xc71db434 r10 = 0x00000000 kern_wait6() at kern_wait6+0x7dc pc = 0xc2167520 lr = 0xc2166bfc (sys_wait4+0x84) sp = 0xfa8d0ca0 fp = 0xfa8d0dd8 r4 = 0x00000030 r5 = 0x00000000 r6 = 0x00000000 r7 = 0xfa8d0cb4 r8 = 0xfa8d0df8 r9 = 0x00000000 r10 = 0xc71db378 sys_wait4() at sys_wait4+0x84 pc = 0xc2166bfc lr = 0xc249a948 (swi_handler+0x4b8) sp = 0xfa8d0de0 fp = 0xfa8d0e50 r4 = 0xc71e8000 r5 = 0x00000000 r6 = 0x60000013 r7 = 0x00000000 r8 = 0xfa8d0df0 r10 = 0xc71db378 --More-- swi_handler() at swi_handler+0x4b8 pc = 0xc249a948 lr = 0xc24838b0 (swi_exit) sp = 0xfa8d0e58 fp = 0xbfbfe8e8 r4 = 0x00000001 r5 = 0x00000000 r6 = 0xbfbfe878 r7 = 0x00000007 r8 = 0x00031dd0 r9 = 0x00000001 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xfa8d0e58 fp = 0xbfbfe8e8 100049 (0xc71e8350) (stack 0xfa8c7000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xfa8c8ae8 fp = 0xfa8c8b20 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xfa8c8b28 fp = 0xfa8c8b40 r4 = 0x00000000 r5 = 0x0021396f r6 = 0xc71e8350 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0x00000000 --More-- mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204d24 (sleepq_catch_signals+0xb4) sp = 0xfa8c8b48 fp = 0xfa8c8b90 r4 = 0xc71e8350 r5 = 0xc71db6f0 r6 = 0x0000006c r7 = 0x00000000 r8 = 0x00000046 r9 = 0xc71db6f0 sleepq_catch_signals() at sleepq_catch_signals+0xb4 pc = 0xc2204d24 lr = 0xc2204bf8 (sleepq_wait_sig+0xc) sp = 0xfa8c8b98 fp = 0xfa8c8ba0 r4 = 0xc71e8350 r5 = 0xc71db6f0 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x0000006c r10 = 0xc71db79c sleepq_wait_sig() at sleepq_wait_sig+0xc pc = 0xc2204bf8 lr = 0xc21b6da8 (_sleep+0x464) sp = 0xfa8c8ba8 fp = 0xfa8c8c08 r4 = 0xc71e8350 r10 = 0xc71db79c _sleep() at _sleep+0x464 pc = 0xc21b6da8 lr = 0xc2167520 (kern_wait6+0x7dc) sp = 0xfa8c8c10 fp = 0xfa8c8c98 --More-- r4 = 0x00000000 r5 = 0x00000007 r6 = 0x00000000 r7 = 0x00000000 r8 = 0xc71e8350 r9 = 0xc71db7ac r10 = 0x00000000 kern_wait6() at kern_wait6+0x7dc pc = 0xc2167520 lr = 0xc2166bfc (sys_wait4+0x84) sp = 0xfa8c8ca0 fp = 0xfa8c8dd8 r4 = 0x00000030 r5 = 0x00000000 r6 = 0x00000000 r7 = 0xfa8c8cb4 r8 = 0xfa8c8df8 r9 = 0x00000000 r10 = 0xc71db6f0 sys_wait4() at sys_wait4+0x84 pc = 0xc2166bfc lr = 0xc249a948 (swi_handler+0x4b8) sp = 0xfa8c8de0 fp = 0xfa8c8e50 r4 = 0xc71e8350 r5 = 0x00000000 r6 = 0x60000013 r7 = 0x00000000 r8 = 0xfa8c8df0 r10 = 0xc71db6f0 swi_handler() at swi_handler+0x4b8 pc = 0xc249a948 lr = 0xc24838b0 (swi_exit) sp = 0xfa8c8e58 fp = 0xbfbffa30 --More-- r4 = 0x00000001 r5 = 0x00000000 r6 = 0xbfbff9c0 r7 = 0x00000007 r8 = 0x00031dd0 r9 = 0x00000001 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xfa8c8e58 fp = 0xbfbffa30 100046 (0xc7034350) (stack 0xe1df6000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1df7ce8 fp = 0xe1df7d20 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1df7d28 fp = 0xe1df7d40 r4 = 0x00000000 r5 = 0x0000d30d r6 = 0xc7034350 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc25d18d4 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc22052ac (sleepq_timedwait+0x38) sp = 0xe1df7d48 fp = 0xe1df7d58 --More-- r4 = 0xc7034350 r5 = 0x00000060 r6 = 0xc7042000 r7 = 0xfffffed8 r8 = 0x00000000 r9 = 0x00000060 sleepq_timedwait() at sleepq_timedwait+0x38 pc = 0xc22052ac lr = 0xc21b6d88 (_sleep+0x444) sp = 0xe1df7d60 fp = 0xe1df7dc0 r4 = 0xc258e590 r5 = 0xc7042000 r6 = 0x00000100 r10 = 0xc25d18d4 _sleep() at _sleep+0x444 pc = 0xc21b6d88 lr = 0xc227bd2c (vnlru_proc+0xc4) sp = 0xe1df7dc8 fp = 0xe1df7e30 r4 = 0x00000004 r5 = 0x00000000 r6 = 0xc25d18a0 r7 = 0xfffffed8 r8 = 0xe1df7e58 r9 = 0xc7042000 r10 = 0xc25d1840 vnlru_proc() at vnlru_proc+0xc4 pc = 0xc227bd2c lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1df7e38 fp = 0xe1df7e50 r4 = 0xc7034350 r5 = 0xc7042000 r6 = 0xc227bc68 r7 = 0x00000000 --More-- r8 = 0xe1df7e58 r9 = 0xc25d7930 r10 = 0xc25d86dc fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1df7e58 fp = 0x00000000 r4 = 0xc227bc68 r5 = 0x00000000 r6 = 0xc6c5b9f0 r7 = 0x7ffb6c69 r8 = 0xc25cd790 r10 = 0xc25d86dc swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1df7e58 fp = 0x00000000 100045 (0xc70346a0) (stack 0xe1df3000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1df4d00 fp = 0xe1df4d38 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1df4d40 fp = 0xe1df4d58 r4 = 0x00000000 r5 = 0x00001601 r6 = 0xc70346a0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 --More-- r10 = 0x00000000 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc22052ac (sleepq_timedwait+0x38) sp = 0xe1df4d60 fp = 0xe1df4d70 r4 = 0xc70346a0 r5 = 0x00000000 r6 = 0xc25d18b0 r7 = 0x00000000 r8 = 0xc25d7f60 r9 = 0x00000000 sleepq_timedwait() at sleepq_timedwait+0x38 pc = 0xc22052ac lr = 0xc2144d8c (_cv_timedwait_sbt+0x228) sp = 0xe1df4d78 fp = 0xe1df4dc0 r4 = 0xc25d18e8 r5 = 0xc25d18b0 r6 = 0xc258e590 r10 = 0x00000000 _cv_timedwait_sbt() at _cv_timedwait_sbt+0x228 pc = 0xc2144d8c lr = 0xc227bb08 (sched_sync+0xb3c) sp = 0xe1df4dc8 fp = 0xe1df4e30 r4 = 0xc70346a0 r5 = 0x00000004 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x00000000 r10 = 0xc25d1840 sched_sync() at sched_sync+0xb3c --More-- pc = 0xc227bb08 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1df4e38 fp = 0xe1df4e50 r4 = 0xc70346a0 r5 = 0xc7042378 r6 = 0xc227afcc r7 = 0x00000000 r8 = 0xe1df4e58 r9 = 0xc25d7930 r10 = 0xc25d86dc fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1df4e58 fp = 0x00000000 r4 = 0xc227afcc r5 = 0x00000000 r6 = 0xc6c5b9f0 r7 = 0x7ffb6c69 r8 = 0xc25cd790 r10 = 0xc25d86dc swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1df4e58 fp = 0x00000000 100044 (0xc70349f0) (stack 0xe1df0000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1df1d10 fp = 0xe1df1d48 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) --More-- sp = 0xe1df1d50 fp = 0xe1df1d68 r4 = 0x00000000 r5 = 0x00013d53 r6 = 0xc70349f0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc25d1500 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc22052ac (sleepq_timedwait+0x38) sp = 0xe1df1d70 fp = 0xe1df1d80 r4 = 0xc70349f0 r5 = 0x00000054 r6 = 0xc25d1650 r7 = 0xfffffed8 r8 = 0x00000000 r9 = 0x00000054 sleepq_timedwait() at sleepq_timedwait+0x38 pc = 0xc22052ac lr = 0xc21b6d88 (_sleep+0x444) sp = 0xe1df1d88 fp = 0xe1df1de8 r4 = 0xc258e590 r5 = 0xc25d1650 r6 = 0x00000100 r10 = 0xc25d1500 _sleep() at _sleep+0x444 pc = 0xc21b6d88 lr = 0xc225b610 (buf_daemon+0x328) sp = 0xe1df1df0 fp = 0xe1df1e30 r4 = 0x0000038d r5 = 0xc25d1510 --More-- r6 = 0x00000000 r7 = 0x00000000 r8 = 0xc25d1500 r9 = 0xc25d1640 r10 = 0x00000004 buf_daemon() at buf_daemon+0x328 pc = 0xc225b610 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1df1e38 fp = 0xe1df1e50 r4 = 0xc70349f0 r5 = 0xc6c55000 r6 = 0xc225b2e8 r7 = 0x00000000 r8 = 0xe1df1e58 r9 = 0xc25d7930 r10 = 0xc25d86dc fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1df1e58 fp = 0x00000000 r4 = 0xc225b2e8 r5 = 0x00000000 r6 = 0xc6c5b9f0 r7 = 0x7ffb6c69 r8 = 0xc25cd790 r10 = 0xc25d86dc swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1df1e58 fp = 0x00000000 100056 (0xc71e79f0) (stack 0xfa92c000) cpu_switch() at cpu_switch+0x10 --More-- pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xfa92dd08 fp = 0xfa92dd40 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xfa92dd48 fp = 0xfa92dd60 r4 = 0x00000000 r5 = 0x00000000 r6 = 0xc71e79f0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc70bc600 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc22052ac (sleepq_timedwait+0x38) sp = 0xfa92dd68 fp = 0xfa92dd78 r4 = 0xc71e79f0 r5 = 0x00000054 r6 = 0xc70bc684 r7 = 0x7fffff6c r8 = 0x00000000 r9 = 0x00000054 sleepq_timedwait() at sleepq_timedwait+0x38 pc = 0xc22052ac lr = 0xc21b6d88 (_sleep+0x444) sp = 0xfa92dd80 fp = 0xfa92dde0 r4 = 0xc258f360 r5 = 0xc70bc684 r6 = 0x00000100 r10 = 0xc70bc600 --More-- _sleep() at _sleep+0x444 pc = 0xc21b6d88 lr = 0xc23fec88 (softdep_flush+0x2e8) sp = 0xfa92dde8 fp = 0xfa92de30 r4 = 0xc719b2b0 r5 = 0x000000fa r6 = 0x00000000 r7 = 0x7fffff6c r8 = 0x00000001 r9 = 0xc71bc600 r10 = 0xc719b308 softdep_flush() at softdep_flush+0x2e8 pc = 0xc23fec88 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xfa92de38 fp = 0xfa92de50 r4 = 0xc71e79f0 r5 = 0xc6c55000 r6 = 0xc23fe9a0 r7 = 0xc719b2b0 r8 = 0xfa92de58 r9 = 0xc70349f0 r10 = 0xc25d86dc fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xfa92de58 fp = 0x00000000 r4 = 0xc23fe9a0 r5 = 0xc719b2b0 r6 = 0xc6c5b350 r7 = 0x7ffb7cc0 r8 = 0xc7034d18 r10 = 0xc25d86dc --More-- swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xfa92de58 fp = 0x00000000 100043 (0xc7035000) (stack 0xe1ded000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1deed10 fp = 0xe1deed48 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1deed50 fp = 0xe1deed68 r4 = 0x00000000 r5 = 0x00000000 r6 = 0xc7035000 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc25dbbc0 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc22052ac (sleepq_timedwait+0x38) sp = 0xe1deed70 fp = 0xe1deed80 r4 = 0xc7035000 r5 = 0x00000000 r6 = 0xc25d4b84 r7 = 0xfffea52b r8 = 0x00000000 r9 = 0x00000000 sleepq_timedwait() at sleepq_timedwait+0x38 --More-- pc = 0xc22052ac lr = 0xc21b6d88 (_sleep+0x444) sp = 0xe1deed88 fp = 0xe1deede8 r4 = 0xc258e590 r5 = 0xc25d4b84 r6 = 0x00000100 r10 = 0xc25dbbc0 _sleep() at _sleep+0x444 pc = 0xc21b6d88 lr = 0xc24763bc (vm_pagezero+0x108) sp = 0xe1deedf0 fp = 0xe1deee30 r4 = 0x0000012b r5 = 0xfffea520 r6 = 0x00000000 r7 = 0x00000100 r8 = 0xc25d4b80 r9 = 0xc25d7930 r10 = 0xc25d86dc vm_pagezero() at vm_pagezero+0x108 pc = 0xc24763bc lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1deee38 fp = 0xe1deee50 r4 = 0xc7035000 r5 = 0xc6c55378 r6 = 0xc24762b4 r7 = 0x00000000 r8 = 0xe1deee58 r10 = 0xc25d86dc fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1deee58 fp = 0x00000000 --More-- r4 = 0xc24762b4 r5 = 0x00000000 r6 = 0xc6c5b9f0 r7 = 0x7ffb6c69 r8 = 0xc25cd790 r10 = 0xc25d86dc swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1deee58 fp = 0x00000000 100042 (0xc7035350) (stack 0xe1dea000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1debce8 fp = 0xe1debd20 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1debd28 fp = 0xe1debd40 r4 = 0x00000000 r5 = 0x00000000 r6 = 0xc7035350 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc25d4a98 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1debd48 fp = 0xe1debd58 r4 = 0x00000074 r5 = 0xc25d4a80 --More-- r6 = 0xc7035350 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x00000074 sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21b6db4 (_sleep+0x470) sp = 0xe1debd60 fp = 0xe1debdc0 r4 = 0xc7035350 r5 = 0xc25d4a80 r6 = 0x00000000 r10 = 0xc25d4a98 _sleep() at _sleep+0x470 pc = 0xc21b6db4 lr = 0xc246ccbc (vm_daemon+0x100) sp = 0xe1debdc8 fp = 0xe1debe30 r4 = 0xc25d4aa8 r5 = 0xc25d4a60 r6 = 0x00000004 r7 = 0xc25d4aa8 r8 = 0xc25d8144 r9 = 0x00000000 r10 = 0xc25d86dc vm_daemon() at vm_daemon+0x100 pc = 0xc246ccbc lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1debe38 fp = 0xe1debe50 r4 = 0xc7035350 r5 = 0xc6c556f0 r6 = 0xc246cbbc r7 = 0x00000000 r8 = 0xe1debe58 r9 = 0xc25d7930 --More-- r10 = 0xc25d86dc fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1debe58 fp = 0x00000000 r4 = 0xc246cbbc r5 = 0x00000000 r6 = 0xc6c5b9f0 r7 = 0x7ffb6c69 r8 = 0xc25cd790 r10 = 0xc25d86dc swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1debe58 fp = 0x00000000 100041 (0xc70356a0) (stack 0xe1de7000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1de8cc8 fp = 0xe1de8d00 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1de8d08 fp = 0xe1de8d20 r4 = 0x00000000 r5 = 0x00026e8b r6 = 0xc70356a0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc25dbbc0 --More-- mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc22052ac (sleepq_timedwait+0x38) sp = 0xe1de8d28 fp = 0xe1de8d38 r4 = 0xc70356a0 r5 = 0x00000054 r6 = 0xc25dbc04 r7 = 0xfffffed8 r8 = 0x00000000 r9 = 0x00000054 sleepq_timedwait() at sleepq_timedwait+0x38 pc = 0xc22052ac lr = 0xc21b6d88 (_sleep+0x444) sp = 0xe1de8d40 fp = 0xe1de8da0 r4 = 0xc258e590 r5 = 0xc25dbc04 r6 = 0x00000100 r10 = 0xc25dbbc0 _sleep() at _sleep+0x444 pc = 0xc21b6d88 lr = 0xc246d988 (vm_pageout+0x240) sp = 0xe1de8da8 fp = 0xe1de8e30 r4 = 0xc25dbbd0 r5 = 0xc25dbc04 r6 = 0x00000000 r7 = 0x00000000 r8 = 0xc25dba80 r9 = 0x00000004 r10 = 0x00000000 vm_pageout() at vm_pageout+0x240 pc = 0xc246d988 lr = 0xc216c968 (fork_exit+0xa4) --More-- sp = 0xe1de8e38 fp = 0xe1de8e50 r4 = 0xc70356a0 r5 = 0xc6c55a68 r6 = 0xc246d748 r7 = 0x00000000 r8 = 0xe1de8e58 r9 = 0xc25d7930 r10 = 0xc25d86dc fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1de8e58 fp = 0x00000000 r4 = 0xc246d748 r5 = 0x00000000 r6 = 0xc6c5b9f0 r7 = 0x7ffb6c69 r8 = 0xc25cd790 r10 = 0xc25d86dc swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1de8e58 fp = 0x00000000 100047 (0xc70a8000) (stack 0xe1df9000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1dfad20 fp = 0xe1dfad58 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1dfad60 fp = 0xe1dfad78 --More-- r4 = 0x00000000 r5 = 0x00000000 r6 = 0xc70a8000 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc25d49a0 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1dfad80 fp = 0xe1dfad90 r4 = 0x00000054 r5 = 0xc25d4994 r6 = 0xc70a8000 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x00000054 sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21b6db4 (_sleep+0x470) sp = 0xe1dfad98 fp = 0xe1dfadf8 r4 = 0xc70a8000 r5 = 0xc25d4994 r6 = 0x00000000 r10 = 0xc25d49a0 _sleep() at _sleep+0x470 pc = 0xc21b6db4 lr = 0xc2448d64 (uma_reclaim_worker+0xd0) sp = 0xe1dfae00 fp = 0xe1dfae30 r4 = 0xc25d4980 r5 = 0x00000000 r6 = 0xc2448c94 r7 = 0x00000000 --More-- r8 = 0xe1dfae58 r9 = 0xc25d7930 r10 = 0xc25d86dc uma_reclaim_worker() at uma_reclaim_worker+0xd0 pc = 0xc2448d64 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1dfae38 fp = 0xe1dfae50 r4 = 0xc70a8000 r5 = 0xc6c55a68 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1dfae58 fp = 0x00000000 r4 = 0xc2448c94 r5 = 0x00000000 r6 = 0xc6c5b9f0 r7 = 0x7ffb6c69 r8 = 0xc25cd790 r10 = 0xc25d86dc swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1dfae58 fp = 0x00000000 100040 (0xc70359f0) (stack 0xe1de4000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1de5c78 fp = 0xe1de5cb0 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) --More-- sp = 0xe1de5cb8 fp = 0xe1de5cd0 r4 = 0x00000000 r5 = 0x000bd79b r6 = 0xc70359f0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc6cf9c04 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1de5cd8 fp = 0xe1de5ce8 r4 = 0x0000005c r5 = 0xc6cf9c00 r6 = 0xc70359f0 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x0000005c sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21b6db4 (_sleep+0x470) sp = 0xe1de5cf0 fp = 0xe1de5d50 r4 = 0xc70359f0 r5 = 0xc6cf9c00 r6 = 0x00000000 r10 = 0xc6cf9c04 _sleep() at _sleep+0x470 pc = 0xc21b6db4 lr = 0xc206ddf8 (mmcsd_task+0x118) sp = 0xe1de5d58 fp = 0xe1de5e30 r4 = 0xc6cf9c00 r5 = 0xc6cf9c04 --More-- r6 = 0xc6cf9c20 r7 = 0x00000100 r8 = 0x00000000 r9 = 0x00000000 r10 = 0xc6cf9c14 mmcsd_task() at mmcsd_task+0x118 pc = 0xc206ddf8 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1de5e38 fp = 0xe1de5e50 r4 = 0xc70359f0 r5 = 0xc6c56000 r6 = 0xc206dce0 r7 = 0xc6cf9c00 r8 = 0xe1de5e58 r9 = 0xc25d7930 r10 = 0xc25d86dc fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1de5e58 fp = 0x00000000 r4 = 0xc206dce0 r5 = 0xc6cf9c00 r6 = 0xc6c5b9f0 r7 = 0x7ffb6c69 r8 = 0xc25cd790 r10 = 0xc25d86dc swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1de5e58 fp = 0x00000000 100037 (0xc6e01000) (stack 0xe1ddb000) cpu_switch() at cpu_switch+0x10 --More-- pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1ddcd20 fp = 0xe1ddcd58 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1ddcd60 fp = 0xe1ddcd78 r4 = 0x00000000 r5 = 0x00000000 r6 = 0xc6e01000 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc25d8f0c mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1ddcd80 fp = 0xe1ddcd90 r4 = 0x00000000 r5 = 0xc25d8f44 r6 = 0xc6e01000 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x00000000 sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21b6db4 (_sleep+0x470) sp = 0xe1ddcd98 fp = 0xe1ddcdf8 r4 = 0xc6e01000 r5 = 0xc25d8f44 r6 = 0x00000000 r10 = 0xc25d8f0c --More-- _sleep() at _sleep+0x470 pc = 0xc21b6db4 lr = 0xc22e2c9c (sctp_iterator_thread+0xc0) sp = 0xe1ddce00 fp = 0xe1ddce30 r4 = 0xc25d8f0c r5 = 0xc6c56378 r6 = 0xc22e2bdc r7 = 0x00000000 r8 = 0xe1ddce58 r9 = 0xc25d7930 r10 = 0xc25d86dc sctp_iterator_thread() at sctp_iterator_thread+0xc0 pc = 0xc22e2c9c lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1ddce38 fp = 0xe1ddce50 r4 = 0xc6e01000 r10 = 0xc25d86dc fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1ddce58 fp = 0x00000000 r4 = 0xc22e2bdc r5 = 0x00000000 r6 = 0xc6c5a9f0 r7 = 0x7ffb6c1f r8 = 0xc25cd790 r10 = 0xc25d86dc swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1ddce58 fp = 0x00000000 --More-- 100026 (0xc6c5c350) (stack 0xe1da4000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1da5d48 fp = 0xe1da5d80 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1da5d88 fp = 0xe1da5da0 r4 = 0x00000000 r5 = 0x00000000 r6 = 0xc6c5c350 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc6d2cea0 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1da5da8 fp = 0xe1da5db8 r4 = 0x00000000 r5 = 0xc6d2cca4 r6 = 0xc6c5c350 r7 = 0x00000000 r8 = 0x00000000 r9 = 0xc25d7f60 sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21444f4 (_cv_wait+0x1e4) sp = 0xe1da5dc0 fp = 0xe1da5df8 r4 = 0xc258e590 r5 = 0xc6d2cca4 --More-- r6 = 0xc6c5c350 r10 = 0xc6d2cea0 _cv_wait() at _cv_wait+0x1e4 pc = 0xc21444f4 lr = 0xc209fa5c (usb_process+0x180) sp = 0xe1da5e00 fp = 0xe1da5e30 r4 = 0xc6d2cc9c r5 = 0xc6d2cca4 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000001 r9 = 0xc6d2ccac r10 = 0x00000000 usb_process() at usb_process+0x180 pc = 0xc209fa5c lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1da5e38 fp = 0xe1da5e50 r4 = 0xc6c5c350 r5 = 0xc6c566f0 r6 = 0xc209f8dc r7 = 0xc6d2cc9c r8 = 0xe1da5e58 r9 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1da5e58 fp = 0x00000000 r4 = 0xc209f8dc r5 = 0xc6d2cc9c r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 --More-- swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1da5e58 fp = 0x00000000 100027 (0xc6e036a0) (stack 0xe1da7000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1da8d48 fp = 0xe1da8d80 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1da8d88 fp = 0xe1da8da0 r4 = 0x00000000 r5 = 0x00000000 r6 = 0xc6e036a0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc6d2cea0 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1da8da8 fp = 0xe1da8db8 r4 = 0x00000000 r5 = 0xc6d2ccd4 r6 = 0xc6e036a0 r7 = 0x00000000 r8 = 0x00000000 r9 = 0xc25d7f60 sleepq_wait() at sleepq_wait+0x38 --More-- pc = 0xc2204a94 lr = 0xc21444f4 (_cv_wait+0x1e4) sp = 0xe1da8dc0 fp = 0xe1da8df8 r4 = 0xc258e590 r5 = 0xc6d2ccd4 r6 = 0xc6e036a0 r10 = 0xc6d2cea0 _cv_wait() at _cv_wait+0x1e4 pc = 0xc21444f4 lr = 0xc209fa5c (usb_process+0x180) sp = 0xe1da8e00 fp = 0xe1da8e30 r4 = 0xc6d2cccc r5 = 0xc6d2ccd4 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000001 r9 = 0xc6d2ccdc r10 = 0x00000000 usb_process() at usb_process+0x180 pc = 0xc209fa5c lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1da8e38 fp = 0xe1da8e50 r4 = 0xc6e036a0 r5 = 0xc6c566f0 r6 = 0xc209f8dc r7 = 0xc6d2cccc r8 = 0xe1da8e58 r9 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1da8e58 fp = 0x00000000 --More-- r4 = 0xc209f8dc r5 = 0xc6d2cccc r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1da8e58 fp = 0x00000000 100028 (0xc6e03350) (stack 0xe1daa000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1dabd48 fp = 0xe1dabd80 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1dabd88 fp = 0xe1dabda0 r4 = 0x00000000 r5 = 0x0007bc82 r6 = 0xc6e03350 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc6d2cea0 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1dabda8 fp = 0xe1dabdb8 r4 = 0x00000000 r5 = 0xc6d2cd04 --More-- r6 = 0xc6e03350 r7 = 0x00000000 r8 = 0x00000000 r9 = 0xc25d7f60 sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21444f4 (_cv_wait+0x1e4) sp = 0xe1dabdc0 fp = 0xe1dabdf8 r4 = 0xc258e590 r5 = 0xc6d2cd04 r6 = 0xc6e03350 r10 = 0xc6d2cea0 _cv_wait() at _cv_wait+0x1e4 pc = 0xc21444f4 lr = 0xc209fa5c (usb_process+0x180) sp = 0xe1dabe00 fp = 0xe1dabe30 r4 = 0xc6d2ccfc r5 = 0xc6d2cd04 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000001 r9 = 0xc6d2cd0c r10 = 0x00000000 usb_process() at usb_process+0x180 pc = 0xc209fa5c lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1dabe38 fp = 0xe1dabe50 r4 = 0xc6e03350 r5 = 0xc6c566f0 r6 = 0xc209f8dc r7 = 0xc6d2ccfc r8 = 0xe1dabe58 r9 = 0x00000000 --More-- fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1dabe58 fp = 0x00000000 r4 = 0xc209f8dc r5 = 0xc6d2ccfc r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1dabe58 fp = 0x00000000 100029 (0xc6e03000) (stack 0xe1dad000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1daed48 fp = 0xe1daed80 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1daed88 fp = 0xe1daeda0 r4 = 0x00000000 r5 = 0x00000000 r6 = 0xc6e03000 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc6d2cea0 mi_switch() at mi_switch+0x140 --More-- pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1daeda8 fp = 0xe1daedb8 r4 = 0x00000000 r5 = 0xc6d2cd34 r6 = 0xc6e03000 r7 = 0x00000000 r8 = 0x00000000 r9 = 0xc25d7f60 sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21444f4 (_cv_wait+0x1e4) sp = 0xe1daedc0 fp = 0xe1daedf8 r4 = 0xc258e590 r5 = 0xc6d2cd34 r6 = 0xc6e03000 r10 = 0xc6d2cea0 _cv_wait() at _cv_wait+0x1e4 pc = 0xc21444f4 lr = 0xc209fa5c (usb_process+0x180) sp = 0xe1daee00 fp = 0xe1daee30 r4 = 0xc6d2cd2c r5 = 0xc6d2cd34 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000001 r9 = 0xc6d2cd3c r10 = 0x00000000 usb_process() at usb_process+0x180 pc = 0xc209fa5c lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1daee38 fp = 0xe1daee50 --More-- r4 = 0xc6e03000 r5 = 0xc6c566f0 r6 = 0xc209f8dc r7 = 0xc6d2cd2c r8 = 0xe1daee58 r9 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1daee58 fp = 0x00000000 r4 = 0xc209f8dc r5 = 0xc6d2cd2c r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1daee58 fp = 0x00000000 100031 (0xc6e026a0) (stack 0xe1dc8000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1dc9d48 fp = 0xe1dc9d80 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1dc9d88 fp = 0xe1dc9da0 r4 = 0x00000000 r5 = 0x00000000 r6 = 0xc6e026a0 r7 = 0xc25a6ef0 --More-- r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc6e0bea0 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1dc9da8 fp = 0xe1dc9db8 r4 = 0x00000000 r5 = 0xc6e0bca4 r6 = 0xc6e026a0 r7 = 0x00000000 r8 = 0x00000000 r9 = 0xc25d7f60 sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21444f4 (_cv_wait+0x1e4) sp = 0xe1dc9dc0 fp = 0xe1dc9df8 r4 = 0xc258e590 r5 = 0xc6e0bca4 r6 = 0xc6e026a0 r10 = 0xc6e0bea0 _cv_wait() at _cv_wait+0x1e4 pc = 0xc21444f4 lr = 0xc209fa5c (usb_process+0x180) sp = 0xe1dc9e00 fp = 0xe1dc9e30 r4 = 0xc6e0bc9c r5 = 0xc6e0bca4 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000001 r9 = 0xc6e0bcac r10 = 0x00000000 --More-- usb_process() at usb_process+0x180 pc = 0xc209fa5c lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1dc9e38 fp = 0xe1dc9e50 r4 = 0xc6e026a0 r5 = 0xc6c566f0 r6 = 0xc209f8dc r7 = 0xc6e0bc9c r8 = 0xe1dc9e58 r9 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1dc9e58 fp = 0x00000000 r4 = 0xc209f8dc r5 = 0xc6e0bc9c r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1dc9e58 fp = 0x00000000 100032 (0xc6e02350) (stack 0xe1dcb000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1dccd48 fp = 0xe1dccd80 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) --More-- sp = 0xe1dccd88 fp = 0xe1dccda0 r4 = 0x00000000 r5 = 0x0010d63e r6 = 0xc6e02350 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc6e0bea0 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1dccda8 fp = 0xe1dccdb8 r4 = 0x00000000 r5 = 0xc6e0bcd4 r6 = 0xc6e02350 r7 = 0x00000000 r8 = 0x00000000 r9 = 0xc25d7f60 sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21444f4 (_cv_wait+0x1e4) sp = 0xe1dccdc0 fp = 0xe1dccdf8 r4 = 0xc258e590 r5 = 0xc6e0bcd4 r6 = 0xc6e02350 r10 = 0xc6e0bea0 _cv_wait() at _cv_wait+0x1e4 pc = 0xc21444f4 lr = 0xc209fa5c (usb_process+0x180) sp = 0xe1dcce00 fp = 0xe1dcce30 r4 = 0xc6e0bccc r5 = 0xc6e0bcd4 --More-- r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000001 r9 = 0xc6e0bcdc r10 = 0x00000000 usb_process() at usb_process+0x180 pc = 0xc209fa5c lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1dcce38 fp = 0xe1dcce50 r4 = 0xc6e02350 r5 = 0xc6c566f0 r6 = 0xc209f8dc r7 = 0xc6e0bccc r8 = 0xe1dcce58 r9 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1dcce58 fp = 0x00000000 r4 = 0xc209f8dc r5 = 0xc6e0bccc r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1dcce58 fp = 0x00000000 100033 (0xc6e02000) (stack 0xe1dce000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) --More-- sp = 0xe1dcfd48 fp = 0xe1dcfd80 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1dcfd88 fp = 0xe1dcfda0 r4 = 0x00000000 r5 = 0x0062c0cc r6 = 0xc6e02000 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc6e0bea0 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1dcfda8 fp = 0xe1dcfdb8 r4 = 0x00000000 r5 = 0xc6e0bd04 r6 = 0xc6e02000 r7 = 0x00000000 r8 = 0x00000000 r9 = 0xc25d7f60 sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21444f4 (_cv_wait+0x1e4) sp = 0xe1dcfdc0 fp = 0xe1dcfdf8 r4 = 0xc258e590 r5 = 0xc6e0bd04 r6 = 0xc6e02000 r10 = 0xc6e0bea0 _cv_wait() at _cv_wait+0x1e4 --More-- pc = 0xc21444f4 lr = 0xc209fa5c (usb_process+0x180) sp = 0xe1dcfe00 fp = 0xe1dcfe30 r4 = 0xc6e0bcfc r5 = 0xc6e0bd04 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000001 r9 = 0xc6e0bd0c r10 = 0x00000000 usb_process() at usb_process+0x180 pc = 0xc209fa5c lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1dcfe38 fp = 0xe1dcfe50 r4 = 0xc6e02000 r5 = 0xc6c566f0 r6 = 0xc209f8dc r7 = 0xc6e0bcfc r8 = 0xe1dcfe58 r9 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1dcfe58 fp = 0x00000000 r4 = 0xc209f8dc r5 = 0xc6e0bcfc r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) --More-- sp = 0xe1dcfe58 fp = 0x00000000 100034 (0xc6e019f0) (stack 0xe1dd1000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1dd2d48 fp = 0xe1dd2d80 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1dd2d88 fp = 0xe1dd2da0 r4 = 0x00000000 r5 = 0x00070a0c r6 = 0xc6e019f0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc6e0bea0 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1dd2da8 fp = 0xe1dd2db8 r4 = 0x00000000 r5 = 0xc6e0bd34 r6 = 0xc6e019f0 r7 = 0x00000000 r8 = 0x00000000 r9 = 0xc25d7f60 sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21444f4 (_cv_wait+0x1e4) sp = 0xe1dd2dc0 fp = 0xe1dd2df8 --More-- r4 = 0xc258e590 r5 = 0xc6e0bd34 r6 = 0xc6e019f0 r10 = 0xc6e0bea0 _cv_wait() at _cv_wait+0x1e4 pc = 0xc21444f4 lr = 0xc209fa5c (usb_process+0x180) sp = 0xe1dd2e00 fp = 0xe1dd2e30 r4 = 0xc6e0bd2c r5 = 0xc6e0bd34 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000001 r9 = 0xc6e0bd3c r10 = 0x00000000 usb_process() at usb_process+0x180 pc = 0xc209fa5c lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1dd2e38 fp = 0xe1dd2e50 r4 = 0xc6e019f0 r5 = 0xc6c566f0 r6 = 0xc209f8dc r7 = 0xc6e0bd2c r8 = 0xe1dd2e58 r9 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1dd2e58 fp = 0x00000000 r4 = 0xc209f8dc r5 = 0xc6e0bd2c r6 = 0x00000000 r7 = 0x00000000 --More-- r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1dd2e58 fp = 0x00000000 100048 (0xc7034000) (stack 0xfa507000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xfa508d48 fp = 0xfa508d80 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xfa508d88 fp = 0xfa508da0 r4 = 0x00000000 r5 = 0x001db168 r6 = 0xc7034000 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc7073188 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xfa508da8 fp = 0xfa508db8 r4 = 0x00000000 r5 = 0xc7073028 r6 = 0xc7034000 r7 = 0x00000000 r8 = 0x00000000 r9 = 0xc25d7f60 --More-- sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21444f4 (_cv_wait+0x1e4) sp = 0xfa508dc0 fp = 0xfa508df8 r4 = 0xc258e590 r5 = 0xc7073028 r6 = 0xc7034000 r10 = 0xc7073188 _cv_wait() at _cv_wait+0x1e4 pc = 0xc21444f4 lr = 0xc209fa5c (usb_process+0x180) sp = 0xfa508e00 fp = 0xfa508e30 r4 = 0xc7073020 r5 = 0xc7073028 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000001 r9 = 0xc7073030 r10 = 0xc25d86dc usb_process() at usb_process+0x180 pc = 0xc209fa5c lr = 0xc216c968 (fork_exit+0xa4) sp = 0xfa508e38 fp = 0xfa508e50 r4 = 0xc7034000 r5 = 0xc6c566f0 r6 = 0xc209f8dc r7 = 0xc7073020 r8 = 0xfa508e58 r9 = 0xc6c5c350 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) --More-- sp = 0xfa508e58 fp = 0x00000000 r4 = 0xc209f8dc r5 = 0xc7073020 r6 = 0xc6e036a0 r7 = 0x7ffb6c22 r8 = 0xc6c5c678 r10 = 0xc25d86dc swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xfa508e58 fp = 0x00000000 100017 (0xc6cf66a0) (stack 0xe1ae3000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1ae4d08 fp = 0xe1ae4d40 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1ae4d48 fp = 0xe1ae4d60 r4 = 0x00000000 r5 = 0x00368cc4 r6 = 0xc6cf66a0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc25ae080 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1ae4d68 fp = 0xe1ae4d78 --More-- r4 = 0x0000005c r5 = 0xc25ae0c0 r6 = 0xc6cf66a0 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x0000005c sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21b6db4 (_sleep+0x470) sp = 0xe1ae4d80 fp = 0xe1ae4de0 r4 = 0xc6cf66a0 r5 = 0xc25ae0c0 r6 = 0x00000000 r10 = 0xc25ae080 _sleep() at _sleep+0x470 pc = 0xc21b6db4 lr = 0xc2010940 (xpt_done_td+0xd8) sp = 0xe1ae4de8 fp = 0xe1ae4e30 r4 = 0xc25ae080 r5 = 0x00000001 r6 = 0xc25ae0c0 r7 = 0xe1ae4dfc r8 = 0xc25ae090 r9 = 0x00000000 r10 = 0x00000004 xpt_done_td() at xpt_done_td+0xd8 pc = 0xc2010940 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1ae4e38 fp = 0xe1ae4e50 r4 = 0xc6cf66a0 r5 = 0xc6c56a68 r6 = 0xc2010868 r7 = 0xc25ae080 --More-- r8 = 0xe1ae4e58 r9 = 0x00000000 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1ae4e58 fp = 0x00000000 r4 = 0xc2010868 r5 = 0xc25ae080 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1ae4e58 fp = 0x00000000 100039 (0xc6cfb6a0) (stack 0xe1de1000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1de2cf8 fp = 0xe1de2d30 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1de2d38 fp = 0xe1de2d50 r4 = 0x00000000 r5 = 0x00002852 r6 = 0xc6cfb6a0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 --More-- r10 = 0xc25ae300 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1de2d58 fp = 0xe1de2d68 r4 = 0x0000005c r5 = 0xc25ae2ac r6 = 0xc6cfb6a0 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x0000005c sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21b6db4 (_sleep+0x470) sp = 0xe1de2d70 fp = 0xe1de2dd0 r4 = 0xc6cfb6a0 r5 = 0xc25ae2ac r6 = 0x00000000 r10 = 0xc25ae300 _sleep() at _sleep+0x470 pc = 0xc21b6db4 lr = 0xc2010d34 (xpt_scanner_thread+0xf4) sp = 0xe1de2dd8 fp = 0xe1de2e30 r4 = 0xc25ae310 r5 = 0xc24d6637 r6 = 0xc25ae280 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x00000004 r10 = 0x00000100 xpt_scanner_thread() at xpt_scanner_thread+0xf4 --More-- pc = 0xc2010d34 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1de2e38 fp = 0xe1de2e50 r4 = 0xc6cfb6a0 r5 = 0xc6c56a68 r6 = 0xc2010c40 r7 = 0x00000000 r8 = 0xe1de2e58 r9 = 0x00000000 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1de2e58 fp = 0x00000000 r4 = 0xc2010c40 r5 = 0x00000000 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1de2e58 fp = 0x00000000 100015 (0xc6cfb000) (stack 0xe1add000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1aded20 fp = 0xe1aded58 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) --More-- sp = 0xe1aded60 fp = 0xe1aded78 r4 = 0x00000000 r5 = 0x0000d92c r6 = 0xc6cfb000 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0x00000000 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc22052ac (sleepq_timedwait+0x38) sp = 0xe1aded80 fp = 0xe1aded90 r4 = 0xc6cfb000 r5 = 0x00000000 r6 = 0xc25bb0f0 r7 = 0x19999999 r8 = 0x00000000 r9 = 0x00000000 sleepq_timedwait() at sleepq_timedwait+0x38 pc = 0xc22052ac lr = 0xc21b6d88 (_sleep+0x444) sp = 0xe1aded98 fp = 0xe1adedf8 r4 = 0x00000000 r5 = 0xc25bb0f0 r6 = 0x00000004 r10 = 0x00000000 _sleep() at _sleep+0x444 pc = 0xc21b6d88 lr = 0xc2075eb8 (random_kthread+0xc0) sp = 0xe1adee00 fp = 0xe1adee30 r4 = 0x19999999 r5 = 0x0000a004 --More-- r6 = 0xc25b10e0 r7 = 0x00000004 r8 = 0x0000a000 r9 = 0xc25bb0f0 r10 = 0x00000000 random_kthread() at random_kthread+0xc0 pc = 0xc2075eb8 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1adee38 fp = 0xe1adee50 r4 = 0xc6cfb000 r5 = 0xc6c57000 r6 = 0xc2075df8 r7 = 0x00000000 r8 = 0xe1adee58 r9 = 0x00000000 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1adee58 fp = 0x00000000 r4 = 0xc2075df8 r5 = 0x00000000 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1adee58 fp = 0x00000000 100012 (0xc6c59350) (stack 0xe1ad4000) cpu_switch() at cpu_switch+0x10 --More-- pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1ad5d00 fp = 0xe1ad5d38 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1ad5d40 fp = 0xe1ad5d58 r4 = 0x00000000 r5 = 0x0009b90c r6 = 0xc6c59350 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc25bc608 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1ad5d60 fp = 0xe1ad5d70 r4 = 0x0000005c r5 = 0xc25d7588 r6 = 0xc6c59350 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x0000005c sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21b6db4 (_sleep+0x470) sp = 0xe1ad5d78 fp = 0xe1ad5dd8 r4 = 0xc6c59350 r5 = 0xc25d7588 r6 = 0x00000000 r10 = 0xc25bc608 --More-- _sleep() at _sleep+0x470 pc = 0xc21b6db4 lr = 0xc21228f0 (g_run_events+0x8c) sp = 0xe1ad5de0 fp = 0xe1ad5e30 r4 = 0x00000001 r5 = 0xc25bc618 r6 = 0xc25d7578 r7 = 0x00000000 r8 = 0x00000004 r9 = 0xc25833e0 r10 = 0x00000000 g_run_events() at g_run_events+0x8c pc = 0xc21228f0 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1ad5e38 fp = 0xe1ad5e50 r4 = 0xc6c59350 r5 = 0xc6c57378 r6 = 0xc2125604 r7 = 0x00000000 r8 = 0xe1ad5e58 r9 = 0x00000000 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1ad5e58 fp = 0x00000000 r4 = 0xc2125604 r5 = 0x00000000 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 --More-- swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1ad5e58 fp = 0x00000000 100013 (0xc6c59000) (stack 0xe1ad7000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1ad8d00 fp = 0xe1ad8d38 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1ad8d40 fp = 0xe1ad8d58 r4 = 0x00000000 r5 = 0x0007625e r6 = 0xc6c59000 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc25bc654 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1ad8d60 fp = 0xe1ad8d70 r4 = 0x0000005c r5 = 0xc25d758c r6 = 0xc6c59000 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x0000005c sleepq_wait() at sleepq_wait+0x38 --More-- pc = 0xc2204a94 lr = 0xc21b6db4 (_sleep+0x470) sp = 0xe1ad8d78 fp = 0xe1ad8dd8 r4 = 0xc6c59000 r5 = 0xc25d758c r6 = 0x00000000 r10 = 0xc25bc654 _sleep() at _sleep+0x470 pc = 0xc21b6db4 lr = 0xc21250cc (g_io_schedule_up+0x280) sp = 0xe1ad8de0 fp = 0xe1ad8e20 r4 = 0xc25bc664 r5 = 0x00000004 r6 = 0xc25bc620 r7 = 0x00000000 r8 = 0xc25d758c r9 = 0xc24d6637 r10 = 0x00000000 g_io_schedule_up() at g_io_schedule_up+0x280 pc = 0xc21250cc lr = 0xc21256f4 (g_up_procbody+0x78) sp = 0xe1ad8e28 fp = 0xe1ad8e30 r4 = 0xc25bc68c r5 = 0xc6c57378 r6 = 0xc212567c r7 = 0x00000000 r8 = 0xe1ad8e58 r9 = 0x00000000 r10 = 0x00000000 g_up_procbody() at g_up_procbody+0x78 pc = 0xc21256f4 lr = 0xc216c968 (fork_exit+0xa4) --More-- sp = 0xe1ad8e38 fp = 0xe1ad8e50 r4 = 0xc6c59000 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1ad8e58 fp = 0x00000000 r4 = 0xc212567c r5 = 0x00000000 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1ad8e58 fp = 0x00000000 100014 (0xc6cfb350) (stack 0xe1ada000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1adbcd8 fp = 0xe1adbd10 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1adbd18 fp = 0xe1adbd30 r4 = 0x00000000 r5 = 0x000bd9bc r6 = 0xc6cfb350 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 --More-- r10 = 0xc25bc634 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1adbd38 fp = 0xe1adbd48 r4 = 0x0000005c r5 = 0xc25d7590 r6 = 0xc6cfb350 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x0000005c sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21b6db4 (_sleep+0x470) sp = 0xe1adbd50 fp = 0xe1adbdb0 r4 = 0xc6cfb350 r5 = 0xc25d7590 r6 = 0x00000000 r10 = 0xc25bc634 _sleep() at _sleep+0x470 pc = 0xc21b6db4 lr = 0xc212493c (g_io_schedule_down+0x238) sp = 0xe1adbdb8 fp = 0xe1adbe20 r4 = 0xc25bc644 r5 = 0x00000000 r6 = 0x00000004 r7 = 0x00000001 r8 = 0x00000000 r9 = 0xc25bc620 r10 = 0xc6e17c80 g_io_schedule_down() at g_io_schedule_down+0x238 --More-- pc = 0xc212493c lr = 0xc2125770 (g_down_procbody+0x78) sp = 0xe1adbe28 fp = 0xe1adbe30 r4 = 0xc25bc68c r5 = 0xc6c57378 r6 = 0xc21256f8 r7 = 0x00000000 r8 = 0xe1adbe58 r9 = 0x00000000 r10 = 0x00000000 g_down_procbody() at g_down_procbody+0x78 pc = 0xc2125770 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1adbe38 fp = 0xe1adbe50 r4 = 0xc6cfb350 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1adbe58 fp = 0x00000000 r4 = 0xc21256f8 r5 = 0x00000000 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1adbe58 fp = 0x00000000 100006 (0xc6c5a9f0) (stack 0xe1ac2000) savectx() at savectx+0x14 --More-- pc = 0xc249a18c lr = 0xc2487eec ($a.6+0x1c) sp = 0xe1ac3cf8 fp = 0xe1ac3d20 $a.6() at $a.6+0x1c pc = 0xc2487eec lr = 0xc216ffa0 (intr_event_handle+0x70) sp = 0xe1ac3d28 fp = 0xe1ac3d40 r4 = 0xc6de9700 r5 = 0xe1ac3d60 r6 = 0x00000000 r7 = 0xc6ded4c0 r8 = 0x00000000 r9 = 0xc6c5a9f0 r10 = 0x00000000 intr_event_handle() at intr_event_handle+0x70 pc = 0xc216ffa0 lr = 0xc248595c (arm_irq_handler+0x6c) sp = 0xe1ac3d48 fp = 0xe1ac3d58 r4 = 0xe1ac3d60 r5 = 0x00000004 r6 = 0xc25e1014 r7 = 0xc25d4ed4 r8 = 0xc258ad70 r9 = 0x00000000 arm_irq_handler() at arm_irq_handler+0x6c pc = 0xc248595c lr = 0xc2483920 (exception_exit) sp = 0xe1ac3d60 fp = 0xe1ac3df8 r4 = 0xc6c5a9f0 r5 = 0xc6b3476c r6 = 0xc6b34700 r7 = 0xc6b34710 --More-- exception_exit() at exception_exit pc = 0xc2483920 lr = 0xc24862f8 (spinlock_exit+0x10) sp = 0xe1ac3df0 fp = 0xe1ac3df8 r0 = 0x00000000 r1 = 0x000000c0 r2 = 0x600000d3 r3 = 0x60000013 r4 = 0xc6c5a9f0 r5 = 0xc6b3476c r6 = 0xc6b34700 r7 = 0xc6b34710 r8 = 0xc258ad70 r9 = 0x00000000 r10 = 0x00000000 r12 = 0x00000000 spinlock_exit() at spinlock_exit+0x3c pc = 0xc2486324 lr = 0xc2170874 (ithread_loop+0x1f4) sp = 0xe1ac3e00 fp = 0xe1ac3e30 r4 = 0xc6b14ea0 r10 = 0x00000000 ithread_loop() at ithread_loop+0x1f4 pc = 0xc2170874 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1ac3e38 fp = 0xe1ac3e50 r4 = 0xc6c5a9f0 r5 = 0xc6c576f0 r6 = 0xc2170680 r7 = 0xc6b14ea0 r8 = 0xe1ac3e58 r9 = 0x00000000 r10 = 0x00000000 --More-- fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1ac3e58 fp = 0x00000000 r4 = 0xc2170680 r5 = 0xc6b14ea0 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1ac3e58 fp = 0x00000000 100007 (0xc6c5a6a0) (stack 0xe1ac5000) uart_sab82532_class() at 0 pc = 0x00000000 lr = 0xc249a1a4 (fork_trampoline) sp = 0xe1ac6e58 fp = 0x00000000 100008 (0xc6c5a350) (stack 0xe1ac8000) uart_sab82532_class() at 0 pc = 0x00000000 lr = 0xc249a1a4 (fork_trampoline) sp = 0xe1ac9e58 fp = 0x00000000 100009 (0xc6c5a000) (stack 0xe1acb000) uart_sab82532_class() at 0 pc = 0x00000000 lr = 0xc249a1a4 (fork_trampoline) sp = 0xe1acce58 fp = 0x00000000 100010 (0xc6c599f0) (stack 0xe1ace000) uart_sab82532_class() at 0 pc = 0x00000000 lr = 0xc249a1a4 (fork_trampoline) --More-- sp = 0xe1acfe58 fp = 0x00000000 100011 (0xc6c596a0) (stack 0xe1ad1000) uart_sab82532_class() at 0 pc = 0x00000000 lr = 0xc249a1a4 (fork_trampoline) sp = 0xe1ad2e58 fp = 0x00000000 100016 (0xc6cf69f0) (stack 0xe1ae0000) uart_sab82532_class() at 0 pc = 0x00000000 lr = 0xc249a1a4 (fork_trampoline) sp = 0xe1ae1e58 fp = 0x00000000 100019 (0xc6cf6000) (stack 0xe1ae9000) uart_sab82532_class() at 0 pc = 0x00000000 lr = 0xc249a1a4 (fork_trampoline) sp = 0xe1aeae58 fp = 0x00000000 100021 (0xc6cf56a0) (stack 0xe1aef000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1af0da0 fp = 0xe1af0dd8 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1af0de0 fp = 0xe1af0df8 r4 = 0x00000000 r5 = 0x00002d2f r6 = 0xc6cf56a0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000109 r10 = 0x00000000 --More-- mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2170824 (ithread_loop+0x1a4) sp = 0xe1af0e00 fp = 0xe1af0e30 r4 = 0xc6b14c30 r5 = 0xc6b33d6c r6 = 0xc6b33d00 r7 = 0xc6b33d10 r8 = 0xc258ad70 r9 = 0xc6b33d10 ithread_loop() at ithread_loop+0x1a4 pc = 0xc2170824 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1af0e38 fp = 0xe1af0e50 r4 = 0xc6cf56a0 r5 = 0xc6c576f0 r6 = 0xc2170680 r7 = 0xc6b14c30 r8 = 0xe1af0e58 r9 = 0x00000000 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1af0e58 fp = 0x00000000 r4 = 0xc2170680 r5 = 0xc6b14c30 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit --More-- pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1af0e58 fp = 0x00000000 100023 (0xc6cf5000) (stack 0xe1af5000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1af6da0 fp = 0xe1af6dd8 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1af6de0 fp = 0xe1af6df8 r4 = 0x00000000 r5 = 0x00002240 r6 = 0xc6cf5000 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000109 r10 = 0x00000000 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2170824 (ithread_loop+0x1a4) sp = 0xe1af6e00 fp = 0xe1af6e30 r4 = 0xc6d31930 r5 = 0xc6b3226c r6 = 0xc6b32200 r7 = 0xc6b32210 r8 = 0xc258ad70 r9 = 0xc6b32210 ithread_loop() at ithread_loop+0x1a4 pc = 0xc2170824 lr = 0xc216c968 (fork_exit+0xa4) --More-- sp = 0xe1af6e38 fp = 0xe1af6e50 r4 = 0xc6cf5000 r5 = 0xc6c576f0 r6 = 0xc2170680 r7 = 0xc6d31930 r8 = 0xe1af6e58 r9 = 0x00000000 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1af6e58 fp = 0x00000000 r4 = 0xc2170680 r5 = 0xc6d31930 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1af6e58 fp = 0x00000000 100024 (0xc6c5c9f0) (stack 0xe1d7f000) uart_sab82532_class() at 0 pc = 0x00000000 lr = 0xc249a1a4 (fork_trampoline) sp = 0xe1d80e58 fp = 0x00000000 100025 (0xc6c5c6a0) (stack 0xe1da1000) uart_sab82532_class() at 0 pc = 0x00000000 lr = 0xc249a1a4 (fork_trampoline) sp = 0xe1da2e58 fp = 0x00000000 --More-- 100030 (0xc6e029f0) (stack 0xe1dc5000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1dc6da0 fp = 0xe1dc6dd8 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1dc6de0 fp = 0xe1dc6df8 r4 = 0x00000000 r5 = 0x001a31bb r6 = 0xc6e029f0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000109 r10 = 0x00000000 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2170824 (ithread_loop+0x1a4) sp = 0xe1dc6e00 fp = 0xe1dc6e30 r4 = 0xc6d42a40 r5 = 0xc6dec06c r6 = 0xc6dec000 r7 = 0xc6dec010 r8 = 0xc258ad70 r9 = 0xc6dec010 ithread_loop() at ithread_loop+0x1a4 pc = 0xc2170824 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1dc6e38 fp = 0xe1dc6e50 r4 = 0xc6e029f0 r5 = 0xc6c576f0 --More-- r6 = 0xc2170680 r7 = 0xc6d42a40 r8 = 0xe1dc6e58 r9 = 0x00000000 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1dc6e58 fp = 0x00000000 r4 = 0xc2170680 r5 = 0xc6d42a40 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1dc6e58 fp = 0x00000000 100035 (0xc6e016a0) (stack 0xe1dd4000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1dd5da0 fp = 0xe1dd5dd8 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1dd5de0 fp = 0xe1dd5df8 r4 = 0x00000000 r5 = 0x0000588c r6 = 0xc6e016a0 r7 = 0xc25a6ef0 --More-- r8 = 0x00000000 r9 = 0x00000109 r10 = 0x00000000 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2170824 (ithread_loop+0x1a4) sp = 0xe1dd5e00 fp = 0xe1dd5e30 r4 = 0xc6d427a0 r5 = 0xc6debe6c r6 = 0xc6debe00 r7 = 0xc6debe10 r8 = 0xc258ad70 r9 = 0xc6debe10 ithread_loop() at ithread_loop+0x1a4 pc = 0xc2170824 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1dd5e38 fp = 0xe1dd5e50 r4 = 0xc6e016a0 r5 = 0xc6c576f0 r6 = 0xc2170680 r7 = 0xc6d427a0 r8 = 0xe1dd5e58 r9 = 0x00000000 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1dd5e58 fp = 0x00000000 r4 = 0xc2170680 r5 = 0xc6d427a0 r6 = 0x00000000 r7 = 0x00000000 --More-- r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1dd5e58 fp = 0x00000000 100036 (0xc6e01350) (stack 0xe1dd7000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1dd8da0 fp = 0xe1dd8dd8 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1dd8de0 fp = 0xe1dd8df8 r4 = 0x00000000 r5 = 0x00fb2416 r6 = 0xc6e01350 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000109 r10 = 0x00000000 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2170824 (ithread_loop+0x1a4) sp = 0xe1dd8e00 fp = 0xe1dd8e30 r4 = 0xc6d42500 r5 = 0xc6debd6c r6 = 0xc6debd00 r7 = 0xc6debd10 r8 = 0xc258ad70 r9 = 0xc6debd10 --More-- ithread_loop() at ithread_loop+0x1a4 pc = 0xc2170824 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1dd8e38 fp = 0xe1dd8e50 r4 = 0xc6e01350 r5 = 0xc6c576f0 r6 = 0xc2170680 r7 = 0xc6d42500 r8 = 0xe1dd8e58 r9 = 0x00000000 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1dd8e58 fp = 0x00000000 r4 = 0xc2170680 r5 = 0xc6d42500 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1dd8e58 fp = 0x00000000 100002 (0xc6c5b9f0) (stack 0xe1ab6000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1ab7d50 fp = 0xe1ab7d88 sched_switch() at sched_switch+0x264 --More-- pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1ab7d90 fp = 0xe1ab7da8 r4 = 0x00000000 r5 = 0x2209a837 r6 = 0xc6c5b9f0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000608 r10 = 0x00000009 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc21b4e38 (critical_exit+0x84) sp = 0xe1ab7db0 fp = 0xe1ab7db8 r4 = 0xc6c5b9f0 r5 = 0xc6c5b9f0 r6 = 0xc25cbcd6 r7 = 0xc25cbcc8 r8 = 0xc25cbcc4 r9 = 0xc25cbc88 critical_exit() at critical_exit+0x84 pc = 0xc21b4e38 lr = 0xc2486278 (cpu_idle+0x8c) sp = 0xe1ab7dc0 fp = 0xe1ab7dc8 r4 = 0xc6c5b9f0 r10 = 0x00000009 cpu_idle() at cpu_idle+0x8c pc = 0xc2486278 lr = 0xc21e1c38 (sched_idletd+0xc8) sp = 0xe1ab7dd0 fp = 0xe1ab7e30 r4 = 0xc25cbcd4 r10 = 0x00000009 --More-- sched_idletd() at sched_idletd+0xc8 pc = 0xc21e1c38 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1ab7e38 fp = 0xe1ab7e50 r4 = 0xc6c5b9f0 r5 = 0xc6c57a68 r6 = 0xc21e1b70 r7 = 0x00000000 r8 = 0xe1ab7e58 r9 = 0x00000000 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1ab7e58 fp = 0x00000000 r4 = 0xc21e1b70 r5 = 0x00000000 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1ab7e58 fp = 0x00000000 100003 (0xc6c5b6a0) (stack 0xe1ab9000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1abac88 fp = 0xe1abacc0 sched_switch() at sched_switch+0x264 --More-- pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1abacc8 fp = 0xe1abace0 r4 = 0x00000000 r5 = 0x22d6281b r6 = 0xc6c5b6a0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000608 r10 = 0x0000000e mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc21b4e38 (critical_exit+0x84) sp = 0xe1abace8 fp = 0xe1abacf0 r4 = 0xc6c5b6a0 r5 = 0xe1abad30 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r9 = 0xc6c5b6a0 critical_exit() at critical_exit+0x84 pc = 0xc21b4e38 lr = 0xc217001c (intr_event_handle+0xec) sp = 0xe1abacf8 fp = 0xe1abad10 r4 = 0xc6de9900 r10 = 0x0000000e intr_event_handle() at intr_event_handle+0xec pc = 0xc217001c lr = 0xc248595c (arm_irq_handler+0x6c) sp = 0xe1abad18 fp = 0xe1abad28 r4 = 0xe1abad30 r5 = 0x00000002 --More-- r6 = 0xc25e1014 r7 = 0xc25d4ed4 r8 = 0xc25cc384 r9 = 0xc25cc348 arm_irq_handler() at arm_irq_handler+0x6c pc = 0xc248595c lr = 0xc2483920 (exception_exit) sp = 0xe1abad30 fp = 0xe1abadc8 r4 = 0xc6c5b6a0 r5 = 0xc6c5b6a0 r6 = 0xc25cc396 r7 = 0xc25cc388 exception_exit() at exception_exit pc = 0xc2483920 lr = 0xc2486278 (cpu_idle+0x8c) sp = 0xe1abadc0 fp = 0xe1abadc8 r0 = 0x00000000 r1 = 0x000000c0 r2 = 0x600000d3 r3 = 0x60000013 r4 = 0xc6c5b6a0 r5 = 0xc6c5b6a0 r6 = 0xc25cc396 r7 = 0xc25cc388 r8 = 0xc25cc384 r9 = 0xc25cc348 r10 = 0x0000000e r12 = 0x005ccb2d cpu_idle() at cpu_idle+0xb8 pc = 0xc24862a4 lr = 0xc21e1c38 (sched_idletd+0xc8) sp = 0xe1abadd0 fp = 0xe1abae30 r4 = 0xc25cc394 r10 = 0x0000000e --More-- sched_idletd() at sched_idletd+0xc8 pc = 0xc21e1c38 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1abae38 fp = 0xe1abae50 r4 = 0xc6c5b6a0 r5 = 0xc6c57a68 r6 = 0xc21e1b70 r7 = 0x00000000 r8 = 0xe1abae58 r9 = 0x00000000 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1abae58 fp = 0x00000000 r4 = 0xc21e1b70 r5 = 0x00000000 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1abae58 fp = 0x00000000 100004 (0xc6c5b350) (stack 0xe1abc000) savectx() at savectx+0x14 pc = 0xc249a18c lr = 0xc2487eec ($a.6+0x1c) sp = 0xe1abdcc8 fp = 0xe1abdcf0 $a.6() at $a.6+0x1c --More-- pc = 0xc2487eec lr = 0xc216ffa0 (intr_event_handle+0x70) sp = 0xe1abdcf8 fp = 0xe1abdd10 r4 = 0xc6de9700 r5 = 0xe1abdd30 r6 = 0x00000000 r7 = 0xc6ded4c0 r8 = 0x00000000 r9 = 0xc6c5b350 r10 = 0x00000009 intr_event_handle() at intr_event_handle+0x70 pc = 0xc216ffa0 lr = 0xc248595c (arm_irq_handler+0x6c) sp = 0xe1abdd18 fp = 0xe1abdd28 r4 = 0xe1abdd30 r5 = 0x00000004 r6 = 0xc25e1014 r7 = 0xc25d4ed4 r8 = 0xc25cca44 r9 = 0xc25cca08 arm_irq_handler() at arm_irq_handler+0x6c pc = 0xc248595c lr = 0xc2483920 (exception_exit) sp = 0xe1abdd30 fp = 0xe1abddc8 r4 = 0xc6c5b350 r5 = 0xc6c5b350 r6 = 0xc25cca56 r7 = 0xc25cca48 exception_exit() at exception_exit pc = 0xc2483920 lr = 0xc2486278 (cpu_idle+0x8c) sp = 0xe1abddc0 fp = 0xe1abddc8 --More-- r0 = 0x00000000 r1 = 0x000000c0 r2 = 0x600000d3 r3 = 0x60000013 r4 = 0xc6c5b350 r5 = 0xc6c5b350 r6 = 0xc25cca56 r7 = 0xc25cca48 r8 = 0xc25cca44 r9 = 0xc25cca08 r10 = 0x00000009 r12 = 0x00349819 cpu_idle() at cpu_idle+0xb8 pc = 0xc24862a4 lr = 0xc21e1c38 (sched_idletd+0xc8) sp = 0xe1abddd0 fp = 0xe1abde30 r4 = 0xc25cca54 r10 = 0x00000009 sched_idletd() at sched_idletd+0xc8 pc = 0xc21e1c38 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1abde38 fp = 0xe1abde50 r4 = 0xc6c5b350 r5 = 0xc6c57a68 r6 = 0xc21e1b70 r7 = 0x00000000 r8 = 0xe1abde58 r9 = 0x00000000 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1abde58 fp = 0x00000000 --More-- r4 = 0xc21e1b70 r5 = 0x00000000 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1abde58 fp = 0x00000000 100005 (0xc6c5b000) (stack 0xe1abf000) savectx() at savectx+0x14 pc = 0xc249a18c lr = 0xc2487eec ($a.6+0x1c) sp = 0xe1ac0cc8 fp = 0xe1ac0cf0 $a.6() at $a.6+0x1c pc = 0xc2487eec lr = 0xc216ffa0 (intr_event_handle+0x70) sp = 0xe1ac0cf8 fp = 0xe1ac0d10 r4 = 0xc6de9700 r5 = 0xe1ac0d30 r6 = 0x00000000 r7 = 0xc6ded4c0 r8 = 0x00000000 r9 = 0xc6c5b000 r10 = 0x00000009 intr_event_handle() at intr_event_handle+0x70 pc = 0xc216ffa0 lr = 0xc248595c (arm_irq_handler+0x6c) sp = 0xe1ac0d18 fp = 0xe1ac0d28 r4 = 0xe1ac0d30 r5 = 0x00000004 --More-- r6 = 0xc25e1014 r7 = 0xc25d4ed4 r8 = 0xc25cd104 r9 = 0xc25cd0c8 arm_irq_handler() at arm_irq_handler+0x6c pc = 0xc248595c lr = 0xc2483920 (exception_exit) sp = 0xe1ac0d30 fp = 0xe1ac0dc8 r4 = 0xc6c5b000 r5 = 0xc6c5b000 r6 = 0xc25cd116 r7 = 0xc25cd108 exception_exit() at exception_exit pc = 0xc2483920 lr = 0xc2486278 (cpu_idle+0x8c) sp = 0xe1ac0dc0 fp = 0xe1ac0dc8 r0 = 0x00000000 r1 = 0x000000c0 r2 = 0x600000d3 r3 = 0x60000013 r4 = 0xc6c5b000 r5 = 0xc6c5b000 r6 = 0xc25cd116 r7 = 0xc25cd108 r8 = 0xc25cd104 r9 = 0xc25cd0c8 r10 = 0x00000009 r12 = 0x0034995f cpu_idle() at cpu_idle+0xb8 pc = 0xc24862a4 lr = 0xc21e1c38 (sched_idletd+0xc8) sp = 0xe1ac0dd0 fp = 0xe1ac0e30 r4 = 0xc25cd114 r10 = 0x00000009 --More-- sched_idletd() at sched_idletd+0xc8 pc = 0xc21e1c38 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1ac0e38 fp = 0xe1ac0e50 r4 = 0xc6c5b000 r5 = 0xc6c57a68 r6 = 0xc21e1b70 r7 = 0x00000000 r8 = 0xe1ac0e58 r9 = 0x00000000 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1ac0e58 fp = 0x00000000 r4 = 0xc21e1b70 r5 = 0x00000000 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1ac0e58 fp = 0x00000000 100001 (0xc6c5c000) (stack 0xe1aae000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1aafae8 fp = 0xe1aafb20 sched_switch() at sched_switch+0x264 --More-- pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1aafb28 fp = 0xe1aafb40 r4 = 0x00000000 r5 = 0x002c4fd5 r6 = 0xc6c5c000 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0x00000000 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204d24 (sleepq_catch_signals+0xb4) sp = 0xe1aafb48 fp = 0xe1aafb90 r4 = 0xc6c5c000 r5 = 0xc6c58000 r6 = 0x0000006c r7 = 0x00000000 r8 = 0x00000080 r9 = 0xc6c58000 sleepq_catch_signals() at sleepq_catch_signals+0xb4 pc = 0xc2204d24 lr = 0xc2204bf8 (sleepq_wait_sig+0xc) sp = 0xe1aafb98 fp = 0xe1aafba0 r4 = 0xc6c5c000 r5 = 0xc6c58000 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x0000006c r10 = 0xc6c580ac sleepq_wait_sig() at sleepq_wait_sig+0xc --More-- pc = 0xc2204bf8 lr = 0xc21b6da8 (_sleep+0x464) sp = 0xe1aafba8 fp = 0xe1aafc08 r4 = 0xc6c5c000 r10 = 0xc6c580ac _sleep() at _sleep+0x464 pc = 0xc21b6da8 lr = 0xc2167520 (kern_wait6+0x7dc) sp = 0xe1aafc10 fp = 0xe1aafc98 r4 = 0x00000000 r5 = 0x00000007 r6 = 0x00000000 r7 = 0x00000000 r8 = 0xc6c5c000 r9 = 0xc6c580bc r10 = 0x00000000 kern_wait6() at kern_wait6+0x7dc pc = 0xc2167520 lr = 0xc2166bfc (sys_wait4+0x84) sp = 0xe1aafca0 fp = 0xe1aafdd8 r4 = 0x00000032 r5 = 0x00000000 r6 = 0x00000000 r7 = 0xe1aafcb4 r8 = 0xe1aafdf8 r9 = 0x00000000 r10 = 0xc6c58000 sys_wait4() at sys_wait4+0x84 pc = 0xc2166bfc lr = 0xc249a948 (swi_handler+0x4b8) sp = 0xe1aafde0 fp = 0xe1aafe50 --More-- r4 = 0xc6c5c000 r5 = 0x000c2171 r6 = 0x60000013 r7 = 0x00000000 r8 = 0xe1aafdf0 r10 = 0xc6c58000 swi_handler() at swi_handler+0x4b8 pc = 0xc249a948 lr = 0xc24838b0 (swi_exit) sp = 0xe1aafe58 fp = 0xbfbff928 r4 = 0x000c2280 r5 = 0x000c2171 r6 = 0x00009e00 r7 = 0x00000007 r8 = 0xbfbff908 r9 = 0x000e0810 r10 = 0x0000000e swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1aafe58 fp = 0xbfbff928 100000 (0xc25d7930) (stack 0xc2712000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xc2713d78 fp = 0xc2713db0 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xc2713db8 fp = 0xc2713dd0 r4 = 0x00000000 r5 = 0x00000000 --More-- r6 = 0xc25d7930 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0x00000000 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc22052ac (sleepq_timedwait+0x38) sp = 0xc2713dd8 fp = 0xc2713de8 r4 = 0xc25d7930 r5 = 0x00000054 r6 = 0xc25d75a8 r7 = 0xfffff479 r8 = 0x00000000 r9 = 0x00000054 sleepq_timedwait() at sleepq_timedwait+0x38 pc = 0xc22052ac lr = 0xc21b6d88 (_sleep+0x444) sp = 0xc2713df0 fp = 0xc2713e50 r4 = 0x00000009 r5 = 0xc25d75a8 r6 = 0x00000100 r10 = 0x00000000 _sleep() at _sleep+0x444 pc = 0xc21b6d88 lr = 0xc24516cc (swapper+0x4f0) sp = 0xc2713e58 fp = 0xc2713ea0 r4 = 0xc25d8144 r5 = 0x00000009 r6 = 0xfffff470 r7 = 0xc24fa8ad r8 = 0xc26bd000 r9 = 0x00000000 --More-- r10 = 0x80000000 swapper() at swapper+0x4f0 pc = 0xc24516cc lr = 0xc20001f0 (_start+0xf0) sp = 0xc2713ea8 fp = 0x00000000 r4 = 0xc2000308 r5 = 0xc25e4000 r6 = 0x1104ccc0 r7 = 0x0085207a r8 = 0xc26bd000 r9 = 0x00000014 r10 = 0x02020000 _start() at _start+0xf0 pc = 0xc20001f0 lr = 0xc20001f0 (_start+0xf0) sp = 0xc2713ea8 fp = 0x00000000 100018 (0xc6cf6350) (stack 0xe1ae6000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1ae7d10 fp = 0xe1ae7d48 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1ae7d50 fp = 0xe1ae7d68 r4 = 0x00000000 r5 = 0x00000000 r6 = 0xc6cf6350 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 --More-- r10 = 0xc6cf9218 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1ae7d70 fp = 0xe1ae7d80 r4 = 0x00000000 r5 = 0xc6cf9200 r6 = 0xc6cf6350 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x00000000 sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21b6db4 (_sleep+0x470) sp = 0xe1ae7d88 fp = 0xe1ae7de8 r4 = 0xc6cf6350 r5 = 0xc6cf9200 r6 = 0x00000000 r10 = 0xc6cf9218 _sleep() at _sleep+0x470 pc = 0xc21b6db4 lr = 0xc2209544 (taskqueue_thread_loop+0x1d8) sp = 0xe1ae7df0 fp = 0xe1ae7e30 r4 = 0xc6cf9200 r5 = 0xc6cf9218 r6 = 0xc24d6637 r7 = 0x00000000 r8 = 0x00000100 r9 = 0x00000000 r10 = 0x00000000 taskqueue_thread_loop() at taskqueue_thread_loop+0x1d8 --More-- pc = 0xc2209544 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1ae7e38 fp = 0xe1ae7e50 r4 = 0xc6cf6350 r5 = 0xc25d75a8 r6 = 0xc220936c r7 = 0xc25d7ec0 r8 = 0xe1ae7e58 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1ae7e58 fp = 0x00000000 r4 = 0xc220936c r5 = 0xc25d7ec0 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1ae7e58 fp = 0x00000000 100020 (0xc6cf59f0) (stack 0xe1aec000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1aedd10 fp = 0xe1aedd48 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1aedd50 fp = 0xe1aedd68 --More-- r4 = 0x00000000 r5 = 0x00000000 r6 = 0xc6cf59f0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc6cf9118 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1aedd70 fp = 0xe1aedd80 r4 = 0x00000000 r5 = 0xc6cf9100 r6 = 0xc6cf59f0 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x00000000 sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21b6db4 (_sleep+0x470) sp = 0xe1aedd88 fp = 0xe1aedde8 r4 = 0xc6cf59f0 r5 = 0xc6cf9100 r6 = 0x00000000 r10 = 0xc6cf9118 _sleep() at _sleep+0x470 pc = 0xc21b6db4 lr = 0xc2209544 (taskqueue_thread_loop+0x1d8) sp = 0xe1aeddf0 fp = 0xe1aede30 r4 = 0xc6cf9100 r5 = 0xc6cf9118 r6 = 0xc24d6637 r7 = 0x00000000 --More-- r8 = 0x00000100 r9 = 0x00000000 r10 = 0x00000000 taskqueue_thread_loop() at taskqueue_thread_loop+0x1d8 pc = 0xc2209544 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1aede38 fp = 0xe1aede50 r4 = 0xc6cf59f0 r5 = 0xc25d75a8 r6 = 0xc220936c r7 = 0xc25dae2c r8 = 0xe1aede58 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1aede58 fp = 0x00000000 r4 = 0xc220936c r5 = 0xc25dae2c r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1aede58 fp = 0x00000000 100022 (0xc6cf5350) (stack 0xe1af2000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1af3d10 fp = 0xe1af3d48 --More-- sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1af3d50 fp = 0xe1af3d68 r4 = 0x00000000 r5 = 0x0015455c r6 = 0xc6cf5350 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc6cf9018 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1af3d70 fp = 0xe1af3d80 r4 = 0x00000000 r5 = 0xc6cf9000 r6 = 0xc6cf5350 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x00000000 sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21b6db4 (_sleep+0x470) sp = 0xe1af3d88 fp = 0xe1af3de8 r4 = 0xc6cf5350 r5 = 0xc6cf9000 r6 = 0x00000000 r10 = 0xc6cf9018 _sleep() at _sleep+0x470 pc = 0xc21b6db4 lr = 0xc2209544 (taskqueue_thread_loop+0x1d8) --More-- sp = 0xe1af3df0 fp = 0xe1af3e30 r4 = 0xc6cf9000 r5 = 0xc6cf9018 r6 = 0xc24d6637 r7 = 0x00000000 r8 = 0x00000100 r9 = 0x00000000 r10 = 0x00000000 taskqueue_thread_loop() at taskqueue_thread_loop+0x1d8 pc = 0xc2209544 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1af3e38 fp = 0xe1af3e50 r4 = 0xc6cf5350 r5 = 0xc25d75a8 r6 = 0xc220936c r7 = 0xc25d8798 r8 = 0xe1af3e58 r10 = 0x00000000 fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1af3e58 fp = 0x00000000 r4 = 0xc220936c r5 = 0xc25d8798 r6 = 0x00000000 r7 = 0x00000000 r8 = 0x00000000 r10 = 0x00000000 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1af3e58 fp = 0x00000000 --More-- 100038 (0xc6cfb9f0) (stack 0xe1dde000) cpu_switch() at cpu_switch+0x10 pc = 0xc249a088 lr = 0xc21df7d4 (sched_switch+0x264) sp = 0xe1ddfd10 fp = 0xe1ddfd48 sched_switch() at sched_switch+0x264 pc = 0xc21df7d4 lr = 0xc21b7410 (mi_switch+0x140) sp = 0xe1ddfd50 fp = 0xe1ddfd68 r4 = 0x00000000 r5 = 0x000001c5 r6 = 0xc6cfb9f0 r7 = 0xc25a6ef0 r8 = 0x00000000 r9 = 0x00000104 r10 = 0xc6cf9498 mi_switch() at mi_switch+0x140 pc = 0xc21b7410 lr = 0xc2204a94 (sleepq_wait+0x38) sp = 0xe1ddfd70 fp = 0xe1ddfd80 r4 = 0x00000000 r5 = 0xc6cf9480 r6 = 0xc6cfb9f0 r7 = 0x00000000 r8 = 0x00000000 r9 = 0x00000000 sleepq_wait() at sleepq_wait+0x38 pc = 0xc2204a94 lr = 0xc21b6db4 (_sleep+0x470) sp = 0xe1ddfd88 fp = 0xe1ddfde8 r4 = 0xc6cfb9f0 r5 = 0xc6cf9480 --More-- r6 = 0x00000000 r10 = 0xc6cf9498 _sleep() at _sleep+0x470 pc = 0xc21b6db4 lr = 0xc2209544 (taskqueue_thread_loop+0x1d8) sp = 0xe1ddfdf0 fp = 0xe1ddfe30 r4 = 0xc6cf9480 r5 = 0xc6cf9498 r6 = 0xc24d6637 r7 = 0x00000000 r8 = 0x00000100 r9 = 0xc25d7930 r10 = 0xc25d86dc taskqueue_thread_loop() at taskqueue_thread_loop+0x1d8 pc = 0xc2209544 lr = 0xc216c968 (fork_exit+0xa4) sp = 0xe1ddfe38 fp = 0xe1ddfe50 r4 = 0xc6cfb9f0 r5 = 0xc25d75a8 r6 = 0xc220936c r7 = 0xc25ae328 r8 = 0xe1ddfe58 r10 = 0xc25d86dc fork_exit() at fork_exit+0xa4 pc = 0xc216c968 lr = 0xc24838b0 (swi_exit) sp = 0xe1ddfe58 fp = 0x00000000 r4 = 0xc220936c r5 = 0xc25ae328 r6 = 0xc6c5a9f0 r7 = 0x7ffb6c1f r8 = 0xc25cd790 r10 = 0xc25d86dc --More-- swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xe1ddfe58 fp = 0x00000000 db> show reg spsr 0x60000113 r0 0xc73bd570 _edata+0x10 r1 0xc73b5065 $d.20 r2 0 r3 0 r4 0xc73bd3ac _MergedGlobals+0x6c r5 0xc73bd3b0 _MergedGlobals+0x70 r6 0xc73bd3b0 _MergedGlobals+0x70 r7 0x87 $d.0+0x5 r8 0xc2596af4 vfsconf r9 0xc25d8918 vfsconf_sx+0x10 r10 0xc73bd340 _MergedGlobals r11 0xfa936870 r12 0xc73c4d60 _end+0x77e4 usr_sp 0xbfbffc08 usr_lr 0x23160 svc_sp 0xfa936868 svc_lr 0xc73b43d4 fdesc_init+0x20 pc 0 und_sp 0xc2710000 --More-- abt_sp 0xc270c000 irq_sp 0xc2708000 0: address 0 is invalid *** error reading from address 0 *** KDB: reentering KDB: stack backtrace: db_trace_self() at db_trace_self pc = 0xc2482298 lr = 0xc2044480 (db_trace_self_wrapper+0x30) sp = 0xfa936280 fp = 0xfa936398 r10 = 0xc24be49c db_trace_self_wrapper() at db_trace_self_wrapper+0x30 pc = 0xc2044480 lr = 0xc21f3b8c (kdb_reenter+0x74) sp = 0xfa9363a0 fp = 0xfa9363a8 r4 = 0xc25cda00 r5 = 0xc25cd9e4 r6 = 0xfa9363b0 r7 = 0x00000000 kdb_reenter() at kdb_reenter+0x74 pc = 0xc21f3b8c lr = 0xc2040b7c (db_get_value+0x44) sp = 0xfa9363b0 fp = 0xfa9363c8 r4 = 0x00000004 r5 = 0x00000000 db_get_value() at db_get_value+0x44 pc = 0xc2040b7c lr = 0xc2482824 (disasm+0x20) sp = 0xfa9363d0 fp = 0xfa9364b8 --More-- r4 = 0xc25a6bc0 r5 = 0x00000000 r6 = 0xfa9364c0 r7 = 0xc24dfb1f disasm() at disasm+0x20 pc = 0xc2482824 lr = 0xc2044cfc (db_show_regs+0x104) sp = 0xfa9364c0 fp = 0xfa9364e8 r4 = 0xc25a6bc0 r5 = 0xfa9364c8 r6 = 0xfa9364c0 r7 = 0xc24dfb1f r8 = 0xc24ce929 r9 = 0xfa9364c4 r10 = 0xc25a6bc0 db_show_regs() at db_show_regs+0x104 pc = 0xc2044cfc lr = 0xc2041db8 (db_command+0x388) sp = 0xfa9364f0 fp = 0xfa936590 r4 = 0x00000000 r5 = 0x00000000 r6 = 0x00000000 r7 = 0xc2044bf8 r8 = 0x00000001 r9 = 0xc2579248 r10 = 0xc25d6970 db_command() at db_command+0x388 pc = 0xc2041db8 lr = 0xc2041a20 (db_command_loop+0x74) sp = 0xfa936598 fp = 0xfa9365a8 r4 = 0xc24ce3e7 r5 = 0xc24dfb1f --More-- r6 = 0xc25d695c r7 = 0xfa9367d8 r8 = 0xc25cd9e0 r9 = 0xc2579794 r10 = 0xc25cd9e4 db_command_loop() at db_command_loop+0x74 pc = 0xc2041a20 lr = 0xc20445e4 (db_trap+0x108) sp = 0xfa9365b0 fp = 0xfa9366c8 r4 = 0x00000000 r5 = 0xfa9365b4 r6 = 0xc25cda08 r10 = 0xc25cd9e4 db_trap() at db_trap+0x108 pc = 0xc20445e4 lr = 0xc21f3f90 (kdb_trap+0x184) sp = 0xfa9366d0 fp = 0xfa9366f8 r4 = 0x00000000 r5 = 0x00000007 r6 = 0xc25cda08 r7 = 0xfa9367d8 kdb_trap() at kdb_trap+0x184 pc = 0xc21f3f90 lr = 0xc249ba40 (abort_fatal+0x1d4) sp = 0xfa936700 fp = 0xfa936720 r4 = 0xfa9367d8 r5 = 0x00000013 r6 = 0x00000000 r7 = 0x00000007 r8 = 0x00000007 r9 = 0xc72b7000 r10 = 0x00000013 --More-- abort_fatal() at abort_fatal+0x1d4 pc = 0xc249ba40 lr = 0xc249b79c (abort_handler+0x62c) sp = 0xfa936728 fp = 0xfa9367d0 r4 = 0xfa9367d8 r5 = 0x00000001 r6 = 0x00000007 r7 = 0x00000007 r8 = 0x00000000 r10 = 0x00000013 abort_handler() at abort_handler+0x62c pc = 0xc249b79c lr = 0xc2483920 (exception_exit) sp = 0xfa9367d8 fp = 0xfa936870 r4 = 0xc73bd3ac r5 = 0xc73bd3b0 r6 = 0xc73bd3b0 r7 = 0x00000087 r8 = 0xc2596af4 r9 = 0xc25d8918 r10 = 0xc73bd340 exception_exit() at exception_exit pc = 0xc2483920 lr = 0xc73b43d4 (fdesc_init+0x20) sp = 0xfa936868 fp = 0xfa936870 r0 = 0xc73bd570 r1 = 0xc73b5065 r2 = 0x00000000 r3 = 0x00000000 r4 = 0xc73bd3ac r5 = 0xc73bd3b0 r6 = 0xc73bd3b0 r7 = 0x00000087 --More-- r8 = 0xc2596af4 r9 = 0xc25d8918 r10 = 0xc73bd340 r12 = 0xc73c4d60 fdesc_init() at fdesc_init+0x20 pc = 0xc73b43d4 lr = 0xc226554c (vfs_modevent+0x618) sp = 0xfa936878 fp = 0xfa9368a8 r4 = 0xc73bd3ac r10 = 0xc73bd340 vfs_modevent() at vfs_modevent+0x618 pc = 0xc226554c lr = 0xc2190328 (module_register_init+0x1fc) sp = 0xfa9368b0 fp = 0xfa9368e0 r4 = 0xc25d7f48 r5 = 0xc73b50e4 r6 = 0xc70ea480 r7 = 0xc73b5008 r8 = 0xc25d7f70 r9 = 0xc25be378 module_register_init() at module_register_init+0x1fc pc = 0xc2190328 lr = 0xc2181e4c (linker_load_module+0xcb8) sp = 0xfa9368e8 fp = 0xfa936b40 r4 = 0xc25d7f70 r5 = 0xc73b50e4 r6 = 0xc25bcec0 r7 = 0xc73b50e4 r8 = 0xc70ea480 r9 = 0xc25bce90 r10 = 0xc711d600 linker_load_module() at linker_load_module+0xcb8 --More-- pc = 0xc2181e4c lr = 0xc2183d90 (kern_kldload+0x128) sp = 0xfa936b48 fp = 0xfa936b78 r4 = 0xfa936b84 r5 = 0xc70d47e0 r6 = 0x00000000 r7 = 0x00000001 r8 = 0xc25bce90 r9 = 0xc25bcec0 r10 = 0xc72b7000 kern_kldload() at kern_kldload+0x128 pc = 0xc2183d90 lr = 0xc2264ed8 (vfs_byname_kld+0x34) sp = 0xfa936b80 fp = 0xfa936b98 r4 = 0xfa936be4 r5 = 0xc72b7000 r6 = 0xc70d47e0 r7 = 0x00000000 r8 = 0xc70d4970 r9 = 0x00000000 vfs_byname_kld() at vfs_byname_kld+0x34 pc = 0xc2264ed8 lr = 0xc22681e8 (vfs_donmount+0x990) sp = 0xfa936ba0 fp = 0xfa936db8 r4 = 0x00000000 r5 = 0x000000ff r6 = 0xc2596be0 r7 = 0x00000000 vfs_donmount() at vfs_donmount+0x990 pc = 0xc22681e8 lr = 0xc2267838 (sys_nmount+0x64) sp = 0xfa936dc0 fp = 0xfa936dd8 --More-- r4 = 0xc72b7000 r5 = 0x00000000 r6 = 0x00000000 r7 = 0x00000000 r8 = 0xfa936df0 r9 = 0x00000000 r10 = 0xc72a86f0 sys_nmount() at sys_nmount+0x64 pc = 0xc2267838 lr = 0xc249a948 (swi_handler+0x4b8) sp = 0xfa936de0 fp = 0xfa936e50 r4 = 0xc72b7000 r5 = 0xbfbff394 r6 = 0x60000013 r10 = 0xc72a86f0 swi_handler() at swi_handler+0x4b8 pc = 0xc249a948 lr = 0xc24838b0 (swi_exit) sp = 0xfa936e58 fp = 0xbfbff3b8 r4 = 0x2081c198 r5 = 0xbfbff394 r6 = 0xbfbff390 r7 = 0x0000017a r8 = 0x00000000 r9 = 0x00014708 r10 = 0x000155c0 swi_exit() at swi_exit pc = 0xc24838b0 lr = 0xc24838b0 (swi_exit) sp = 0xfa936e58 fp = 0xbfbff3b8 db> root@devel:/usr/local/DEVEL/LOG # ^Dexit Script done on Sat Jun 20 09:51:16 2015 --Multipart=_Sat__20_Jun_2015_12_24_44_+0000_=yLux8gU0=dJ8=59-- From owner-freebsd-arm@FreeBSD.ORG Sat Jun 20 12:46:38 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1E7E5B8F for ; Sat, 20 Jun 2015 12:46:38 +0000 (UTC) (envelope-from usenet@ulrich-grey.de) Received: from mo6-p00-ob.smtp.rzone.de (mo6-p00-ob.smtp.rzone.de [IPv6:2a01:238:20a:202:5300::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.smtp.rzone.de", Issuer "TeleSec ServerPass DE-2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AC6E0FC0 for ; Sat, 20 Jun 2015 12:46:37 +0000 (UTC) (envelope-from usenet@ulrich-grey.de) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; t=1434804393; l=473; s=domk; d=ulrich-grey.de; h=Content-Transfer-Encoding:Content-Type:Mime-Version:References: In-Reply-To:Subject:To:From:Date; bh=8io3uP+I1C9IrrLxaD3X4fDy1BYd8vLbLG3liJH00J0=; b=eyfaE0LljhECC31U6NbIcixRKYcoUXU9edRvyQQzHgLqU2r+ucoHlo8vfxGx5Vu0BUH 0qI8IkRiBaNp9imNHT0KQqKUjstFRlVUuJe2gXmCJyqOHDS2cf+XXn7n2A65rVGk04IZE RE7uCxE8HIQYe10kERJHIM3X/kue6pm9SJk= X-RZG-AUTH: :OX8Be0W8W+pMC3rDLL/lo2xV/LZTbZkYhOcjg8suic3iYr/B8J9Lzp3TJg49sMv/e26f X-RZG-CLASS-ID: mo00 Received: from quad (p54869E86.dip0.t-ipconnect.de [84.134.158.134]) by smtp.strato.de (RZmta 37.7 DYNA|AUTH) with ESMTPSA id K01e1ar5KCkXVyH (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (curve X9_62_prime256v1 with 256 ECDH bits, eq. 3072 bits RSA)) (Client did not present a certificate) for ; Sat, 20 Jun 2015 14:46:33 +0200 (CEST) Date: Sat, 20 Jun 2015 12:46:32 +0000 From: Ulrich Grey To: freebsd-arm@freebsd.org Subject: Re: Wandboard-Quad: ffec freezes system Message-Id: <20150620124632.3b74d7b0c61f484ce16c039f@ulrich-grey.de> In-Reply-To: <20150617183051.5580fcb969661808969ec17a@ulrich-grey.de> References: <20150617183051.5580fcb969661808969ec17a@ulrich-grey.de> Organization: - X-Mailer: Sylpheed 3.4.2 (GTK+ 2.24.25; armv6-portbld-freebsd11.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Jun 2015 12:46:38 -0000 On Wed, 17 Jun 2015 18:30:51 +0000 Ulrich Grey wrote: > I have installed this snapshot image on my Wandboard-Quad: > > FreeBSD-11.0-CURRENT-arm-armv6-WANDBOARD-20150601-r283896.img > > If I use ffec (portsnap, ping ...), the system freezes immediately. > > Now I use an usb ethernet device (axge driver, ue0) and there are no problems. After some hours of compiling, the system freezes again. It is not possible to break to debugger. From owner-freebsd-arm@FreeBSD.ORG Sat Jun 20 15:14:32 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9D227B6 for ; Sat, 20 Jun 2015 15:14:32 +0000 (UTC) (envelope-from herbert@oslo.ath.cx) Received: from oslo.ath.cx (oslo.ath.cx [IPv6:2a01:4f8:200:42e4::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "oslo.ath.cx", Issuer "oslo.ath.cx" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id E5547888 for ; Sat, 20 Jun 2015 15:14:31 +0000 (UTC) (envelope-from herbert@oslo.ath.cx) Received: by oslo.ath.cx (OpenSMTPD) with ESMTP id 635b2997; Sat, 20 Jun 2015 17:14:27 +0200 (CEST) Date: Sat, 20 Jun 2015 17:14:27 +0200 From: "Herbert J. Skuhra" To: =?iso-8859-1?Q?Jo=E3o?= Bolila Cc: freebsd-arm Subject: Re: rpi2 binary image passwd Message-ID: <20150620151427.GA35588@oslo.ath.cx> References: <14D1E8BD-A61A-4604-A828-389DA07A68BD@bolila.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <14D1E8BD-A61A-4604-A828-389DA07A68BD@bolila.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Jun 2015 15:14:32 -0000 On Sat, Jun 20, 2015 at 09:00:25AM +0100, João Bolila wrote: > Hi, > > what is the “default” password on the Rpi2 images available on: > > ftp://ftp.freebsd.org/pub/FreeBSD/snapshots/arm/armv6/ISO-IMAGES/11.0/ > > I have tried both images, and I can't find it, not even here https://wiki.freebsd.org/FreeBSD/arm/Raspberry%20Pi > > (and empty password doesn’t work, as well) Try root/root or freebsd/freebsd. -- Herbert From owner-freebsd-arm@FreeBSD.ORG Sat Jun 20 16:31:00 2015 Return-Path: Delivered-To: freebsd-arm@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2370827E for ; Sat, 20 Jun 2015 16:31:00 +0000 (UTC) (envelope-from jungleboogie0@gmail.com) Received: from mail-ie0-x234.google.com (mail-ie0-x234.google.com [IPv6:2607:f8b0:4001:c03::234]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E3077BEC for ; Sat, 20 Jun 2015 16:30:59 +0000 (UTC) (envelope-from jungleboogie0@gmail.com) Received: by iebmu5 with SMTP id mu5so91980713ieb.1 for ; Sat, 20 Jun 2015 09:30:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=EXEWdQ9dTvK0TAcoPYtBX8hNlwhrO42VlY61+lf1+fs=; b=GG4OysqNU/UGyeoHvPr+uN1SPJ+R3UAmgER3hSozP0+eUl5e4nzJkxJFNbBftSu9O/ FzbMNYxJKHKosYQK/pyDxpmMes/onNgTZgsg2C4RPsDlSCqRxZ+7wJ/m/Waa7wkaS4zC /cN8p9OwC/SyNJMpHeXEfiEgU0pM150C+/OnFlPVPOf6TAAevQcGx0rxEbEg73SDba05 3427owIVw0qDUNQ7lnaSYC9JCsxexlNoOvoaHJsK2+7oQogORknwGUgoWR+eyOiZELUR C1gFODdR4x6MIfgDYH/YwQ4XaQyrpyiGVKcGSNTsDbP7/u6FBvOHCunKXnqT5xi9tDlS V2nA== MIME-Version: 1.0 X-Received: by 10.107.168.150 with SMTP id e22mr24572852ioj.9.1434817859281; Sat, 20 Jun 2015 09:30:59 -0700 (PDT) Received: by 10.79.111.18 with HTTP; Sat, 20 Jun 2015 09:30:59 -0700 (PDT) In-Reply-To: <14D1E8BD-A61A-4604-A828-389DA07A68BD@bolila.com> References: <14D1E8BD-A61A-4604-A828-389DA07A68BD@bolila.com> Date: Sat, 20 Jun 2015 09:30:59 -0700 Message-ID: Subject: Re: rpi2 binary image passwd From: jungle Boogie To: =?UTF-8?B?Sm/Do28gQm9saWxh?= Cc: freebsd-arm Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Jun 2015 16:31:00 -0000 On 20 June 2015 at 01:00, Jo=C3=A3o Bolila wrote: > what is the =E2=80=9Cdefault=E2=80=9D password on the Rpi2 images availab= le on: ssh MAY be on my default but root over ssh is disabled so try using console access. --=20 ------- inum: 883510009027723 sip: jungleboogie@sip2sip.info xmpp: jungle-boogie@jit.si