[beagleboard] Re: eth0 mysteriously stops working

2016-10-20 Thread William Hermans
Sorry I missed putting the decompile step in my workflow. This is the very 
next step that is used after making a copy of the board file form the 
/boot/dtbs// directory:
dtc -I dtb -O dts -o am335x-boneblack-emmc-overlay.dts am335x-boneblack-emmc
-overlay.dtb



On Tuesday, October 18, 2016 at 8:41:44 PM UTC-7, William Hermans wrote:
>
> I had a board a few days ago that just stopped working as far as ssh went. 
> So, I checked the LEDs on my GbE switch, and the lights were not lit. 
> Checking further, I found that the LEDs on the beaglebone were also not lit.
>
> So I disconnected the ethernet jack on both ends and reseated. Nothing. 
> The ethernet did not start working again until I rebooted the board, by 
> physically pressing the rest button on the board.
>
> I was curious if anyone else had experienced this same thing. This, for me 
> has actually happened only once. The board this happened to was a 
> Beaglebone green, running from the eMMC. Currently I'm running from sdcard 
> but . . .
> william@beaglebone:~$ sudo mount /dev/mmcblk1p1 /media/rootfs/
> william@beaglebone:~$ cd /media/rootfs/
> william@beaglebone:/media/rootfs$ cat etc/dogtag
> BeagleBoard.org Debian Image 2016-06-19
> william@beaglebone:/media/rootfs$ ls boot/ |grep init
> initrd.img-4.4.12-ti-r31
>
>
>
> grepping through the various files in /var/log shows that everything was 
> working fine as far as I can tell. No error messages that stand out for 
> 'net' or 'eth0'. I've also talked with a person I know who has experienced 
> this them self. Except for them, it has happened more than once, including 
> with a 3.8.x kernel as well.
>
> As far as when this happened to me personally, The board was just idling 
> for several days(5 - 6 days ) when I needed to get some information from 
> the board, and not response via ssh.
>

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/1e61524b-c5d5-4cdb-b8bd-4079c7c7ba50%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: eth0 mysteriously stops working

2016-10-20 Thread William Hermans
Ok,I had to modify my workflow, but I do believe I got the changes put into 
place. Not sure why Robert's way was not working, but I'm used to thinking 
outside the box, or looking at multiple ways to achieve the same results . 
. .

You board file name, and kernel version will depend on which board file you 
need to use, and which kernel you're running . . .

william@beaglebone:~/dev$ cp /boot/dtbs/4.1.34-bone-rt-r24/am335x-boneblack-
emmc-overlay.dtb .


* Search for "sleep"*

* Line 810-814 for me, remove:*

 cpsw_sleep {
pinctrl-single,pins = <0x108 0x27 0x10c 0x27 0x110 
0x27 0x114 0x27 0x118 0x27 0x11c 0x27 0x120 0x27 0x124 0x27 0x128 0x27 0x12c 
0x27 0x130 0x27 0x134 0x27 0x138 0x27 0x13c 0x27 0x140 0x27>;
linux,phandle = <0x37>;
phandle = <0x37>;
};



*line 816-820 remove:*

davinci_mdio_sleep {
pinctrl-single,pins = <0x148 0x27 0x14c 0x27>;
linux,phandle = <0x39>;
phandle = <0x39>;
};


*Line 1827 change:*
pinctrl-names = "default", "sleep";



*to:*
pinctrl-names = "default";



*Line 1841 change:*
pinctrl-names = "default", "sleep";



*to:*
pinctrl-names = "default";



*Line 2165 delete this whole line:*
cpsw_sleep = "/ocp/l4_wkup@44c0/scm@21/pinmux@800/cpsw_sleep";



*Line 2166 delete this whole line:*
davinci_mdio_sleep = 
"/ocp/l4_wkup@44c0/scm@21/pinmux@800/davinci_mdio_sleep";



*Then save, and exit the file. After that rname the old board file:*
william@beaglebone:~/dev$ mv am335x-boneblack-emmc-overlay.dtb am335x-
boneblack-emmc-overlay.dtb.old



*Now compile the newly edited source file back into the original board file 
name / extension:*
william@beaglebone:~/dev$ dtc -I dts -O dtb -o am335x-boneblack-emmc-overlay
.dtb am335x-boneblack-emmc-overlay.dts



*For convience, since I use an NFS share to do most of my work on, I prefer 
to move both the new dtb, and old dtb to the destination:*
william@beaglebone:~/dev$ sudo cp am335x-boneblack-emmc-overlay.dtb* /boot/
dtbs/4.1.34-bone-rt-r24/



*Double check:*
william@beaglebone:~/dev$ ls /boot/dtbs/4.1.34-bone-rt-r24/ |grep emmc
am335x-boneblack-emmc-overlay.dtb
am335x-boneblack-emmc-overlay.dtb.old


*Reboot:*
william@beaglebone:~/dev$ sudo reboot


Now do keep in mind. Just because I'm calling out line numbers here does 
not mean they will be the same for you. But if you use a good text editor, 
you can search for "sleep", and should only find these 6 occurrences in 
your decompiled source file. With that said, always double check to make 
sure what you're deleting / changing, is actually what needs to be changed. 

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/996530c3-185f-4260-9585-7b170396ee58%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Changing SPI0 Clock Rate

2016-10-20 Thread William Hermans
On Thu, Oct 20, 2016 at 8:56 PM, George Rung  wrote:

>
> I am able to get *SPI0 *working on the BeagleBone Black by using only
> *config-pin* commands:
>
> config-pin P9_17 spi
> config-pin P9_18 spi
> config-pin P9_21 spi
> config-pin P9_22 spi
>
> Then writing to */dev/spidev1.0 *causes data to come out the pins P9_18
> (data) and P9_22 (clock).
>
> Note that searching for how to enable SPI on the BeagleBone returns
> tutorials that all involve *"device trees"* or a *"cape manager"*.  None
> of this was necessary for me to get SPI working.  I assume they used to be
> required at some point in the past.  I simply set the pins to SPI and it
> works.
>

Actually, device tree file(s) were involved, you just did not realize it.
By using config-pin, you're using one of the universal IO device tree
overlays.

>
> Now I'd like to change some SPI settings, like the clock rate.  It seems
> the hardware has a frequency divider that can be set to change the SPI
> clock rate.  What is the clock rate by default?  How can I change it?
> Ideally I'd like to change it by command with the BeagleBone running,
> hopefully no recompiling or rebooting required every time I make a change.
>
> How should I go about this?
>
> Note that I'm running the image
> *"bone-debian-8.6-iot-armhf-2016-10-16-4gb.img.xz"* found here:
>
> 
> https://rcn-ee.com/rootfs/bb.org/testing/2016-10-16/iot/
>

