bbb Internal ADC configuration settings?

886 views
Skip to first unread message

Audrey

unread,
Mar 6, 2016, 3:19:58 AM3/6/16
to BeagleBoard
Where can I find it (and set it)?

I'm right now trying to collect voltage readings using beaglebone's internal adc using a bash script and a while loop. Right now the data collection is clocking at around 33 microseconds, but I know that the internal adc should be able to collect data as fast as 5 microseconds. What should I do to make that happen? Is the problem with making while loops move faster, or is it about setting the adc configurations?

This is my bash script:

#!/bin/bash

#echo cape-bone-iio > /sys/devices/bone_capemgr.*/slots

t0=$(date +%s%6N)

while true; do
   t1=$(date +%s%6N)
   rawVal=$(cat /sys/bus/iio/devices/iio:device0/in_voltage0_raw)
   voltage=$(bc -l <<< $rawVal/4095*1.8)
   time=$(expr $t1 - $t0)
   echo $time $voltage
done

Dieter Wirz

unread,
Mar 6, 2016, 4:11:18 AM3/6/16
to beagl...@googlegroups.com
On Sun, Mar 6, 2016 at 9:19 AM, Audrey <ao...@smith.edu> wrote:
> Where can I find it (and set it)?
>
> I'm right now trying to collect voltage readings using beaglebone's internal
> adc using a bash script and a while loop. Right now the data collection is
> clocking at around 33 microseconds, but I know that the internal adc should
> be able to collect data as fast as 5 microseconds. What should I do to make
> that happen? Is the problem with making while loops move faster, or is it
> about setting the adc configurations?

Scrolling and calling external functions like 'date' in Terminal are
extremely time consuming. In order to know how fast adc read is you
might want to start without timer and print in you loop....
E.G:

#!/bin/bash
#echo cape-bone-iio > /sys/devices/bone_capemgr.*/slots
t0=$(date +%s%6N)
for ((i=0;i<1000;i++)); do
rawVal=$(cat /sys/bus/iio/devices/iio:device0/in_voltage0_raw)
# voltage=$(bc -l <<< $rawVal/4095*1.8)
done
t1=$(date +%s%6N)

John Syne

unread,
Mar 6, 2016, 2:15:17 PM3/6/16
to beagl...@googlegroups.com
That is because you are doing this wrong. Reading attributes via sysfs is slow and not meant for this purpose. With IIO, you enable a scan element (echo 1 > in_voltage0_en) and then you enable the buffer (echo 1 > buffer/enable)and then you read the values from /dev/iio:device0. In the BB-ADC overlay, you can modify the scan update time by modifying the Oversample (default is 16x), Open Delay time (default is 0x98) and sample time (default is 1). Now the IIO ADC driver captures samples using interrupts which isn’t ideal, but it will capture samples at a much higher rate than can be read from sysfs. If you want to capture at full speed, the driver needs to be updated to use DMA. 

Regards,
John




--
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...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Audrey

unread,
Mar 9, 2016, 12:51:26 AM3/9/16
to BeagleBoard
Thanks for the reply John. Could you perhaps explain how to modify the oversample, open delay time, and sample time in greater detail in the BB-ADC overlay? I do not see these variables in the dto in github (https://github.com/beagleboard/devicetree-source/blob/master/arch/arm/boot/dts/BB-ADC-00A0.dts). Also, what value can/should I change them to?

So just to clarify, reading from /sys/bus/iio/devices/iio:device0/in_voltage0_raw reads attributes using sysfs, while reading from /dev/iio:device0 reads the values using IIO? Also another conceptual question, can you explain what exactly is in_voltage0_raw and iio:device0? I know it's not a folder, and I interact with it by using cat. So is it just like a text file or something?

Thanks.

William Hermans

unread,
Mar 9, 2016, 1:21:18 AM3/9/16
to beagl...@googlegroups.com
Also another conceptual question, can you explain what exactly is in_voltage0_raw and iio:device0? I know it's not a folder, and I interact with it by using cat. So is it just like a text file or something?

in_voltage0_raw == one shot mode.

/dev/iio:device0 == continuous mode.

continuous mode is only really useful if you need more than 3-4 thousand samples a second. Otherwise one shot mode will possibly work just fine. It really how much you're trying to do all at once.

John Syne

unread,
Mar 9, 2016, 3:32:24 AM3/9/16
to beagl...@googlegroups.com
/*
 * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
/dts-v1/;
/plugin/;

/ {
compatible = "ti,beaglebone", "ti,beaglebone-black", "ti,beaglebone-green";

/* identification */
part-number = "BB-ADC";
version = "00A0";

/* state the resources this cape uses */
exclusive-use =
/* the pin header uses */
"P9.31", /* AIN0 */
"P9.40", /* AIN1 */
"P9.37", /* AIN2 */
"P9.38", /* AIN3 */
"P9.33", /* AIN4 */
"P9.36", /* AIN5 */
"P9.35", /* AIN6 */
/* the hardware ip uses */
"tscadc";

fragment@0 {
target = <&tscadc>;
__overlay__ {

status = "okay";
adc {
ti,adc-channels = <0 1 2 3 4 5 6>;
ti,chan-step-avg = <0x16 0x16 0x16 0x16 0x16 0x16 0x16>;
ti,chan-step-opendelay = <0x98 0x98 0x98 0x98 0x98 0x98 0x98>;
ti,chan-step-sampledelay = <0x0 0x0 0x0 0x0 0x0 0x0 0x0>;
};
};
};
};

