Skip to content
Snippets Groups Projects
OctoWS2811z.cpp 8.66 KiB
Newer Older
  • Learn to ignore specific revisions
  • /*  OctoWS2811 - High Performance WS2811 LED Display Library
        http://www.pjrc.com/teensy/td_libs_OctoWS2811.html
        Copyright (c) 2013 Paul Stoffregen, PJRC.COM, LLC
    
    
    	Zero-copy variant (OctoWS2811z) hacked up by Micah Elizabeth Scott.
    
    
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
    
        The above copyright notice and this permission notice shall be included in
        all copies or substantial portions of the Software.
    
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
        THE SOFTWARE.
    */
    
    #include <string.h>
    
    #include <algorithm>
    
    uint16_t OctoWS2811z::stripLen;
    void * OctoWS2811z::frameBuffer;
    void * OctoWS2811z::drawBuffer;
    uint8_t OctoWS2811z::params;
    
    
    
    static const uint8_t ones = 0xFF;
    static volatile uint8_t update_in_progress = 0;
    static uint32_t update_completed_at = 0;
    
    
    
    OctoWS2811z::OctoWS2811z(uint32_t numPerStrip, void *buffer, uint8_t config)
    
    {
    	stripLen = numPerStrip;
    
    	frameBuffer = buffer;
    	drawBuffer = (24 * numPerStrip) + (uint8_t*) buffer;
    
    	params = config;
    }
    
    // Waveform timing: these set the high time for a 0 and 1 bit, as a fraction of
    // the total 800 kHz or 400 kHz clock cycle.  The scale is 0 to 255.  The Worldsemi
    // datasheet seems T1H should be 600 ns of a 1250 ns cycle, or 48%.  That may
    // erroneous information?  Other sources reason the chip actually samples the
    // line close to the center of each bit time, so T1H should be 80% if TOH is 20%.
    // The chips appear to work based on a simple one-shot delay triggered by the
    // rising edge.  At least 1 chip tested retransmits 0 as a 330 ns pulse (26%) and
    // a 1 as a 660 ns pulse (53%).  Perhaps it's actually sampling near 500 ns?
    // There doesn't seem to be any advantage to making T1H less, as long as there
    // is sufficient low time before the end of the cycle, so the next rising edge
    // can be detected.  T0H has been lengthened slightly, because the pulse can
    // narrow if the DMA controller has extra latency during bus arbitration.  If you
    // have an insight about tuning these parameters AND you have actually tested on
    // real LED strips, please contact paul@pjrc.com.  Please do not email based only
    // on reading the datasheets and purely theoretical analysis.
    #define WS2811_TIMING_T0H  60
    #define WS2811_TIMING_T1H  176
    
    
    
    {
    	uint32_t bufsize, frequency;
    
    	bufsize = stripLen*24;
    
    
    	// Clear both front and back buffers
    
    	memset(frameBuffer, 0, bufsize);
    
    	memset(drawBuffer, 0, bufsize);
    
    	
    	// configure the 8 output pins
    	GPIOD_PCOR = 0xFF;
    	pinMode(2, OUTPUT);	// strip #1
    	pinMode(14, OUTPUT);	// strip #2
    	pinMode(7, OUTPUT);	// strip #3
    	pinMode(8, OUTPUT);	// strip #4
    	pinMode(6, OUTPUT);	// strip #5
    	pinMode(20, OUTPUT);	// strip #6
    	pinMode(21, OUTPUT);	// strip #7
    	pinMode(5, OUTPUT);	// strip #8
    
    	// create the two waveforms for WS2811 low and high bits
    	frequency = (params & WS2811_400kHz) ? 400000 : 800000;
    	analogWriteResolution(8);
    	analogWriteFrequency(3, frequency);
    	analogWriteFrequency(4, frequency);
    	analogWrite(3, WS2811_TIMING_T0H);
    	analogWrite(4, WS2811_TIMING_T1H);
    
    	// pin 16 triggers DMA(port B) on rising edge (configure for pin 3's waveform)
    	CORE_PIN16_CONFIG = PORT_PCR_IRQC(1)|PORT_PCR_MUX(3);
    	pinMode(3, INPUT_PULLUP); // pin 3 no longer needed
    
    	// pin 15 triggers DMA(port C) on falling edge of low duty waveform
    	// pin 15 and 16 must be connected by the user: 16 is output, 15 is input
    	pinMode(15, INPUT);
    	CORE_PIN15_CONFIG = PORT_PCR_IRQC(2)|PORT_PCR_MUX(1);
    
    	// pin 4 triggers DMA(port A) on falling edge of high duty waveform
    	CORE_PIN4_CONFIG = PORT_PCR_IRQC(2)|PORT_PCR_MUX(3);
    
    	// enable clocks to the DMA controller and DMAMUX
    	SIM_SCGC7 |= SIM_SCGC7_DMA;
    	SIM_SCGC6 |= SIM_SCGC6_DMAMUX;
    	DMA_CR = 0;
    	DMA_ERQ = 0;
    
    	// DMA channel #1 sets WS2811 high at the beginning of each cycle
    	DMA_TCD1_SADDR = &ones;
    	DMA_TCD1_SOFF = 0;
    	DMA_TCD1_ATTR = DMA_TCD_ATTR_SSIZE(0) | DMA_TCD_ATTR_DSIZE(0);
    	DMA_TCD1_NBYTES_MLNO = 1;
    	DMA_TCD1_SLAST = 0;
    	DMA_TCD1_DADDR = &GPIOD_PSOR;
    	DMA_TCD1_DOFF = 0;
    	DMA_TCD1_CITER_ELINKNO = bufsize;
    	DMA_TCD1_DLASTSGA = 0;
    	DMA_TCD1_CSR = DMA_TCD_CSR_DREQ;
    	DMA_TCD1_BITER_ELINKNO = bufsize;
    
    	// DMA channel #2 writes the pixel data at 20% of the cycle
    	DMA_TCD2_SADDR = frameBuffer;
    	DMA_TCD2_SOFF = 1;
    	DMA_TCD2_ATTR = DMA_TCD_ATTR_SSIZE(0) | DMA_TCD_ATTR_DSIZE(0);
    	DMA_TCD2_NBYTES_MLNO = 1;
    	DMA_TCD2_SLAST = -bufsize;
    	DMA_TCD2_DADDR = &GPIOD_PDOR;
    	DMA_TCD2_DOFF = 0;
    	DMA_TCD2_CITER_ELINKNO = bufsize;
    	DMA_TCD2_DLASTSGA = 0;
    	DMA_TCD2_CSR = DMA_TCD_CSR_DREQ;
    	DMA_TCD2_BITER_ELINKNO = bufsize;
    
    	// DMA channel #3 clear all the pins low at 48% of the cycle
    	DMA_TCD3_SADDR = &ones;
    	DMA_TCD3_SOFF = 0;
    	DMA_TCD3_ATTR = DMA_TCD_ATTR_SSIZE(0) | DMA_TCD_ATTR_DSIZE(0);
    	DMA_TCD3_NBYTES_MLNO = 1;
    	DMA_TCD3_SLAST = 0;
    	DMA_TCD3_DADDR = &GPIOD_PCOR;
    	DMA_TCD3_DOFF = 0;
    	DMA_TCD3_CITER_ELINKNO = bufsize;
    	DMA_TCD3_DLASTSGA = 0;
    	DMA_TCD3_CSR = DMA_TCD_CSR_DREQ | DMA_TCD_CSR_INTMAJOR;
    	DMA_TCD3_BITER_ELINKNO = bufsize;
    
    	// route the edge detect interrupts to trigger the 3 channels
    	DMAMUX0_CHCFG1 = 0;
    	DMAMUX0_CHCFG1 = DMAMUX_SOURCE_PORTB | DMAMUX_ENABLE;
    	DMAMUX0_CHCFG2 = 0;
    	DMAMUX0_CHCFG2 = DMAMUX_SOURCE_PORTC | DMAMUX_ENABLE;
    	DMAMUX0_CHCFG3 = 0;
    	DMAMUX0_CHCFG3 = DMAMUX_SOURCE_PORTA | DMAMUX_ENABLE;
    
    	// enable a done interrupts when channel #3 completes
    	NVIC_ENABLE_IRQ(IRQ_DMA_CH3);
    	//pinMode(1, OUTPUT); // testing: oscilloscope trigger
    }
    
    void dma_ch3_isr(void)
    {
    	DMA_CINT = 3;
    	update_completed_at = micros();
    	update_in_progress = 0;
    }
    
    
    {
    	//if (DMA_ERQ & 0xE) return 1;
    	if (update_in_progress) return 1;
    	// busy for 50 us after the done interrupt, for WS2811 reset
    	if (micros() - update_completed_at < 50) return 1;
    	return 0;
    }
    
    
    {
    	uint32_t cv, sc;
    
    	// wait for any prior DMA operation
    	while (update_in_progress) ; 
    
    
    	// Swap buffer pointers without copying
    	std::swap(frameBuffer, drawBuffer);
    
    
    	// wait for WS2811 reset
    	while (micros() - update_completed_at < 50) ;
    
    	// ok to start, but we must be very careful to begin
    	// without any prior 3 x 800kHz DMA requests pending
    	sc = FTM1_SC;
    	cv = FTM1_C1V;
    	noInterrupts();
    	// CAUTION: this code is timing critical.  Any editing should be
    	// tested by verifying the oscilloscope trigger pulse at the end
    	// always occurs while both waveforms are still low.  Simply
    	// counting CPU cycles does not take into account other complex
    	// factors, like flash cache misses and bus arbitration from USB
    	// or other DMA.  Testing should be done with the oscilloscope
    	// display set at infinite persistence and a variety of other I/O
    	// performed to create realistic bus usage.  Even then, you really
    	// should not mess with this timing critical code!
    	update_in_progress = 1;
    	while (FTM1_CNT <= cv) ; 
    	while (FTM1_CNT > cv) ; // wait for beginning of an 800 kHz cycle
    	while (FTM1_CNT < cv) ;
    	FTM1_SC = sc & 0xE7;	// stop FTM1 timer (hopefully before it rolls over)
    	//digitalWriteFast(1, HIGH); // oscilloscope trigger
    	PORTB_ISFR = (1<<0);    // clear any prior rising edge
    	PORTC_ISFR = (1<<0);	// clear any prior low duty falling edge
    	PORTA_ISFR = (1<<13);	// clear any prior high duty falling edge
    	DMA_ERQ = 0x0E;		// enable all 3 DMA channels
    	FTM1_SC = sc;		// restart FTM1 timer
    	//digitalWriteFast(1, LOW);
    	interrupts();
    }
    
    
    void OctoWS2811z::setPixel(uint32_t num, int color)
    
    {
    	uint32_t strip, offset, mask;
    	uint8_t bit, *p;
    	
    	strip = num / stripLen;  // Cortex-M4 has 2 cycle unsigned divide :-)
    	offset = num % stripLen;
    	bit = (1<<strip);
    	p = ((uint8_t *)drawBuffer) + offset * 24;
    
    	for (mask = (1<<23) ; mask ; mask >>= 1) {
    		if (color & mask) {
    			*p++ |= bit;
    		} else {
    			*p++ &= ~bit;
    		}
    	}
    }
    
    
    int OctoWS2811z::getPixel(uint32_t num)
    
    {
    	uint32_t strip, offset, mask;
    	uint8_t bit, *p;
    	int color=0;
    
    	strip = num / stripLen;
    	offset = num % stripLen;
    	bit = (1<<strip);
    	p = ((uint8_t *)drawBuffer) + offset * 24;
    	for (mask = (1<<23) ; mask ; mask >>= 1) {
    		if (*p++ & bit) color |= mask;
    	}
    	return color;
    }