So, I do not really know much about the SPI hardware per se. However, I do
know that if you check an overlay file for SPI, say :
https://github.com/beagleboard/bb.org-overlays/blob/master/src/arm/BB-SPIDEV0-00A0.dts#L63
Look at the highlighted line. If you're wanting to raise the frequency,
there is is. But except if you're wanting to use a universal IO overlay,
which I completely understand. You'll have to edit the file that is
preloaded at boot, *or* the overlay file that is loaded when you invoke the
config-pin script.

As far as the clock, and divider . . . Well as I recall the clock is 48Mhz,
which means if the frequency is 16Mhz, the divider is 3x. Anyway, as I said
I really do not know the SPI hardware well. SO take what I say with a grain
of salt. As what I'm saying concerning the clock and divider is going by
memory. Where I've never used the hardware, and my memory is sometimes less
than perfect.

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/CALHSORrNenkwJoD3LOZKL9cYcPiVTNoO_bt%2BeXR_zD%3DYCJgcYA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Changing SPI0 Clock Rate

2016-10-20 Thread George Rung

I am able to get *SPI0 *working on the BeagleBone Black by using only 
*config-pin* commands:

config-pin P9_17 spi
config-pin P9_18 spi
config-pin P9_21 spi
config-pin P9_22 spi

Then writing to */dev/spidev1.0 *causes data to come out the pins P9_18 
(data) and P9_22 (clock).

Note that searching for how to enable SPI on the BeagleBone returns 
tutorials that all involve *"device trees"* or a *"cape manager"*.  None of 
this was necessary for me to get SPI working.  I assume they used to be 
required at some point in the past.  I simply set the pins to SPI and it 
works.

Now I'd like to change some SPI settings, like the clock rate.  It seems 
the hardware has a frequency divider that can be set to change the SPI 
clock rate.  What is the clock rate by default?  How can I change it? 
 Ideally I'd like to change it by command with the BeagleBone running, 
hopefully no recompiling or rebooting required every time I make a change.

How should I go about this?

Note that I'm running the image 
*"bone-debian-8.6-iot-armhf-2016-10-16-4gb.img.xz"* found here:


https://rcn-ee.com/rootfs/bb.org/testing/2016-10-16/iot/

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/27c5885f-18fa-4864-8741-95c8bd6fcf21%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: eth0 mysteriously stops working

2016-10-20 Thread William Hermans
So after decompiling the two files and comparing with diff, then piping to
a file . . . the diff file is literally 2186 lines in length . . . wtf ?

On Thu, Oct 20, 2016 at 5:25 PM, William Hermans  wrote:

> So, at this point I think I'll have to decompile both board files, and
> then run diff to see what's different.
>
> On Wed, Oct 19, 2016 at 10:16 PM, William Hermans 
> wrote:
>
>> Overlay, meaning board file.
>>
>> On Wed, Oct 19, 2016 at 10:15 PM, William Hermans 
>> wrote:
>>
>>> Yeah I'm locked in a boot loop ending here:
>>>
>>> Starting kernel ...
>>>
>>> [3.341689] CPUidle arm: CPU 0 failed to init idle CPU ops
>>> [3.347892] omap_hsmmc 4806.mmc: unable to obtain RX DMA engine
>>> channel 3706465728
>>> [3.356275] omap_hsmmc 481d8000.mmc: unable to obtain RX DMA engine
>>> channel 3706465648
>>> [3.366324] wkup_m3_rproc 44d0.wkup_m3: Platform data missing!
>>> [3.374426] omap_voltage_late_init: Voltage driver support not added
>>> [3.381301] cpu cpu0: cpu0 clock notifier not ready, retry
>>> [3.482097] bone_capemgr bone_capemgr: Invalid signature ''
>>> at slot 0
>>> [3.489295] bone_capemgr bone_capemgr: slot #0: No cape found
>>> [3.548114] bone_capemgr bone_capemgr: slot #1: No cape found
>>> [3.608112] bone_capemgr bone_capemgr: slot #2: No cape found
>>> [3.668112] bone_capemgr bone_capemgr: slot #3: No cape found
>>> [3.675302] cpsw 4a10.ethernet: Missing rx_descs property in the
>>> DT.
>>> [3.682080] cpsw 4a10.ethernet: cpsw: platform data missing
>>> Loading, please wait...
>>>
>>> A few points of contention. Kernel is a the LTS 4.1.x*bone-rt* variant.
>>> Updated yesterday. Then the board is a beaglebone green, but I rebuilt
>>> am335x-boneblack-emmc-overlay.dtb. Which is the same overlay file I was
>>> loading previous to rebuilding.
>>>
>>> On Wed, Oct 19, 2016 at 11:27 AM, William Hermans 
>>> wrote:
>>>
 Thanks again Robert,

 So I'll have to download the overlay board file repo, edit, and then
 install but hummm. Been a while I need:

 ##BeagleBone Black: HDMI (Audio/Video) disabled:
 dtb=am335x-boneblack-emmc-overlay.dtb

 Which probably loads the common overlay file, so . ..yeah ok think I
 got it. Going to be busy today with other things( unavoidable ) so might be
 tomorrow before I can write back success in modifying the board file. After
 which I can hopefully get this modification out to be tested on multiple
 boards by this person I know.

 I'll post full instructions for others here, when I get the chance. SO
 others can test, and potentially fix the same issue if needed.

 On Wed, Oct 19, 2016 at 11:15 AM, Robert Nelson <
 robertcnel...@gmail.com> wrote:

> On Wed, Oct 19, 2016 at 1:09 PM, William Hermans 
> wrote:
> > Thanks Robert,
> >
> > I'll check that out, So when you sasy "remove the sleeps". I just
> delete
> > "sleep" from pinctrl-names = "default", "sleep"; or do I need to
> also remove
> > pinctrl-1 = <&cpsw_sleep>; as well ?
>
>
> Yeah, from:
>
> &mac {
> pinctrl-names = "default", "sleep";
> pinctrl-0 = <&cpsw_default>;
> pinctrl-1 = <&cpsw_sleep>;
> slaves = <1>;
> status = "okay";
> };
>
> &davinci_mdio {
> pinctrl-names = "default", "sleep";
> pinctrl-0 = <&davinci_mdio_default>;
> pinctrl-1 = <&davinci_mdio_sleep>;
> status = "okay";
> };
>
> to:
>
> &mac {
> pinctrl-names = "default";
> pinctrl-0 = <&cpsw_default>;
> slaves = <1>;
> status = "okay";
> };
>
> &davinci_mdio {
> pinctrl-names = "default";
> pinctrl-0 = <&davinci_mdio_default>;
> status = "okay";
> };
>
> Regards,
>
>
> --
> Robert Nelson
> https://rcn-ee.com/
>
> --
> For more options, visit http://beagleboard.org/discuss
> ---
> You received this message because you are subscribed to the Google
> Groups "BeagleBoard" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to beagleboard+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/beagleboard/CAOCHtYi7pEF_R
> uKLAvCh2ZiXuhnK-oggZykntXCND6FC8rQiyw%40mail.gmail.com.
> For more options, visit https://groups.google.com/d/optout.
>


>>>
>>
>

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/CALHSORq4z2QWFyLB7Qp3aEuRu-u_6zVDdC6XSQGXioQVVwiSKw%40mail.gmail.com.
F

Re: [beagleboard] x15....where is it?

2016-10-20 Thread Michel Catudal
Le 2016-10-20 à 19:20, Christopher Hansen a écrit :
> Mine order was shipped straight from the UK.  Total from the invoice was:
>
> GBP 192.68
>
> The website becomes: http://export.rsdelivers.com/  when I enter it.
>  
> Chris
>
>

Then I got screwed by their US company or RS violated their agreement with 
their US outfit. When I tried to order I was rerouted to 
https://www.alliedelec.com/
When I talk to the sales person he told me that RS UK outfit was not allowed to 
ship it directly to me and that I had to go thru them. So they charged me for 
shipping to the Texas and from Texas to Michigan plus other charges which 
totaled $313.26 plus
around $15 for shipping from Texas to Michigan

So was he lying? or did RS export violated an agreement with their US.

Here is the Email of the salesperson if you want to check or insult him.

jeremy.c...@alliedelec.com


He even assured me that it was a version that was FCC approved.


-- 
For Linux Software visit
http://www.suzielinux.com


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/31f789ba-8d7e-67c0-77c1-8b41dcbc46b8%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] How can i install Virtualbox on my Beaglebone black ? i am using beaglebone 7.9 wheezy version.

2016-10-20 Thread William Hermans
First, you're going to need the right software architecture, but as you've
already seen. I seriously doubt you're going to find an armhf ABI
compatible binary.

Then, even if you did find a compatible armhf binary, assuming virtualbox
could, or would run off such minimal resources. It would be so slow it
would drive most people insane . . .

On Thu, Oct 20, 2016 at 3:55 PM,  wrote:

> I have booted my beaglebone from Micro SD card of 32GB with debian 7.9
> wheezy version. 'Now I want to install Virtual box on my Beaglebone. i
> tried installing several virtualbox software. but it says Software
> Architecture doesnt match.
>
> Thank you in advance.
>
> --
> For more options, visit http://beagleboard.org/discuss
> ---
> You received this message because you are subscribed to the Google Groups
> "BeagleBoard" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to beagleboard+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/beagleboard/bafe42e3-897f-4e6d-8d73-559febb6f4b9%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/CALHSORrtcmKL-Bmn0hrfZn9iYfAwyEG5SLcOKq%3DgEJ1DXTn-%3Dw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: eth0 mysteriously stops working

2016-10-20 Thread William Hermans
So, at this point I think I'll have to decompile both board files, and then
run diff to see what's different.

On Wed, Oct 19, 2016 at 10:16 PM, William Hermans  wrote:

> Overlay, meaning board file.
>
> On Wed, Oct 19, 2016 at 10:15 PM, William Hermans 
> wrote:
>
>> Yeah I'm locked in a boot loop ending here:
>>
>> Starting kernel ...
>>
>> [3.341689] CPUidle arm: CPU 0 failed to init idle CPU ops
>> [3.347892] omap_hsmmc 4806.mmc: unable to obtain RX DMA engine
>> channel 3706465728
>> [3.356275] omap_hsmmc 481d8000.mmc: unable to obtain RX DMA engine
>> channel 3706465648
>> [3.366324] wkup_m3_rproc 44d0.wkup_m3: Platform data missing!
>> [3.374426] omap_voltage_late_init: Voltage driver support not added
>> [3.381301] cpu cpu0: cpu0 clock notifier not ready, retry
>> [3.482097] bone_capemgr bone_capemgr: Invalid signature '' at
>> slot 0
>> [3.489295] bone_capemgr bone_capemgr: slot #0: No cape found
>> [3.548114] bone_capemgr bone_capemgr: slot #1: No cape found
>> [3.608112] bone_capemgr bone_capemgr: slot #2: No cape found
>> [3.668112] bone_capemgr bone_capemgr: slot #3: No cape found
>> [3.675302] cpsw 4a10.ethernet: Missing rx_descs property in the
>> DT.
>> [3.682080] cpsw 4a10.ethernet: cpsw: platform data missing
>> Loading, please wait...
>>
>> A few points of contention. Kernel is a the LTS 4.1.x*bone-rt* variant.
>> Updated yesterday. Then the board is a beaglebone green, but I rebuilt
>> am335x-boneblack-emmc-overlay.dtb. Which is the same overlay file I was
>> loading previous to rebuilding.
>>
>> On Wed, Oct 19, 2016 at 11:27 AM, William Hermans 
>> wrote:
>>
>>> Thanks again Robert,
>>>
>>> So I'll have to download the overlay board file repo, edit, and then
>>> install but hummm. Been a while I need:
>>>
>>> ##BeagleBone Black: HDMI (Audio/Video) disabled:
>>> dtb=am335x-boneblack-emmc-overlay.dtb
>>>
>>> Which probably loads the common overlay file, so . ..yeah ok think I got
>>> it. Going to be busy today with other things( unavoidable ) so might be
>>> tomorrow before I can write back success in modifying the board file. After
>>> which I can hopefully get this modification out to be tested on multiple
>>> boards by this person I know.
>>>
>>> I'll post full instructions for others here, when I get the chance. SO
>>> others can test, and potentially fix the same issue if needed.
>>>
>>> On Wed, Oct 19, 2016 at 11:15 AM, Robert Nelson >> > wrote:
>>>
 On Wed, Oct 19, 2016 at 1:09 PM, William Hermans 
 wrote:
 > Thanks Robert,
 >
 > I'll check that out, So when you sasy "remove the sleeps". I just
 delete
 > "sleep" from pinctrl-names = "default", "sleep"; or do I need to also
 remove
 > pinctrl-1 = <&cpsw_sleep>; as well ?


 Yeah, from:

 &mac {
 pinctrl-names = "default", "sleep";
 pinctrl-0 = <&cpsw_default>;
 pinctrl-1 = <&cpsw_sleep>;
 slaves = <1>;
 status = "okay";
 };

 &davinci_mdio {
 pinctrl-names = "default", "sleep";
 pinctrl-0 = <&davinci_mdio_default>;
 pinctrl-1 = <&davinci_mdio_sleep>;
 status = "okay";
 };

 to:

 &mac {
 pinctrl-names = "default";
 pinctrl-0 = <&cpsw_default>;
 slaves = <1>;
 status = "okay";
 };

 &davinci_mdio {
 pinctrl-names = "default";
 pinctrl-0 = <&davinci_mdio_default>;
 status = "okay";
 };

 Regards,


 --
 Robert Nelson
 https://rcn-ee.com/

 --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google
 Groups "BeagleBoard" group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to beagleboard+unsubscr...@googlegroups.com.
 To view this discussion on the web visit https://groups.google.com/d/ms
 gid/beagleboard/CAOCHtYi7pEF_RuKLAvCh2ZiXuhnK-oggZykntXCND6F
 C8rQiyw%40mail.gmail.com.
 For more options, visit https://groups.google.com/d/optout.