Reading from /sys/bus/iio/devices/iio:device0/in_voltage0_raw is reading and attribute of the IIO driver. Reading from /dev/iio:device0 is reading from the same IIO driver, but in this case you are reading from the buffer which stores samples defined in the DT overlay above. 

Regards,
John



William Hermans

unread,
Mar 9, 2016, 3:48:09 AM3/9/16
to beagl...@googlegroups.com
what the hell does what you've said there even mean John ? voltagex_raw is one shot mode, iio:deviceX is continuous mode.

What you said above only serves to confuse the situation.

William Hermans

unread,
Mar 9, 2016, 3:59:15 AM3/9/16
to beagl...@googlegroups.com
Now if you want to convey more information that is actually *useful* to anyone reading this post. You can say that both voltageX_raw, and iio:deviceX are buffers.

With voltageX_raw being a single value buffer that gets updated only once every open() call on it's file descriptor.

Where iio:deviceX is a buffer, defined in size by the value set in /sys/bus/iio/devices/iio\:device0/buffer/length

More *useful* information can be found here: http://processors.wiki.ti.com/index.php/AM335x_ADC_Driver's_Guide. Then if you want even more information still, googling "iio" will produce a lot of information. Much of it not so useful. At least for our use case, the Beaglebone.

William Hermans

unread,
Mar 9, 2016, 4:04:21 AM3/9/16
to beagl...@googlegroups.com
John, also Audry asked what the values of that device tree fragment mean, not what the code was. As in Audry wants and explanation of the values:


ti,chan-step-avg = <0x16 0x16 0x16 0x16 0x16 0x16 0x16>;
ti,chan-step-opendelay = <0x98 0x98 0x98 0x98 0x98 0x98 0x98>;
ti,chan-step-sampledelay = <0x0 0x0 0x0 0x0 0x0 0x0 0x0>;

As far as I can tell. Quite honestly I could use that explanation myself. But step avg can be a value 0-16 if memory serves from reading the TRM, I'm just not clear exactly on what step avg actually does. . . . the explanation in the TRM is very jumbled / confusing.

TJF

unread,
Mar 9, 2016, 7:10:21 AM3/9/16
to BeagleBoard
Hi Audrey!

As mentioned above, a bash script is not feasible to handle ADC sampling at 200 kHz. Instead use a fast compiler language like C, C++ or FreeBASIC. The mentioned iio solutions require file access, which is also slow. In order to get direct access to the values, use libpruio. This library provides
  • full control over all ADC configuration registers
  • at run-time (no device tree changes / reboots)
  • sampling at full speed (200 kHz)
and some further features ... Check out the examples.

BR

John Syne

unread,
Mar 9, 2016, 12:53:24 PM3/9/16
to beagl...@googlegroups.com
William,

Rather you should not comment on my replies. If I say white, you say black even when you know you are wrong. If you look at the DT overlay the OP referenced, the additional entries don’t exist and that is why I posted an updated DT overlay. Reading in_voltagex_raw like your beaglebone-black-adc example was never meant for high speed capture. In fact you are just reading the same sample over and over again. Reading the buffer via /dev/iio:device0 is how you are supposed to read IIO ADC samples. If you want to understand oversampling, open delay, sample delay, then read the AM3358 TRM. 

Regards,
John



John Syne

unread,
Mar 9, 2016, 1:22:40 PM3/9/16
to beagl...@googlegroups.com

John Syne

unread,
Mar 9, 2016, 1:25:01 PM3/9/16
to beagl...@googlegroups.com
Look at AM3358 TRM Figure 12-3 on Page 1497

