• Source uploaded

    Steven Clark08/30/2017 at 21:12 0 comments

    I finally got around to uploading the actual source file here.  It's analog2.c because halfway through I decided I wasn't going to be sure I could get myself hooked into the interrupt controller and rewrote it to use the newer high-resolution timer system in the kernel.  The final version also has runs a clock-in pin for an Analog Devices DAC chip instead of a SIP resistor ladder or homebrew R2R network.  Either of those would still work, there'd just be an extra pin getting uselessly twiddled.

    Once compiled and inserted a /dev/analog0 device should appear.  Writing a bytes to it will fill a buffer up to 1MB which will then be clocked out to 8 sequential pins of the GPIO at 22,050hz until the final byte is reached and held.  Writing one byte (on a system with no DC offset filter) should therefore just set an analog value on the DAC, while writing multiple bytes should play 8-bit mono audio (a DC offset filter is recommended in this case).

  • Presentation done.

    Steven Clark05/14/2016 at 23:48 0 comments

    I've done the presentation, and it worked with flying colors. About the only person who's project might have been more ambitious is the guy who made a complete enough shell we couldn't think of a command it didn't have access to.

    I think I'm going to hold off on posting any source code until I have a grade. Just in case the professor would get fussy about finding it online somewhere.

    Also I think I've got a good application for this. It's probably one of the cheaper ways to add analog audio to a Pi Zero. Depending on how much an I2C DAC costs compared to a resistor network. Maybe a later driver can actually hooki into ALSA, although I'm sure for some applications just cramming the samples into /dev/analog0 works great.

    If anyone's Interested I could put down a schematic for what version 3 of the hardware would look like.

  • I think the old DAC was working

    Steven Clark05/10/2016 at 17:24 0 comments

    So, I'm pretty sure it was just my non-functional test file and my DAC was working. The flaw was in my test setup. See I set up a bank of dip switches on a breadboard and ran from power to the input pins. If you're cleverer than me you may have figured it out. I needed the 0s of my resistor network to be at 0v and instead they were floating. No wonder the DAC failed that test. So if you want to build one of these a resistor ladder is probably fine, and you might even avoid having to add a voltage divider to your overly strong output like I did with my AD5330 breakout.

  • It's ALIVE!

    Steven Clark05/10/2016 at 02:32 0 comments

    I fixed a bug in my write routine that made it allocate and use all space in the buffer no matter how little you wrote. Then fixed the bug I created there (it turns out get_from_user returns the number of bites NOT written). I learned to use audacity to convert files and have now played Weird Science from Oingo Boingo, or at least the first buffer-full of it, by dd'ing my raw file to /dev/analog0

    It works!!!

    PS. It also sounds kinda demonic if you converted the audio sample, but not the project rate in audacity and end up playing at half speed with half your samples missing.

  • My DAC isn't

    Steven Clark05/08/2016 at 01:31 0 comments

    So I unhooked the raspberry pi, and then borrowed it's ground and 3.3v and ran them through a dip switch bank into my input pins and then out to a multimeter. I did not like the results. My DAC isn't just a little nonlinear, the LSB run 1.9v and the MSB runs 2.3, and any two pins 3.3. There's no way to make a number from that little difference. There's obviously something unstated about this design and it's pissing me off. I went into panic mode attempting to find someplace I could buy a parallel DAC (not Frys as far as I could tell) in town so I could get it without shipping time. Then I vaguely remembered buying a DAC breakout from Sparkfun, but when I looked in my kit there wasn't one. I was just about to give up and went digging through the project parts box for an op-amp I bought so I could try an example circuit for R-2R DACs that used one, when I spotted the breakout board. I had put it in at the start of the project in case my own DAC was crap and I desperately needed a replacement. It's a little more complicated to operate, but it's not like I have shortage of GPIOs

  • We get (a) signal

    Steven Clark05/07/2016 at 04:12 1 comment

    I finally have a driver that doesn't crash the OS. I also have a DAC plugged into the GPIOs. I also have a demo file of an MP3 of Take On Me converted to raw unsigned mono at 22.05 khz (I think, SOX's definition of raw is creative, it may still be PCM which I don't want). DDing the demo file to the device file puts a little under a minute of file into the buffer. The device then squeals for a fraction of a second and goes silent. I haven't figured out my error yet.

  • We have a kernel object

    Steven Clark05/03/2016 at 20:12 0 comments

    I finally slogged through all my major errors and broken dependencies (most help is on making modules for the 2.6 kernel, this is 4.4!) and taught myself to use kbuild. I have a kernel module. I've also installed sox and sftp'd over some sample MP3s. I might give this a dry run and hope it just miraculously works sometime tonight.

  • Some good example code

    Steven Clark04/28/2016 at 03:09 0 comments

    I've been reading through the Oreilly drivers book and thought I needed to see an example kernel module to get a sense for how it's done in practice. So I went into the kernel source tree to try to find a simple character device driver I could look at. These are located in drivers/char/ in a linux source tree. A few problems quickly presented themselves:

    1. Nobody comments. Okay there are comments but they're mostly the bare minimum so you know who wrote the thing and what it's supposed to be. I know you aren't supposed to comment anything obvious but these files don't even have functions labeled by purpose.

    2. Most of them only look slightly like the code in the book. The coder who wrote them went and changed the name of everything to something specific and none too clear. Usually you're lucky if you can identify the init and exit functions.

    There seems to be at least one exception to 2: linux/drivers/char/raw.c Sure the comments are still pretty dire, but I can actually see the structure of this one, where the file operation functions are, where their pointers are loaded into a structure and a character device gotten from the system. I'm now at least significantly less concerned that I won't figure any of this out before the deadline.


    I do kinda wish I wasn't the most experienced (only) person on the team now though. Having an interactive person to explain this would be much nicer than the book.

  • Background Information

    Steven Clark04/19/2016 at 03:55 0 comments

    I've got a set of links on my desktop and thought I should get them written down.

    First some resources on Programming kernel modules:

    http://www.tldp.org/LDP/lkmpg/2.6/html/lkmpg.html

    http://www.oreilly.com/openbook/linuxdrive3/book/


    The Broadcom peripherals manual, for what it's worth:

    https://www.raspberrypi.org/wp-content/uploads/2012/02/BCM2835-ARM-Peripherals.pdf

    Actually applied in:

    http://www.pieter-jan.com/node/15 Uses the low level ports but is still running only one pin of a port at a time using bit shifts. We're going to ignore pretty much ever but shift and rotate and just write a whole 8 bits at a time.

    http://xinu.mscs.mu.edu/BCM2835_System_Timer I swear I had a better link, but I can't find it now. Anyway here's some memory addresses for the system's 1mhz timer. To get a 22050hz sampling we'll be putting 45 in C3 and a pointer to our own interrupt routine in the interrupt vector location for IRQ3. This is how it would be done low level: http://xinu.mscs.mu.edu/BCM2835_Interrupt_Controller but it looks like the Kernel may have a system for it anyway: http://www.oreilly.com/openbook/linuxdrive3/book/ch10.pdf a request_irq function. It looks like it's largely function pointer based, kinda like pthread_create().

    Here's some charts of various Raspberry Pi GPIO pins named by their chip pins. The order seems to be essentially random, and we might need to shift out byte a few bits if we want to keep a serial console but it looks like there's a pretty continuous block between GPIO2 and GPIO27 scattered around that connector http://www.raspberrypi-spy.co.uk/2012/06/simple-guide-to-the-rpi-gpio-header-and-pins/

    Here's a header someone wrote we can canibalize for ideas: https://github.com/thenaterhood/pi-crust


    A nice tool we can use to play the audio (may require root in our case) Sound Exchange AKA sox: http://sox.sourceforge.net/

    And I've run out of steam for a bit so I'll leave it there.


    Basic specs:

    Refresh 22.050 khz

    input 8-bit unsigned integers

    written to character device /dev/analog0

    last byte written is held until user write more bytes (pre-filtered output is fixed DC)

  • Need faster timers, maybe interrupts

    Steven Clark04/17/2016 at 01:49 3 comments

    Audio...might be difficult.

    So the thing, is ideally I want to run the update function on this at a decent audio frequency, say 22050hz. But the Linux Kernel doesn't really have features for timing with that kind of frequency. If the kernel calls your function it's once every n "jiffies" and those jiffies only come about 100 to 1000 per second. It looks like some work has been done on maybe putting a high-frequency or high-resolution timer system into the kernel, but I can't seem to find documentation or support on it in official kernels so I'm not even sure any of those would be available in a release kernel and I don't trust my knowledge of the system enough to patch things.

    There is hope though, the Broadcom SOC keeps a 1mhz high-accuracy running timer and there's 4 counter registers attached to it. The problem is all I can find documentation of it from is bare-metal programming wikis, and even then 2 out of 4 counters are in use just for the GPU. So, to do audio I'd need to verify that counters 1 and 3 aren't used by the kernel, then learn how to set one of those to 45, and put an interrupt vector to my own top-half code in the right spot, and hopefully it would run.

    I've never done something even remotely like any of that. The most likely of my teammates to contribute has already backed out and I haven't heard from the other in about a week. Most of the class is choosing to do stuff like multi-threaded sudoku solvers and other things that sound more impressive than they are. It appears I am going to venture all alone into the terra icognita of kernel space, on an SOC by a company who believes documentation is something that happens to other people.

    Maybe it's best to just focus on the variable DC output, given the hardware already has an audio jack.