>>>
>>>
>>
>

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/CALHSORrN2wqWGhGQFQSg45%3DowQU1JS-8K6CjFX7yC1xdG67PgA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] How can i install Virtualbox on my Beaglebone black ? i am using beaglebone 7.9 wheezy version.

2016-10-20 Thread sudarshan8304
I have booted my beaglebone from Micro SD card of 32GB with debian 7.9 
wheezy version. 'Now I want to install Virtual box on my Beaglebone. i 
tried installing several virtualbox software. but it says Software 
Architecture doesnt match.

Thank you in advance.

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/bafe42e3-897f-4e6d-8d73-559febb6f4b9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Can x15 sustain 1 Gbps Ethernet transfers?

2016-10-20 Thread Rick Mann
I'm curious, can the x15 sustain a large transfer at 1 Gbps? To/from memory is 
fine, so writing to Flash is not the constraining factor.

I'm interested in making a network speed test appliance.

-- 
Rick Mann
rm...@latencyzero.com


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/F313EAA3-31EE-490D-B2A5-558AFD6AE1B7%40latencyzero.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] x15....where is it?

2016-10-20 Thread Christopher Hansen
Mine order was shipped straight from the UK.  Total from the invoice was:

GBP 192.68

The website becomes: http://export.rsdelivers.com/  when I enter it.
 
Chris


On Thursday, October 20, 2016 at 4:14:04 PM UTC-7, Catudal Michel wrote:
>
> Le 2016-10-20 à 16:35, Christopher Hansen a écrit :
>
> That's really strange, because I successfully purchased a board from them. 
>  They shipped from UK to California. 
>
> I ordered from this site:
>
> www.rs-export.com
>
> Chris
>
>
>
> It brings us to their US outfit who order it from the UK and then send it 
> to us. It is not straight from the UK.
>
> How much did you pay for yours? Mine ended up close to $335
>
> It might have been cheaper for you if your ordered yours after me. At the 
> time they had no US stock and told me that the brits could not sell 
> directly since the USA market is reserved to them.
> He also told me that he was going to add it to their USA site.
>
> Michel
>
>
> -- 
> For Linux Software visithttp://www.suzielinux.com
>
>  

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/451c9f57-6f33-42a9-88d4-cfcb80ab7688%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] x15....where is it?

2016-10-20 Thread Michel Catudal

  
  
Le 2016-10-20 à 16:35, Christopher
  Hansen a écrit :


  That's really strange, because I successfully
purchased a board from them.  They shipped from UK to
California.


I ordered from this site:


www.rs-export.com


Chris



  


It brings us to their US outfit who order it from the UK and then
send it to us. It is not straight from the UK.

How much did you pay for yours? Mine ended up close to $335

It might have been cheaper for you if your ordered yours after me.
At the time they had no US stock and told me that the brits could
not sell directly since the USA market is reserved to them.
He also told me that he was going to add it to their USA site.

Michel


-- 
For Linux Software visit
http://www.suzielinux.com



  




-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups "BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/beagleboard/a640ccbd-85c2-4ba9-844c-9cd671e595b1%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] What is the latest BBGW image?

2016-10-20 Thread Robert Nelson
On Thu, Oct 20, 2016 at 4:11 PM, Robert Nelson  wrote:
> On Thu, Oct 20, 2016 at 3:35 PM, Guillaume Biton
>  wrote:
>> Hi,
>>
>> I really like the "console"versions of Debian for BeagleBone but when I
>> tried it on my BBGW and ran a ifconfig, there was no wlan in the list (just
>> usb and lo).
>> Could you detail just a bit how to install "bb-wl18xx-firmware" ?
>>
>> I have the latest console image
>> (bone-debian-8.6-console-armhf-2016-10-06-2gb) on a SD card and can boot on
>> it on my BBGW. I can ssh to it through usb or use FTDI but I I don't have
>> Internet access on it.
>
> I should probally just add bb-wl18xx-firmware deb package to the console. ;)
>
> Then you can use next Sunday's snapshot as is..

Opps, i'll need to patch around the bluez requirement:

https://github.com/rcn-ee/repos/blob/master/bb-wl18xx-firmware/suite/jessie/debian/control#L11

Otherwise that'll double the console size..

Regards,

-- 
Robert Nelson
https://rcn-ee.com/

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/CAOCHtYjP82amn6HY3BY5VogZ23XYsNfHqH4VWJ2SJJ1gM%3Db2Lg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] What is the latest BBGW image?

2016-10-20 Thread Robert Nelson
On Thu, Oct 20, 2016 at 3:35 PM, Guillaume Biton
 wrote:
> Hi,
>
> I really like the "console"versions of Debian for BeagleBone but when I
> tried it on my BBGW and ran a ifconfig, there was no wlan in the list (just
> usb and lo).
> Could you detail just a bit how to install "bb-wl18xx-firmware" ?
>
> I have the latest console image
> (bone-debian-8.6-console-armhf-2016-10-06-2gb) on a SD card and can boot on
> it on my BBGW. I can ssh to it through usb or use FTDI but I I don't have
> Internet access on it.

I should probally just add bb-wl18xx-firmware deb package to the console. ;)