Regards,
John



William Hermans

unread,
Mar 9, 2016, 5:17:57 PM3/9/16
to beagl...@googlegroups.com
William,

Rather you should not comment on my replies. If I say white, you say black even when you know you are wrong.

That's funny I was thinking the same, except your answer is wrong.

If you look at the DT overlay the OP referenced, the additional entries don’t exist and that is why I posted an updated DT overlay. Reading in_voltagex_raw like your beaglebone-black-adc example was never meant for high speed capture. In fact you are just reading the same sample over and over again.

http://processors.wiki.ti.com/index.php/AM335x_ADC_Driver's_Guide#One-shot_Mode No one said anything about high speed capture. But have you actually ever used one shot mode ? It is *NOT* reading the same sample over and over again. But you do have to open / close the file every time you do want a new reading. That's how it's supposed to work.


Reading the buffer via /dev/iio:device0 is how you are supposed to read IIO ADC samples.

No one ask that question.


If you want to understand oversampling, open delay, sample delay, then read the AM3358 TRM.

So in other words, you do not know. But again, this is not a question i asked for myself. It's the question I interpreted Audry asking to which you completely blew off.

 

John Syne

unread,
Mar 10, 2016, 2:34:09 AM3/10/16
to beagl...@googlegroups.com
On Mar 9, 2016, at 2:17 PM, William Hermans <yyr...@gmail.com> wrote:

William,

Rather you should not comment on my replies. If I say white, you say black even when you know you are wrong.

That's funny I was thinking the same, except your answer is wrong.

If you look at the DT overlay the OP referenced, the additional entries don’t exist and that is why I posted an updated DT overlay. Reading in_voltagex_raw like your beaglebone-black-adc example was never meant for high speed capture. In fact you are just reading the same sample over and over again.

http://processors.wiki.ti.com/index.php/AM335x_ADC_Driver's_Guide#One-shot_Mode No one said anything about high speed capture. But have you actually ever used one shot mode ? It is *NOT* reading the same sample over and over again. But you do have to open / close the file every time you do want a new reading. That's how it's supposed to work.

Reading the buffer via /dev/iio:device0 is how you are supposed to read IIO ADC samples.

No one ask that question.

If you want to understand oversampling, open delay, sample delay, then read the AM3358 TRM.

So in other words, you do not know. But again, this is not a question i asked for myself. It's the question I interpreted Audry asking to which you completely blew off.
You have this amazing ability to read peoples minds; at least you think you do. You should reframe from guessing what people know or don’t know, but you do make me smile when I read what you say. If you read the section I referenced in the TRM, it is explained very clearly. Why would I cut and past that is already explained. The ADC uses a scan cycle and in that cycle, it has an open delay, a sample delay and then it oversamples a predefined number of time. The oversampling helps increase the bits of resolution:


The open delay and sample delay are used accommodate the sample&hold error that occurs when the source impedance is too high. What isn’t in the TRM, but is understood by EE who design ADC front ends, an analog buffer like an opamp or a instrumentation amplifier or a chopper amplifier is used to eliminate offset errors and present a low impedance to the ADC sample and hold. If you don’t do this, you will see bleedover from one channel to another. Now this probably doesn’t make any sense to you because this is all to EE specific, but you did ask. 

Regards,
John

William Hermans

unread,
Mar 10, 2016, 3:51:49 AM3/10/16
to beagl...@googlegroups.com
Question:

So just to clarify, reading from /sys/bus/iio/devices/iio:device0/in_voltage0_raw reads attributes using sysfs, while reading from /dev/iio:device0 reads the values using IIO? Also another conceptual question, can you explain what exactly is in_voltage0_raw and iio:device0? I know it's not a folder, and I interact with it by using cat. So is it just like a text file or something?

My answer:

in_voltage0_raw == one shot mode.

/dev/iio:device0 == continuous mode.

continuous mode is only really useful if you need more than 3-4 thousand samples a second. Otherwise one shot mode will possibly work just fine. It really how much you're trying to do all at once.

John's answer:

Reading from /sys/bus/iio/devices/iio:device0/in_voltage0_raw is reading and attribute of the IIO driver. Reading from /dev/iio:device0 is reading from the same IIO driver, but in this case you are reading from the buffer which stores samples defined in the DT overlay above. 

Regards,
John

Total bullshit answer John. Which is getting to be common place from you. Sure iio:deviceX is a buffer, for continuous mode operation but in_voltageX_raw is not an fscking attribute. It's a single value buffer. What's more, your timing is impeccable. Bullshit answer right after I've already explained it. You tell me what I'm supposed to think about that.