Then you can use next Sunday's snapshot as is..

Regards,

-- 
Robert Nelson
https://rcn-ee.com/

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/CAOCHtYib60gDWZ5BRprE%2BE_eF7CTpgKOrE0XfsjFKFE2L%3DhD_w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] What is the latest BBGW image?

2016-10-20 Thread Guillaume Biton
Hi,

I really like the "console"versions of Debian for BeagleBone but when I 
tried it on my BBGW and ran a ifconfig, there was no wlan in the list (just 
usb and lo).
Could you detail just a bit how to install "bb-wl18xx-firmware" ?

I have the latest console image (
bone-debian-8.6-console-armhf-2016-10-06-2gb 
)
 
on a SD card and can boot on it on my BBGW. I can ssh to it through usb or 
use FTDI but I I don't have Internet access on it.

Thanks !

Le dimanche 3 juillet 2016 07:21:30 UTC+2, RobertCNelson a écrit :
>
> On Sat, Jul 2, 2016 at 10:11 PM, Stephane Charette 
> > wrote: 
> >>> cannot seem to find one. The most recent Ubuntu image I see is this: 
> >>> 
> >>> 
> >>> 
> http://rcn-ee.net/rootfs/2016-06-09/flasher/BBB-eMMC-flasher-ubuntu-16.04-console-armhf-2016-06-09-2gb.img.xz
>  
> >>> 
> >>> But from the name, this image seems to be for the BBB, not BBGW. 
> >> 
> >>It'll work fine for the bbgw, it's really for anything with an eMMC.. 
> > 
> > 
> > When I first tried it, I couldn't get the BBGW wifi working. Now that 
> I've 
> > got it working with the 
> BBGW-blank-debian-8.5-seeed-iot-armhf-2016-06-19-4gb 
> > image, I'll try my luck again with the Ubuntu image, since Ubuntu is 
> what I 
> > want to eventually run on these devices. If there is an extra trick or 
> > package needed to get wireless working with your latest Ubuntu image, 
> kindly 
> > point me to it. 
>
> Install, "bb-wl18xx-firmware"... 
>
> should get it working. 
>
> Regards, 
>
> -- 
> Robert Nelson 
> https://rcn-ee.com/ 
>

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/6ddc6981-d7b3-4c6b-8912-5a5cc7a8f44d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] x15....where is it?

2016-10-20 Thread David Culp
Chris is correct.  If you want to order from RS components you have to go 
through their export site. 

On Thursday, October 20, 2016 at 1:29:04 PM UTC-5, Catudal Michel wrote:
>
>
>
> Le samedi 20 août 2016 14:54:21 UTC-4, Christopher Hansen a écrit :
>>
>> I pinged RS and they do ship to US.  Here's what they told me:
>>
>> Thank you very much for your recent request.
>>
>>  
>>
>> Shipping and documentation charges will also be applied depending on the 
>> amount ordered.
>>
>>  
>>
>> RS Part – 887-4764
>>
>> Price - $252.29
>>
>> Delivery DHL Approx – $27.11
>>
>>  
>>
>> TOTAL APPROX - $279.40
>>
>>
> That is actually bullshit on their part. When I tried to order they said 
> that they only serve the UK market. When I talked to someone at the US 
> branch in Texas I was told that they are not allowed to sell to the USA 
> market. I ended up having them order it for me and the end cost was around 
> $335.
>
> I make good money so that didn't bother me that much. If you are on a low 
> budget arm yourself with patience, boards should be available in the USA 
> soon, most likely before Christmas.
>
> The rev A2 that they have works fine, as well as the Rev 3 boards that I 
> have at work. Now I just need to replace Debian with Gentoo. 
>
> I was puzzled to see no EGL support on debian, why???
>
> Michel
>

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/9b45574b-e335-46e1-ba1b-44197b66d718%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] x15....where is it?

2016-10-20 Thread Christopher Hansen
That's really strange, because I successfully purchased a board from them. 
 They shipped from UK to California.

I ordered from this site:

www.rs-export.com

Chris


On Thursday, October 20, 2016 at 11:29:04 AM UTC-7, Catudal Michel wrote:
>
>
>
> Le samedi 20 août 2016 14:54:21 UTC-4, Christopher Hansen a écrit :
>>
>> I pinged RS and they do ship to US.  Here's what they told me:
>>
>> Thank you very much for your recent request.
>>
>>  
>>
>> Shipping and documentation charges will also be applied depending on the 
>> amount ordered.
>>
>>  
>>
>> RS Part – 887-4764
>>
>> Price - $252.29
>>
>> Delivery DHL Approx – $27.11
>>
>>  
>>
>> TOTAL APPROX - $279.40
>>
>>
> That is actually bullshit on their part. When I tried to order they said 
> that they only serve the UK market. When I talked to someone at the US 
> branch in Texas I was told that they are not allowed to sell to the USA 
> market. I ended up having them order it for me and the end cost was around 
> $335.
>
> I make good money so that didn't bother me that much. If you are on a low 
> budget arm yourself with patience, boards should be available in the USA 
> soon, most likely before Christmas.
>
> The rev A2 that they have works fine, as well as the Rev 3 boards that I 
> have at work. Now I just need to replace Debian with Gentoo. 
>
> I was puzzled to see no EGL support on debian, why???
>
> Michel
>

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/19631f22-05ed-4403-9799-55a95613c0b8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Beaglebone USB connection Virual machine

2016-10-20 Thread Remy Donken

After the following commands i can't get a connection in Virtual machine.


   1. Rev C: Open the file /boot/uboot/uEnv.txt in an editor (vim/nano)
   2. Add the key "capemgr.enable_partno="
   3. Add the ports you want to enable, comma separated 
   (BB-UART1, BB-UART2. BB-UART4, BB-UART5)
   4. Reboot


In windows it is still working with Putty/SSH or webbrowser but in Virtual 
machine with ubuntu it doesn't start the FAT partion 
Also cant login over the webbrowser or SSH.

can someone help me?

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/6592efcd-2afa-4549-a56a-8020dfddc210%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] BBB can't connect over USB

2016-10-20 Thread Remy Donken
Hi,

Iḿ having some troubles with my beaglebone black.

It is running debian image 2014-04-23

It was working fine before but after i did the following commands i 
couldn't open my BBB anymore.

   1. Rev C: Open the file /boot/uboot/uEnv.txt in an editor (vim/nano)
   2. Add the key "capemgr.enable_partno="
   3. Add the ports you want to enable, comma separated 
   (BB-UART1, BB-UART2. BB-UART4, BB-UART5)
   4. Reboot