Additionally, you go about spouting complete FUD saying that one shot mode only gives the same value over, and over again. It's very obvious you have no personal hands on knowledge here. in_voltageX_raw is refreshed every time the pseudo file is opened. That means, if you open the file, you *must* close it , then reopen in order for the value to refresh. I'll also give you another clue. In continuous mode, you have to read above 200Ksps from a single ADC channel before you start getting redundant data. So what makes you think that a very slow operation such as opening a file before reading a value is going to make the ADC's maximum samples / second any slower ? Bonus hint: it wont.

Anyway, I'm starting to feel like a 5 year old fighting over something incredibly stupid. So I'm done with this conversation. However, again. Stop spreading FUD about stuff you obviously know nothing about, and I'll stop putting it back into your face. It surely seems like you know what the iio buffer is and does, and  you know what some obscure device tree values for the ADC are ( I never even knew of those ). But you definitely have no clue about one shot mode.


John Syne

unread,
Mar 10, 2016, 12:55:40 PM3/10/16
to beagl...@googlegroups.com
On Mar 10, 2016, at 12:51 AM, William Hermans <yyr...@gmail.com> wrote:

Question:

So just to clarify, reading from /sys/bus/iio/devices/iio:device0/in_voltage0_raw reads attributes using sysfs, while reading from /dev/iio:device0 reads the values using IIO? Also another conceptual question, can you explain what exactly is in_voltage0_raw and iio:device0? I know it's not a folder, and I interact with it by using cat. So is it just like a text file or something?
OK, so if you look at the /driver/iio/adc/ti_am335x_adc.c file, reading in_voltage0_raw is done by the tiadc_read_raw() function. The /dev/iio:device0 is a regular device driver interface, just like /dev/tty0. You can open, poll, read, etc. If you want to know how to interface to this driver, look at tools/iio/generic_buffer.c. So generally, you open /dev/iio:device0, then you poll this interface, which blocks, waiting for the buffer to exceed the watermark (prevents read from reading just a few values) and when poll returns, you read multiple values into a buffer in user space.
 

My answer:
in_voltage0_raw == one shot mode.

/dev/iio:device0 == continuous mode.

continuous mode is only really useful if you need more than 3-4 thousand samples a second. Otherwise one shot mode will possibly work just fine. It really how much you're trying to do all at once.

John's answer:
Reading from /sys/bus/iio/devices/iio:device0/in_voltage0_raw is reading and attribute of the IIO driver. Reading from /dev/iio:device0 is reading from the same IIO driver, but in this case you are reading from the buffer which stores samples defined in the DT overlay above. 

Regards,
John

Total bullshit answer John. Which is getting to be common place from you. Sure iio:deviceX is a buffer, for continuous mode operation but in_voltageX_raw is not an fscking attribute. It's a single value buffer. What's more, your timing is impeccable. Bullshit answer right after I've already explained it. You tell me what I'm supposed to think about that.
There is no such thing as a single value buffer. Look up sysfs in the kernel docs, it is restricted to a single value (boolean, int, etc) per sysfs interface. Hence the reason why debugfs was developed, which can exchange complex data structures. 


Additionally, you go about spouting complete FUD saying that one shot mode only gives the same value over, and over again. It's very obvious you have no personal hands on knowledge here. in_voltageX_raw is refreshed every time the pseudo file is opened. That means, if you open the file, you *must* close it , then reopen in order for the value to refresh. I'll also give you another clue. In continuous mode, you have to read above 200Ksps from a single ADC channel before you start getting redundant data. So what makes you think that a very slow operation such as opening a file before reading a value is going to make the ADC's maximum samples / second any slower ? Bonus hint: it wont.
You don’t have to open the file for each read. You can open and then read and read again. That is what your example does. Looking at the code, it looks like you cannot read the same sample over and over again, because it waits for a new sample to complete before returning. This is probably why sysfs is slow because it has to wait for a complete scan cycle of all channels before returning a single value. 


Anyway, I'm starting to feel like a 5 year old fighting over something incredibly stupid. So I'm done with this conversation. However, again. Stop spreading FUD about stuff you obviously know nothing about, and I'll stop putting it back into your face. It surely seems like you know what the iio buffer is and does, and  you know what some obscure device tree values for the ADC are ( I never even knew of those ). But you definitely have no clue about one shot mode.

You need to relax, take a breath. If you read the code in the driver, you will see that I am correct.

Regards,
John

Audrey

unread,
Mar 18, 2016, 2:21:56 PM3/18/16
to BeagleBoard
Hi everyone,

First of all, thank you everyone for trying to help me. I appreciate everyone's input.

I took everyone's advice, and have moved away from bash to C++. It's clocking at about 2 milliseconds, but I would really like it to go down into the microsecond range:

/** Simple LDR Reading Application

* Written by Derek Molloy for the book "Exploring BeagleBone: Tools and

* Techniques for Building with Embedded Linux" by John Wiley & Sons, 2014

* ISBN 9781118935125. Please see the file README.md in the repository root

* directory for copyright and GNU GPLv3 license information.            */

 

#include<iostream>

#include<fstream>

#include<string>

#include<sstream>

using namespace std;

 

#define LDR_PATH "/sys/bus/iio/devices/iio:device0/in_voltage"

 

int readAnalog(int number)

{

   stringstream ss;

   ss << LDR_PATH << number << "_raw";

   fstream fs;

   fs.open(ss.str().c_str(), fstream::in);

   fs >> number;

   fs.close();

   return number;

}

 

int main(int argc, char* argv[])

{

   cout << "Starting the readLDR program" << endl;

   int value;

   int i=1;

   while (true)

   {

     float value = (float)readAnalog(0)/4095*1.8;

     cout <<"V= " << value << endl;

     cout << i << endl;

     i++;

   }

   return 0;

}


Thank you TJF for pointing me to libpruio. I'll use it later if I need it, but for now I rather not use the PRU if I don't need to.

So I noticed this thing where I can't see the buffer, or scan_elements, or mode in iio:device0, and I wonder if I'm not enabling the adc dto properly or something:
root@beaglebone:/sys/bus/iio/devices/iio:device0# ls -l
total 0
-r--r--r-- 1 root root 4096 Mar  1 20:51 dev
-rw-r--r-- 1 root root 4096 Mar  1 22:03 in_voltage0_raw
-rw-r--r-- 1 root root 4096 Mar  1 22:03 in_voltage1_raw
-rw-r--r-- 1 root root 4096 Mar  1 22:03 in_voltage2_raw
-rw-r--r-- 1 root root 4096 Mar  1 22:03 in_voltage3_raw
-rw-r--r-- 1 root root 4096 Mar  1 22:03 in_voltage4_raw
-rw-r--r-- 1 root root 4096 Mar  1 22:03 in_voltage5_raw
-rw-r--r-- 1 root root 4096 Mar  1 22:03 in_voltage6_raw
-rw-r--r-- 1 root root 4096 Mar  1 22:03 in_voltage7_raw
-r--r--r-- 1 root root 4096 Mar  1 20:51 name
drwxr-xr-x 2 root root    0 Mar  1 20:51 power
lrwxrwxrwx 1 root root    0 Mar  1 20:50 subsystem -> ../../../../../bus/iio
-rw-r--r-- 1 root root 4096 Mar  1 20:50 uevent

This is what I've been doing to "enable" the adc (although I don't really know what it is doing. I can't find the file cape-bone-iio in bbb, and if I try echo cape-bone-iio > test.txt, it is just a regular string.):
echo cape-bone-iio > /sys/devices/bone_capemgr.*/slots

I tried searching for /driver/iio/adc/ti_am335x_adc.c, but I can't find it (there's nothing in root@beaglebone:/sys/bus/iio/drivers#). Could you perhaps specify the full filepath?

Thanks.

John Syne

unread,
Mar 18, 2016, 3:25:13 PM3/18/16
to beagl...@googlegroups.com
The buffer is available here:

/dev/iio:device0

Because the driver uses interrupts, you won’t get the speed you want. The driver has to be updated to use DMA if you want to use full speed. Reading from the buffer will reduce your CPU load compared to using LDR_PATH because this interface blocks until a sample is available, but not long enough for the thread to sleep. To use DMA, IIO have introduced a DMA framework and most of what you need is already available. However, IIO are going to be updating the IIO DMA framework to do zero copy between the kernel module and the socket interface, using MMU maps. 

Regards,
John




Audrey

unread,
Mar 18, 2016, 3:37:59 PM3/18/16
to BeagleBoard
It says:
root@beaglebone:/dev# cd iio:device0
-bash: cd: iio:device0: Not a directory
root@beaglebone:/dev# cat iio:device0
cat: iio:device0: Invalid argument

John Syne

unread,
Mar 18, 2016, 3:49:39 PM3/18/16
to beagl...@googlegroups.com
It is a driver, so you can open, poll and read from /dev/iio:device0