Im working in a virtual machine with ubuntu.


In windows I can open it in putty over SSH and run the programs on it. 

But in my virtual machine it cant open in the web browser or is responding 
to SSH login.



-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/c3785368-0d2a-4568-a54c-bfa50f821d3a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] x15....where is it?

2016-10-20 Thread Bill Mar
Special Computing has stepped up as lead US distributor offering both A2
and B1 versions plus related accessories.
https://specialcomp.com/beagleboard/x15.htm

Special Computing
1-480-818-5745

On Thu, Oct 20, 2016 at 11:29 AM, Catudal Michel 
wrote:

>
>
> Le samedi 20 août 2016 14:54:21 UTC-4, Christopher Hansen a écrit :
>>
>> I pinged RS and they do ship to US.  Here's what they told me:
>>
>> Thank you very much for your recent request.
>>
>>
>>
>> Shipping and documentation charges will also be applied depending on the
>> amount ordered.
>>
>>
>>
>> RS Part – 887-4764
>>
>> Price - $252.29
>>
>> Delivery DHL Approx – $27.11
>>
>>
>>
>> TOTAL APPROX - $279.40
>>
>>
> That is actually bullshit on their part. When I tried to order they said
> that they only serve the UK market. When I talked to someone at the US
> branch in Texas I was told that they are not allowed to sell to the USA
> market. I ended up having them order it for me and the end cost was around
> $335.
>
> I make good money so that didn't bother me that much. If you are on a low
> budget arm yourself with patience, boards should be available in the USA
> soon, most likely before Christmas.
>
> The rev A2 that they have works fine, as well as the Rev 3 boards that I
> have at work. Now I just need to replace Debian with Gentoo.
>
> I was puzzled to see no EGL support on debian, why???
>
> Michel
>
> --
> For more options, visit http://beagleboard.org/discuss
> ---
> You received this message because you are subscribed to the Google Groups
> "BeagleBoard" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to beagleboard+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/beagleboard/b0093ef7-1c7c-4cd5-8e17-d850d94b850a%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/CAMPEx0dMWiyRq9w%2BOrBf9zkRF%2BN_3citCSYCtg7kmXQNjAepnA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] x15....where is it?

2016-10-20 Thread Catudal Michel


Le samedi 20 août 2016 14:54:21 UTC-4, Christopher Hansen a écrit :
>
> I pinged RS and they do ship to US.  Here's what they told me:
>
> Thank you very much for your recent request.
>
>  
>
> Shipping and documentation charges will also be applied depending on the 
> amount ordered.
>
>  
>
> RS Part – 887-4764
>
> Price - $252.29
>
> Delivery DHL Approx – $27.11
>
>  
>
> TOTAL APPROX - $279.40
>
>
That is actually bullshit on their part. When I tried to order they said 
that they only serve the UK market. When I talked to someone at the US 
branch in Texas I was told that they are not allowed to sell to the USA 
market. I ended up having them order it for me and the end cost was around 
$335.

I make good money so that didn't bother me that much. If you are on a low 
budget arm yourself with patience, boards should be available in the USA 
soon, most likely before Christmas.

The rev A2 that they have works fine, as well as the Rev 3 boards that I 
have at work. Now I just need to replace Debian with Gentoo. 

I was puzzled to see no EGL support on debian, why???

Michel

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/b0093ef7-1c7c-4cd5-8e17-d850d94b850a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Problem booting on Beagleboard X15 Rev B1