For a quick test, do the following: After you enable the various scan_channels, start the buffer and then do the following:

dd if=/dev/iio:device0 of=~/test.txt

Press ctrl-C to stop capture.

Use hexdump to view the file. 

Regards,
John



Audrey

unread,
Mar 18, 2016, 4:06:07 PM3/18/16
to BeagleBoard
Hm. 

Sorry, but unfortunately I'm still quite a bit lost. What should I be doing to dev/iio:device0 (open?) in order to do the following:
echo 1 > in_voltage0_en
echo 1 > buffer/enable

I'm assuming that I should be able to see in_voltage0_en and buffer in the folder /sys/bus/iio/devices/iio:device0 but I currently do not see those attributes/drivers/folders/buffers/whatever-you-want-to-call-them.

Typing 
root@beaglebone:/dev# open iio:device0
doesn't seem to do anything.

Do you think you could break your steps down even further?

Thanks.

John Syne

unread,
Mar 18, 2016, 4:15:00 PM3/18/16
to beagl...@googlegroups.com
On Mar 18, 2016, at 1:06 PM, Audrey <ao...@smith.edu> wrote:

Hm. 

Sorry, but unfortunately I'm still quite a bit lost. What should I be doing to dev/iio:device0 (open?) in order to do the following:
echo 1 > in_voltage0_en
From memory, 

echo 1 > /sys/bus/iio/devices/iio:device0/scan_element/in_voltage0_en
echo 1 > buffer/enable
echo 1 > /sys/bus/iio/devices/iio:device0/buffer/enable

Regards,
John

Audrey

unread,
Mar 18, 2016, 4:22:21 PM3/18/16
to BeagleBoard
It says:
root@beaglebone:/# echo 1 > /sys/bus/iio/devices/iio:device0/scan_element/in_voltage0_en
-bash: /sys/bus/iio/devices/iio:device0/scan_element/in_voltage0_en: No such file or directory

and I can't find scan_elements in sys/bus/iio/devices/iio:device0
root@beaglebone:/sys/bus/iio/devices/iio:device0# ls -l
total 0
-r--r--r-- 1 root root 4096 Mar  1 21:13 dev
-rw-r--r-- 1 root root 4096 Mar  1 21:13 in_voltage0_raw
-rw-r--r-- 1 root root 4096 Mar  1 21:13 in_voltage1_raw
-rw-r--r-- 1 root root 4096 Mar  1 21:13 in_voltage2_raw
-rw-r--r-- 1 root root 4096 Mar  1 21:13 in_voltage3_raw
-rw-r--r-- 1 root root 4096 Mar  1 21:13 in_voltage4_raw
-rw-r--r-- 1 root root 4096 Mar  1 21:13 in_voltage5_raw
-rw-r--r-- 1 root root 4096 Mar  1 21:13 in_voltage6_raw
-rw-r--r-- 1 root root 4096 Mar  1 21:13 in_voltage7_raw
-r--r--r-- 1 root root 4096 Mar  1 21:13 name
drwxr-xr-x 2 root root    0 Mar  1 21:13 power
lrwxrwxrwx 1 root root    0 Mar  1 20:47 subsystem -> ../../../../../bus/iio
-rw-r--r-- 1 root root 4096 Mar  1 20:47 uevent

John Syne

unread,
Mar 18, 2016, 4:41:01 PM3/18/16
to beagl...@googlegroups.com
root@beaglebone:/sys/bus/iio/devices/iio:device0# tree
.
├── buffer
│   ├── enable
│   ├── length
│   └── watermark
├── dev
├── in_voltage0_raw
├── in_voltage1_raw
├── in_voltage2_raw
├── in_voltage3_raw
├── in_voltage4_raw
├── in_voltage5_raw
├── in_voltage6_raw
├── name
├── of_node -> ../../../../../../firmware/devicetree/base/ocp/tscadc@44e0d000/adc
├── power
│   ├── async
│   ├── autosuspend_delay_ms
│   ├── control
│   ├── runtime_active_kids
│   ├── runtime_active_time
│   ├── runtime_enabled
│   ├── runtime_status
│   ├── runtime_suspended_time
│   └── runtime_usage
├── scan_elements
│   ├── in_voltage0_en
│   ├── in_voltage0_index
│   ├── in_voltage0_type
│   ├── in_voltage1_en
│   ├── in_voltage1_index
│   ├── in_voltage1_type
│   ├── in_voltage2_en
│   ├── in_voltage2_index
│   ├── in_voltage2_type
│   ├── in_voltage3_en
│   ├── in_voltage3_index
│   ├── in_voltage3_type
│   ├── in_voltage4_en
│   ├── in_voltage4_index
│   ├── in_voltage4_type
│   ├── in_voltage5_en
│   ├── in_voltage5_index
│   ├── in_voltage5_type
│   ├── in_voltage6_en
│   ├── in_voltage6_index
│   └── in_voltage6_type
├── subsystem -> ../../../../../../bus/iio
└── uevent