2016-10-20 Thread Robert Nelson
On Thu, Oct 20, 2016 at 1:19 PM, Catudal Michel  wrote:
>
>
> I got two of the Beagleboard X15 Rev B1 and have not been able to boot the
> MicroSD TI Linux (generated by yocto) on it. The previous release with
> kernel 4.1 boots OK except that it is set in a low resolution, not the
> 1920x1080 expected resolution.
>
> I tried the same image on three rev A3 from TI and 1 rev A2 beagleboard X15,
> they all work as expected.
>
> If I replace u-boot from TI with the one from Beagleboard X15 I get a
> different error, log after the first log
>
> Here is the log
>
>
> U-Boot SPL 2016.05-00118-g797bc2f-dirty (Oct 13 2016 - 17:12:54)
> DRA752-GP ES1.1
> Trying to boot from MMC1
> reading args
> spl_load_image_fat_os: error reading image args, err - -1
> reading u-boot.img
> reading u-boot.img
> reading u-boot.img
> reading u-boot.img
>
>
> U-Boot 2016.05-00118-g797bc2f-dirty (Oct 13 2016 - 17:12:54 -0400)
>
> CPU  : DRA752-GP ES1.1
> Model: TI AM5728 BeagleBoard-X15
> Board: BeagleBoard X15 REV B.10
> DRAM:  2 GiB
> MMC:   no pinctrl for ddr50
> no pinctrl for sdr25
> no pinctrl for sdr12
> OMAP SD/MMC: 0, OMAP SD/MMC: 1
> reading uboot.env
>
> ** Unable to read "uboot.env" from mmc0:1 **
> Using default environment
>
> SCSI:  SATA link 0 timeout.
> AHCI 0001.0300 32 slots 1 ports 3 Gbps 0x1 impl SATA mode
> flags: 64bit ncq stag pm led clo only pmp pio slum part ccc apst
> scanning bus for devices...
> Found 0 device(s).
> Net:
> Warning: ethernet@48484000 using MAC address from ROM
> eth0: ethernet@48484000
> Hit any key to stop autoboot:  0
> switch to partitions #0, OK
> mmc0 is current device
> SD/MMC found on device 0
> reading boot.scr
> ** Unable to read file boot.scr **
> reading uEnv.txt
> 574 bytes read in 4 ms (139.6 KiB/s)
> Loaded env from uEnv.txt
> Importing environment from mmc0 ...
> switch to partitions #0, OK
> mmc0 is current device
> SD/MMC found on device 0
> 3576592 bytes read in 196 ms (17.4 MiB/s)
> 95697 bytes read in 59 ms (1.5 MiB/s)
> Booting from mmc0 ...
> Kernel image @ 0x8200 [ 0x00 - 0x369310 ]
> ## Flattened Device Tree blob at 8800
>Booting using the fdt blob at 0x8800
>Loading Device Tree to 8ffe5000, end 85d0 ... OK
>
> Starting kernel ...
>
> [0.00] Booting Linux on physical CPU 0x0
> [0.00] Initializing cgroup subsys cpuset
> [0.00] Initializing cgroup subsys cpu
> [0.00] Initializing cgroup subsys cpuacct
> [0.00] Linux version 4.4.19-gdb0b54cdad (michel@michel) (gcc version
> 5.3.1 20160113 (Linaro 6
> [0.00] CPU: ARMv7 Processor [412fc0f2] revision 2 (ARMv7),
> cr=30c5387d
> [0.00] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction
> cache
> [0.00] Machine model: TI AM5728 BeagleBoard-X15 rev B1
> [0.00] Reserved memory: created CMA memory pool at
> 0x9580, size 56 MiB
> [0.00] Reserved memory: initialized node ipu2_cma@9580,
> compatible id shared-dma-pool
> [0.00] Reserved memory: created CMA memory pool at
> 0x9900, size 64 MiB
> [0.00] Reserved memory: initialized node dsp1_cma@9900,
> compatible id shared-dma-pool
> [0.00] Reserved memory: created CMA memory pool at
> 0x9d00, size 32 MiB
> [0.00] Reserved memory: initialized node ipu1_cma@9d00,
> compatible id shared-dma-pool
> [0.00] Reserved memory: created CMA memory pool at
> 0x9f00, size 8 MiB
> [0.00] Reserved memory: initialized node dsp2_cma@9f00,
> compatible id shared-dma-pool
> [0.00] cma: Reserved 24 MiB at 0xfe40
> [0.00] Forcing write-allocate cache policy for SMP
> [0.00] Memory policy: Data cache writealloc
> [0.00] OMAP4: Map 0xffd0 to fe60 for dram barrier
> [0.00] DRA752 ES1.1
> [0.00] PERCPU: Embedded 11 pages/cpu @eed34000 s14848 r8192 d22016
> u45056
> [0.00] Built 1 zonelists in Zone order, mobility grouping on.  Total
> pages: 472640
> [0.00] Kernel command line: console=ttyO2,115200n8
> root=PARTUUID=78e8c3fb-02 rw rootfstype=et
> [0.00] PID hash table entries: 4096 (order: 2, 16384 bytes)
> [0.00] Dentry cache hash table entries: 131072 (order: 7, 524288
> bytes)
> [0.00] Inode-cache hash table entries: 65536 (order: 6, 262144
> bytes)
> [0.00] Memory: 1680668K/1897472K available (6535K kernel code, 358K
> rwdata, 2444K rodata, 33)
> [0.00] Virtual kernel memory layout:
> [0.00] vector  : 0x - 0x1000   (   4 kB)
> [0.00] fixmap  : 0xffc0 - 0xfff0   (3072 kB)
> [0.00] vmalloc : 0xf080 - 0xff80   ( 240 MB)
> [0.00] lowmem  : 0xc000 - 0xf000   ( 768 MB)
> [0.00] pkmap   : 0xbfe0 - 0xc000   (   2 MB)
> [0.00] modules : 0xbf00 - 0xbfe0   (  14 MB)
> [0.00]   .text : 0xc0008000 - 0xc08cd04c   (8981 kB)
> [0

Re: [beagleboard] Time beween pulses

2016-10-20 Thread Charles Steinkuehler
On 10/20/2016 12:44 PM, TJF wrote:
> 
> eCAP is the right module to use.
> 
> Am Donnerstag, 20. Oktober 2016 12:22:36 UTC+2 schrieb Charles Steinkuehler:
> 
> ... record the time it happened with up to 5 nS resolution.
> 
> The resolution is up to 10 nS (100 MHz clock), so the maximum frequency is 50 
> MHz.

Oops...I've been using the eCAP in the PRU sub-system, which does have
5 nS resolution (200 MHz clock).  I forgot the normal system timers
have a slower 100 MHz clock, so only 10 nS resolution.

Still *WAY* better than anything a software loop can mange!  ;-)

-- 
Charles Steinkuehler
char...@steinkuehler.net

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/f305e34a-d571-8078-776f-34451555999b%40steinkuehler.net.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Problem booting on Beagleboard X15 Rev B1

2016-10-20 Thread Catudal Michel


I got two of the Beagleboard X15 Rev B1 and have not been able to boot the 
MicroSD TI Linux (generated by yocto) on it. The previous release with 
kernel 4.1 boots OK except that it is set in a low resolution, not the 
1920x1080 expected resolution.

I tried the same image on three rev A3 from TI and 1 rev A2 beagleboard 
X15, they all work as expected.

If I replace u-boot from TI with the one from Beagleboard X15 I get a 
different error, log after the first log

Here is the log 


U-Boot SPL 2016.05-00118-g797bc2f-dirty (Oct 13 2016 - 17:12:54)
DRA752-GP ES1.1
Trying to boot from MMC1
reading args
spl_load_image_fat_os: error reading image args, err - -1
reading u-boot.img
reading u-boot.img
reading u-boot.img
reading u-boot.img


U-Boot 2016.05-00118-g797bc2f-dirty (Oct 13 2016 - 17:12:54 -0400)

CPU  : DRA752-GP ES1.1
Model: TI AM5728 BeagleBoard-X15
Board: BeagleBoard X15 REV B.10
DRAM:  2 GiB
MMC:   no pinctrl for ddr50
no pinctrl for sdr25
no pinctrl for sdr12
OMAP SD/MMC: 0, OMAP SD/MMC: 1
reading uboot.env

** Unable to read "uboot.env" from mmc0:1 **
Using default environment

SCSI:  SATA link 0 timeout.
AHCI 0001.0300 32 slots 1 ports 3 Gbps 0x1 impl SATA mode
flags: 64bit ncq stag pm led clo only pmp pio slum part ccc apst 
scanning bus for devices...
Found 0 device(s).
Net:   
Warning: ethernet@48484000 using MAC address from ROM
eth0: ethernet@48484000
Hit any key to stop autoboot:  0 
switch to partitions #0, OK
mmc0 is current device
SD/MMC found on device 0
reading boot.scr
** Unable to read file boot.scr **
reading uEnv.txt
574 bytes read in 4 ms (139.6 KiB/s)
Loaded env from uEnv.txt
Importing environment from mmc0 ...
switch to partitions #0, OK
mmc0 is current device
SD/MMC found on device 0
3576592 bytes read in 196 ms (17.4 MiB/s)
95697 bytes read in 59 ms (1.5 MiB/s)
Booting from mmc0 ...
Kernel image @ 0x8200 [ 0x00 - 0x369310 ]
## Flattened Device Tree blob at 8800
   Booting using the fdt blob at 0x8800
   Loading Device Tree to 8ffe5000, end 85d0 ... OK

Starting kernel ...

[0.00] Booting Linux on physical CPU 0x0
[0.00] Initializing cgroup subsys cpuset
[0.00] Initializing cgroup subsys cpu
[0.00] Initializing cgroup subsys cpuacct
[0.00] Linux version 4.4.19-gdb0b54cdad (michel@michel) (gcc 
version 5.3.1 20160113 (Linaro 6
[0.00] CPU: ARMv7 Processor [412fc0f2] revision 2 (ARMv7), 
cr=30c5387d
[0.00] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction 
cache
[0.00] Machine model: TI AM5728 BeagleBoard-X15 rev B1
[0.00] Reserved memory: created CMA memory pool at 
0x9580, size 56 MiB
[0.00] Reserved memory: initialized node ipu2_cma@9580, 
compatible id shared-dma-pool
[0.00] Reserved memory: created CMA memory pool at 
0x9900, size 64 MiB
[0.00] Reserved memory: initialized node dsp1_cma@9900, 
compatible id shared-dma-pool
[0.00] Reserved memory: created CMA memory pool at 
0x9d00, size 32 MiB
[0.00] Reserved memory: initialized node ipu1_cma@9d00, 
compatible id shared-dma-pool
[0.00] Reserved memory: created CMA memory pool at 
0x9f00, size 8 MiB
[0.00] Reserved memory: initialized node dsp2_cma@9f00, 
compatible id shared-dma-pool
[0.00] cma: Reserved 24 MiB at 0xfe40
[0.00] Forcing write-allocate cache policy for SMP
[0.00] Memory policy: Data cache writealloc
[0.00] OMAP4: Map 0xffd0 to fe60 for dram barrier
[0.00] DRA752 ES1.1
[0.00] PERCPU: Embedded 11 pages/cpu @eed34000 s14848 r8192 d22016 
u45056
[0.00] Built 1 zonelists in Zone order, mobility grouping on.  
Total pages: 472640
[0.00] Kernel command line: console=ttyO2,115200n8 
root=PARTUUID=78e8c3fb-02 rw rootfstype=et
[0.00] PID hash table entries: 4096 (order: 2, 16384 bytes)
[0.00] Dentry cache hash table entries: 131072 (order: 7, 524288 
bytes)
[0.00] Inode-cache hash table entries: 65536 (order: 6, 262144 
bytes)
[0.00] Memory: 1680668K/1897472K available (6535K kernel code, 358K 
rwdata, 2444K rodata, 33)
[0.00] Virtual kernel memory layout:
[0.00] vector  : 0x - 0x1000   (   4 kB)
[0.00] fixmap  : 0xffc0 - 0xfff0   (3072 kB)
[0.00] vmalloc : 0xf080 - 0xff80   ( 240 MB)
[0.00] lowmem  : 0xc000 - 0xf000   ( 768 MB)
[0.00] pkmap   : 0xbfe0 - 0xc000   (   2 MB)
[0.00] modules : 0xbf00 - 0xbfe0   (  14 MB)
[0.00]   .text : 0xc0008000 - 0xc08cd04c   (8981 kB)
[0.00]   .init : 0xc08ce000 - 0xc0922000   ( 336 kB)
[0.00]   .data : 0xc0922000 - 0xc097bab0   ( 359 kB)
[0.00].bss : 0xc097d000 - 0xc09c56c0   ( 290 kB)
[0.00] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[

Re: [beagleboard] Time beween pulses

2016-10-20 Thread TJF

eCAP is the right module to use.

Am Donnerstag, 20. Oktober 2016 12:22:36 UTC+2 schrieb Charles Steinkuehler:
>
> ... record the time it happened with up to 5 nS resolution.
>

The resolution is up to 10 nS (100 MHz clock), so the maximum frequency is 
50 MHz.

Find a code example (C syntax) in libpruio 
 package, documentation here 

.

Regards

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/f7a5b125-a027-4b1e-a89b-f6b9fe9683c2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: BeagleBoard-X15 production board update

2016-10-20 Thread Jason Kridner
I'll get that up on the X15 page later today as it is official.
On Thu, Oct 20, 2016 at 9:21 AM Specialcomp  wrote:

> Special Computing has stepped up as lead distributor offering both A2 and
> B1 versions plus related accesories.
> https://specialcomp.com/beagleboard/x15.htm
>
> Special Computing
> 1-480-818-5745
>
> --
> For more options, visit http://beagleboard.org/discuss
> ---
> You received this message because you are subscribed to the Google Groups
> "BeagleBoard" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to beagleboard+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/beagleboard/2cc53f09-dfed-451f-9e3c-4d571c7ca97a%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/CA%2BT6QPmLvujHMmwCbOc5PmCw9LjY-U9%3DQZ%3D0Yyg-MH4ya11wAw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Re: BeagleBoard-X15 production board update

2016-10-20 Thread Specialcomp
Special Computing has stepped up as lead distributor offering both A2 and 
B1 versions plus related accesories.
https://specialcomp.com/beagleboard/x15.htm

Special Computing
1-480-818-5745

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/2cc53f09-dfed-451f-9e3c-4d571c7ca97a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Re: Spam on the list

2016-10-20 Thread Daniel Escasa


Sabi ni Rick M noong Monday, October 3, 2016 at 2:46:47 PM UTC+8:
>
> There's so much spam lately. I know it's been discussed, but I didn't 
> really follow the threads. What puzzles me is that this is the only one of 
> the couple-dozen lists I'm on that gets spam. Is it because we insist on a 
> lenient post or subscribe policy? Perhaps we can tighten that up? 
>

I've set my delivery to abridged summary. That way, the spam doesn't wind 
up in my inbox, and it's also a neat way for me to skip posts I may not be 
interested in 

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/43557650-1b85-40c4-8872-2f82cf96c358%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Time beween pulses

2016-10-20 Thread Charles Steinkuehler
On 10/19/2016 6:50 PM, Arthur Caio wrote:
> Hello you all!
> 
> I need to calculate hot much time it takes for an input to go from LOW to 
> HIGH 
> and then to LOW again. Basically, I want to know the period of a square wave 
> generated by the LM555 timer.

Use an eCAP timer input pin.  That's what the eCAP capture-compare
timers are for...they capture the rising and/or falling edges of
signals and record the time it happened with up to 5 nS resolution.

-- 
Charles Steinkuehler
char...@steinkuehler.net

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/26356533-2770-59e7-f925-8421d4716428%40steinkuehler.net.
For more options, visit https://groups.google.com/d/optout.