Regards,
John



John Syne

unread,
Mar 18, 2016, 4:46:30 PM3/18/16
to beagl...@googlegroups.com
What is your kernel version?

Regards,
John



William Hermans

unread,
Mar 18, 2016, 5:59:01 PM3/18/16
to beagl...@googlegroups.com
Audrey,

Please read the link I gave you a couple weeks ago . . . http://processors.wiki.ti.com/index.php/AM335x_ADC_Driver's_Guide#Continuous_Mode

Everything you need to know to use the ADC is explained on this page. But from your last post, and the paths you've shown us. You're in the wrong directory. Essentially, you're still in the one-shot directories, which are completely separate from the continuous mode directory structure.

William Hermans

unread,
Mar 18, 2016, 6:08:12 PM3/18/16
to beagl...@googlegroups.com
Audrey,

Also, if you need your samples to be taken precisely at <some time frame> apart. You'll have to use a PRU - Period. Linux is good for determinism at around 200ms, which often times Linux *is* faster, but it's not guaranteed, The PRU's on the other hand run outside of Linux( bare metal essentially ), and can be very precise timing wise.

SO with using the PRUs, sometimes it's not about how fast you need something, but how deterministic you need something.

John Syne

unread,
Mar 18, 2016, 6:09:24 PM3/18/16
to beagl...@googlegroups.com
Where do you get the concept that there are two paths? From everything I know about IIO, there is only one path, /sys/bus/iio/devices/iio:deviceX, were X is the number assigned to each IIO driver loaded. There is no one-shot or continuous mode for this driver. I believe mode was removed from IIO. 


Regards,
John



John Syne

unread,
Mar 18, 2016, 6:17:29 PM3/18/16
to beagl...@googlegroups.com
Again this is wrong. The scan cycle determines the sampling rate and these samples are then fed to the fifo. As long as the interrupt services the 64 sample fifo before it overflows, then no samples are lost. In essence, the driver can easily keep up. 

Regards,
John



Audrey

unread,
Mar 19, 2016, 12:46:09 PM3/19/16
to BeagleBoard
Hi William, I did read that article you sent me. I was unable to follow the Driver Configuration bit, but as far as the continuous mode is concerned, after careful re-reading of the article, I think I understand that you are trying to tell me that I should be in the /dev/iio:device0 directory to read the continuous mode. However, my problem is that buffer, scan_elements, and mode, which the article says are used to set up the continuous mode, should be in the /sys/bus/iio/devices/iio:device0 directory. And that was where I was in, but I could not find them, which is my current problem. 

John3909, my kernel version is 3.8.13-bone70.

I think if this doesn't pan out, I will be looking into using the PRU, although I would like to understand the current system better before moving on to something more complicated.

Thanks everyone for your help!

John Syne

unread,
Mar 19, 2016, 4:15:04 PM3/19/16
to beagl...@googlegroups.com
Yeah, that is what I thought. IIO on the 3.8 kernel didn’t have a lot of features and this is why you are having difficulty using it. I would recommend upgrading to the 4.1 kernel or even the 4.4 kernel. I personally use the 4.1 kernel, but I back ported IIO from the IIO-next kernel so that I am using the latest IIO which includes DMA framework support. 

Regards,
John



Audrey

unread,
Mar 21, 2016, 3:52:38 PM3/21/16
to BeagleBoard
Thanks John, do you know where to get kernel 4.1? This is the only place I know that has beaglebone images, but they don't specify which kernel each version has: http://beagleboard.org/latest-images

I know that my beaglebone has the image BBB-eMMC-flasher-debian-7.8-lxde-4gb-armhf-2015-03-01-4gb.img.xz


Regards,
John





Regards,
John




John
<span style="font-family:He

Robert Nelson

unread,
Mar 21, 2016, 4:06:10 PM3/21/16
to Beagle Board
On Mon, Mar 21, 2016 at 2:52 PM, Audrey <ao...@smith.edu> wrote:
> Thanks John, do you know where to get kernel 4.1? This is the only place I
> know that has beaglebone images, but they don't specify which kernel each
> version has: http://beagleboard.org/latest-images

Fresh as of yesterday: 4.1.18-ti-r53

http://elinux.org/Beagleboard:BeagleBoneBlack_Debian#Debian_Image_Testing_Snapshots

We've been fixing up the usb gadget setup, so they are a more stable
then the "8.3" images on http://beagleboard.org/latest-images

Regards,

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

Audrey

unread,
Mar 23, 2016, 8:56:24 PM3/23/16
to BeagleBoard
Thanks!

Audrey

unread,
Mar 28, 2016, 6:05:35 PM3/28/16
to BeagleBoard
Hi,

So I finally had the time to upgrade my beaglebone, and it now has this kernel: 4.1.18-ti-r53

However, now, a lot of the directories and stuff have changed. I can't even enable the adc (echo cape-bone-iio > /sys/devices/bone_capemgr.*/slots) because there is no longer any folder called bone_capemgr.9.

root@beaglebone:/sys/devices# ls -l
total 0
drwxr-xr-x  3 root root 0 Mar 20 17:12 armv7_cortex_a8
drwxr-xr-x  3 root root 0 Mar 20 17:12 breakpoint
drwxr-xr-x 21 root root 0 Mar 20 17:12 platform
drwxr-xr-x  3 root root 0 Mar 20 17:12 soc0
drwxr-xr-x  3 root root 0 Mar 20 17:12 software
drwxr-xr-x  6 root root 0 Mar 20 17:12 system
drwxr-xr-x  3 root root 0 Mar 20 17:12 tracepoint
drwxr-xr-x 15 root root 0 Mar 20 17:12 virtual

The folder armv7_cortex_a8 doesn't have slots and when I tried: echo cape-bone-iio > /sys/devices/armv7_cortex_a8/slots it said permission denied. 

There is also no longer any iio folder within /sys/bus:

root@beaglebone:/sys/bus# ls -l
total 0
drwxr-xr-x 4 root root 0 Mar 20 17:12 clockevents
drwxr-xr-x 4 root root 0 Mar 20 17:12 clocksource
drwxr-xr-x 4 root root 0 Mar 20 17:12 container
drwxr-xr-x 4 root root 0 Mar 20 17:12 cpu
drwxr-xr-x 4 root root 0 Mar 20 17:12 event_source
drwxr-xr-x 4 root root 0 Mar 20 17:12 hid
drwxr-xr-x 4 root root 0 Mar 20 17:12 i2c
drwxr-xr-x 4 root root 0 Mar 20 17:12 mdio_bus
drwxr-xr-x 4 root root 0 Mar 20 17:12 mmc
drwxr-xr-x 4 root root 0 Mar 20 17:12 nvmem
drwxr-xr-x 5 root root 0 Mar 20 17:12 pci
drwxr-xr-x 4 root root 0 Mar 20 17:12 platform
drwxr-xr-x 4 root root 0 Mar 20 17:12 scsi
drwxr-xr-x 4 root root 0 Mar 20 17:12 sdio
drwxr-xr-x 4 root root 0 Mar 20 17:12 serio
drwxr-xr-x 4 root root 0 Mar 20 17:12 soc
drwxr-xr-x 4 root root 0 Mar 20 17:12 spi
drwxr-xr-x 4 root root 0 Mar 20 17:12 usb
drwxr-xr-x 4 root root 0 Mar 20 17:12 virtio
drwxr-xr-x 4 root root 0 Mar 20 17:12 w1
drwxr-xr-x 4 root root 0 Mar 20 17:12 workqueue

Regards,
John





Regards,
John




John
<span style="font-family:He

Robert Nelson

unread,
Mar 28, 2016, 6:09:57 PM3/28/16
to Beagle Board
On Mon, Mar 28, 2016 at 5:05 PM, Audrey <ao...@smith.edu> wrote:
> Hi,
>
> So I finally had the time to upgrade my beaglebone, and it now has this
> kernel: 4.1.18-ti-r53
>
> However, now, a lot of the directories and stuff have changed. I can't even
> enable the adc (echo cape-bone-iio > /sys/devices/bone_capemgr.*/slots)
> because there is no longer any folder called bone_capemgr.9.

/sys/devices/platform/bone_capemgr/slots

sudo sh -c "echo 'BB-ADC' > /sys/devices/platform/bone_capemgr/slots"

https://github.com/beagleboard/bb.org-overlays/
Reply all
Reply to author
Forward
0 new messages