Тёмный

Using DMA to implement multiple SPI ports 

mikeselectricstuff
Подписаться 131 тыс.
Просмотров 31 тыс.
50% 1

Опубликовано:

 

29 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 86   
@cliveramsbotty6077
@cliveramsbotty6077 8 лет назад
You have this incredible talent for speaking really clearly, providing all the information with no chatter or wasted words, explaining it all in a concise manner. Attributes pretty much unheard of on RU-vid. I doff my cap sir.
@magdalenajirova5745
@magdalenajirova5745 8 лет назад
As a non-native-English-speaker, I must agree that Mike's fast speech and somewhat lispy pronounciation makes it difficult to comprehend.
@jam99
@jam99 7 лет назад
Mike is a very intelligent guy. He speaks too fast for me to follow a lot of the time but that is my problem, not his. I just have to frequently replay certain bits.
@tomlomax9909
@tomlomax9909 7 лет назад
Evidently the haters don't speak English. Feel free to watch at 0.5x speed.
@AlexHitchins
@AlexHitchins 8 лет назад
Mike, you are a very clever chap. I always learn loads from your videos, when it sinks in!
@flipschwipp6572
@flipschwipp6572 8 лет назад
nice explanation and very clever to also stop the clock via dma!
@pnjunction5689
@pnjunction5689 8 лет назад
Pure gold! That's a very nice idea to use DMA to stop the timer. Thanks for the video.
@Tadesan
@Tadesan 2 года назад
You are so amazingly fortunate to have found a niche. I would give my talent to learn how to find a niche and grow in it…
@haakonness
@haakonness 7 лет назад
I really liked your idea of using a second dma to write to the t3con register. I thought of the external gate too while you were explaining the problem. But I would have stopped there. Nice thinking!
@AlexanderBrevig
@AlexanderBrevig 8 лет назад
very very nice, cool trick using a DMA to transfer the 0 constant
@richsmith46
@richsmith46 8 лет назад
Nice idea and I'm going to try out something similar, now I know it stands a good chance of working without needing 6 × SPI channels and a 144 pin micro. Many thanks.
@robbyxp1
@robbyxp1 7 лет назад
Great video. I love playing down with the bits and DMA. Reminds me of setting up a Texas C64 with multiple chained DMAs to split apart incoming I*Q data steams from a complex QUAD down converter chip.
@A_S_M_R
@A_S_M_R 8 лет назад
I love you teardown videos Mike but this has melted my brain! Nevertheless, keep up the great work.
@andrewpowell3723
@andrewpowell3723 8 лет назад
Very interesting stuff. Glad I discovered your channel.
@willplu6483
@willplu6483 8 лет назад
I'm starting to understand your videos more and more so I guess college is worth it.
@SatyajitRoy2048
@SatyajitRoy2048 5 лет назад
You are a genius. Will have to try if I can do the same thing on low end STM32. STM32F030 is very cheap in price.
@djmips
@djmips 8 лет назад
well done sir. Much respect.
@edlakota
@edlakota 8 лет назад
@Mike - Nice work.. If you enjoy exploiting the peripheral set to emulate other functions, you would love playing with the xmos chips. You essentially write your own peripherals using a bunch of resources such as timed ports (with shift registers), user clocks under software control and all without worrying about interrupt latency because you dedicate a core to doing just that task (so it's always read to react without context switch). No need for significant buffering. Great for doing high channel count bridging (ethernet/serial to serial/pwm etc.)..
@mikeselectricstuff
@mikeselectricstuff 8 лет назад
Not looked in too much detail at XMOS - too much new stuff to learn for occasional use. The 72 channel board is actually to replace an XMOS board that a customer uses, which went obsolete.
@edlakota
@edlakota 8 лет назад
Interesting! Keep up the good work - really enjoy the videos. One day I'll own a scope that good...
@jjoster
@jjoster 8 лет назад
cool. I do love these types of videos
@AureliusR
@AureliusR 6 лет назад
I just realized something -- why isn't the foreground task (green trace - pin switching on and off) active after the bit-fiddling is done? Shouldn't the foreground task be active during the DMA transfers as they are asynchronous?
@HennerZeller
@HennerZeller 8 лет назад
I do a similar thing with the Spixels project (that we were using in FlaschenTaschen) on the Raspberry Pi (well, writing out per DMA that is, but not using the DMA controller to trigger on an interrupt).
@EcProjects
@EcProjects 8 лет назад
Great stuff! Thanks :)
@Fake0Name
@Fake0Name 8 лет назад
Can you not enter the interrupts faster by managing what you touch, and using a naked interrupt call? That makes the compiler not automatically save the stack context (so you have to be careful to not clobber the stack, or fix what you clobbered), but it can considerably speed up an interrupt.
@mikeselectricstuff
@mikeselectricstuff 8 лет назад
Quite possibly, but this way will always be faster. Also I'd have to learn more about the MIPS architecture and assembler than I can be bothered to,
@proluxelectronics7419
@proluxelectronics7419 8 лет назад
You beat me to it, I was going to ask if bit banging in assembler was a option.
@DMStern
@DMStern 8 лет назад
The point is you need to save the CPU registers. If you want to avoid that, you could allocate a number of them for ISR use, and make sure you never touch them outside of the interrupt, but that would mean writing everything in assembler yourself.
@Fake0Name
@Fake0Name 8 лет назад
I'm pretty sure you can tell most C compilers to not touch specific registers, so it shouldn't have to *all* be in assembly.
@DMStern
@DMStern 8 лет назад
Even if you can, it means you have to be able to compile all code involved in the project from source (so no prebuilt part-support libraries etc.)
@DMStern
@DMStern 8 лет назад
If you have the RAM, you could instead embed the clock signal with the data, writing the same data twice to the I/O port, but toggling the clock pin. It costs twice the RAM, and the max transfer speed is halved, but you don't need the additional timers and there's no overruns.
@keesnuyt8365
@keesnuyt8365 8 лет назад
Brilliant !
@Kilohercas
@Kilohercas 8 лет назад
question: in ARM, you can set and clear each pin bits with single word, but it will only effect pins that are 1 in that register, so in theory, you can use 16b, toggle odd ones, and use as inputs or outputs even ones with no head smashing. Maybe where are same things in PIC?
@b3l14l
@b3l14l 8 лет назад
I see the NSL stamp what day where you there ?
@lsdave
@lsdave 8 лет назад
How long did it take you to come up with this implementation? I can only imagine how long it would have taken me to develop something like this and your design is VERY clever. I love watching your videos Mike.
@mikeselectricstuff
@mikeselectricstuff 8 лет назад
Took a few attempts in different directions after I realised I couldn't use interrupts - couple of days maybe.
@ejphendriks
@ejphendriks 7 лет назад
Did you try to use the PMP? Seems like the first obvious choice. You mention the clock pulse of the PMP would be very short. Too short? I want to try this with those 32by16 display panels. Thnx for sharing your quite brilliant and out of the box insights ;)
@drojf
@drojf 8 лет назад
some Freescale (now nxp) arm microcontrollers have a "flexio" peripheral which can be configured for many different types of serial output. unfortunately only the high end parts (I think) have enough channels (more than 4) for this kind of task. but you may be able to combine them with the existing spi peripheral to get enough spis (4 flexio outputs + 2 spi...maybe).
@NivagSwerdna
@NivagSwerdna 7 лет назад
Is this with the internal PIC32 oscillator?
@CrazyMonkeyCM32
@CrazyMonkeyCM32 8 лет назад
I don't know if you have the memory, but why not double buffer? You can do your bit twiddling, then swap array pointers to output it with DMA. Then you can do both parts simultaneously. There could be memory bandwidth contention, but I would hope the DMA would have priority.
@mikeselectricstuff
@mikeselectricstuff 8 лет назад
That would improve total throughput, but that isn't really a problem hare as there are multiple devices on the bus, so there is plenty of time to send.
@djmips
@djmips 8 лет назад
The running start idea is neat and would see this all over the place in video game console programming, Like on PS2 you could start DMA to start consuming a buffer before you have finished filling that buffer. Or the C64 scrolling routines that were still moving memory at the bottom of the screen while the raster was drawing the top and the raster caught up just as you were finished. But as you say, it's working fine without these optimizations.
@mikeselectricstuff
@mikeselectricstuff 8 лет назад
The problem with starting the DMA while filling the buffer is you have to account for the load that an incoming serial packet may create. I did look at it but by the time you assume the fill will be slowed by the serial handler the benefit was negligible. Double-buffering would give more overall throughput if needed, but would add latency.
@mikeselectricstuff
@mikeselectricstuff 8 лет назад
Of course you could have the fill process periodically check where the DMA had got to before proceeding, but that would only potentially improve avarage time, not peak which is what matters.
@rationalactor
@rationalactor 8 лет назад
Great video, Mike. Thanks! Also nice idea to use DMA to stop the clock. Was wondering if it would be possible - albeit a bit brain-frying - to shuffle the input data using DMA gather 'n' scatter. Dunno if this part has it... Cheers
@hpux735
@hpux735 8 лет назад
It may not be a bad idea to disable the serial rx interrupt once you get your packet (based on address) and re-enable once the DMA memory is loaded.
@mikeselectricstuff
@mikeselectricstuff 8 лет назад
That won't work as you need to maintain framing of the packets - if you suddenly re-enable after doing whatever you're doing, you could be in the middle of a packet destined for another node, and not know when your one starts. (There is a way to avoid that issue, by using 0xff as a start-of-packet marker that;s never used within packets, but it's then hard to implement variable-length packets, and you need to not use 0xff within data. )
@hpux735
@hpux735 8 лет назад
Ah, good point. Coming up with out-of-band markers is a PITA.
@BersekViking
@BersekViking 8 лет назад
Thanks for sharing
@matthewprestine1974
@matthewprestine1974 8 лет назад
dont recall you mentioning but if you can setup the dma in a circular mode you should use that.
@JennyEverywhere
@JennyEverywhere 8 лет назад
Got a link to the source for the strips? They look interesting.
@mikeselectricstuff
@mikeselectricstuff 8 лет назад
custom made for this installation.
@JennyEverywhere
@JennyEverywhere 8 лет назад
Aw.
@adilmalik7066
@adilmalik7066 8 лет назад
i like that you use pics! what is your opinion on the STM32s?
@mikeselectricstuff
@mikeselectricstuff 8 лет назад
Never used them. Used to use NXP ARMs but started hitting code size limit of IAR free version and full version was crazy expensive. One reason for using PICs as lots of RAM in small pin-count packages, also flexible pin mapping on PIC24F. For bigger jobs, ability to buy from MicrochipDirect ready-programmed is a big time saver. Architecture doesn't really matter much.
@adilmalik7066
@adilmalik7066 8 лет назад
PIC have become my goto MCU for projects too! Specifically the DSPIC33e's; i quite like the PPS capability too. Do you know any good dev boards for the PIC32s? Ive noticed Microchip have no sane devboards for sale for any chip! Had to roll my own for the DSPICs...
@Fake0Name
@Fake0Name 8 лет назад
Can you not target the ARM with GCC?
@mikeselectricstuff
@mikeselectricstuff 8 лет назад
Yes but from what I hear it requires some fiddling about to get debugger etc. working. Nice thing about IAR and MPLAB it's well integrated, and just works, most of the time at least. I regularly also use PIC10,12,16 and 24 , so having the same IDE, programmer and very similar peripherals is a big advantage.
@Fake0Name
@Fake0Name 8 лет назад
Point taken. If you do want a zero-fiddling ARM env, atmel studio is quite nice. It's based on visual studio, which is either nice or horrible depending on your opinions on visual studio. I like it, but then I like nice GUIs. Hopefully now that Microchip bought atmel, the atmel toolchain people will go and kick the microchip toolchain people in the ass a bit, and things will get better.
@frankbuss
@frankbuss 8 лет назад
Neat, but all I was thinking the whole video was how much easier this would be with a few lines of VHDL in a FPGA.
@mikeselectricstuff
@mikeselectricstuff 8 лет назад
Yes you could, but you'd end up with a bigger package, more expensive part, and doing stuff like firmware upload over the bus get somewhat more complex.
@Sixta16
@Sixta16 8 лет назад
Bloody PIC32s... blyat! What type of PIC have you used there? (Want to compare and find a match in the ARM family). Thanks
@mikeselectricstuff
@mikeselectricstuff 8 лет назад
pic32mx150f128b
@DonkeyLearningIT
@DonkeyLearningIT 8 лет назад
Do you have some more upcoming teardown vids? Btw, why did you turn off the ads from your channel? It could at least re-scoop you some money which you could invest to buy cool stuff for teardowns.
@mikeselectricstuff
@mikeselectricstuff 8 лет назад
Yes - some really interesting stuff coming up but needs a lot of time to do justice & rather busy atm. I enable minimal ads on new vids & turn more on for older ones, so subscribers don't see too many.
@DonkeyLearningIT
@DonkeyLearningIT 8 лет назад
You should turn on the adds on all vids. Those people who want to see them, they will wait 5 seconds anyway. It is nerving that informative channels barely make money, and channels which present useless nonsense are having millions of subscribers and they SHAMELESSLY ask for more money and support...
@diffmull
@diffmull 8 лет назад
Note, for an advert to count towards monetization, the viewer must let it play for at least 30 seconds, or, obviously, entirely if shorter than 30 seconds.
@godfreypoon5148
@godfreypoon5148 8 лет назад
SPI (and similar) without DMA sucks in any case. You can either busy-wait between each Tx/Rx buffer load, or you can use an interrupt driven approach (or explicitly task switch) but by the time you have the task switching overhead out of the way you will be due for another buffer load. (Depending on your timing particulars, of course, but I mind this is virtually always the case.) ... not that this is necessarily relevant to your video, which I am only part way through watching ...
@DonkeyLearningIT
@DonkeyLearningIT 8 лет назад
At 15:01 is that a Not So Loud disco stamp on your hand? Nowadays the young generation no longer knows the good old Disco...
@mitropoulosilias
@mitropoulosilias 8 лет назад
i have no idea what you do and why in that video... Maybe because i have no idea on PIC controllers
@afroninjadeluxe
@afroninjadeluxe 8 лет назад
Wont the DMA overwrite the 7 other bits?
@djmips
@djmips 8 лет назад
Yes, but if you make sure that the other 7 bits are the ones you want, then your settings won't be changed.
@優さん-n7m
@優さん-n7m 7 лет назад
Use FPGA and you can have any number of any type of ports :)
@AlexTaradov
@AlexTaradov 8 лет назад
Now all of this works for TX only, of course.
@mdesm2005
@mdesm2005 8 лет назад
what language is he speaking?
@shomonercy
@shomonercy 8 лет назад
2x sped up future speak
@cmuller1441
@cmuller1441 8 лет назад
It's a 40 minutes English video with half the syllables skipped to make a shorter video 😆
@mdesm2005
@mdesm2005 8 лет назад
ahh, that could be it
@horle
@horle 8 лет назад
I think Mike's a girl. How else could anyone speak that quickly while barely breathing.
@hoodaly
@hoodaly 8 лет назад
Listening to your videos makes me become aggressive. You talk/murmur nonstop and I instantly lose focus, 5 seconds later BOOM I have forgotten everything you have said. I trust you that it's interesting stuff you talk about, but still watching feels pointless for me. Pls slow down a little and talk more clearly. Thanks :)
Далее
Shoving a LOT of data out of multiple USB-serial ports
12:55
How to use DMA on 8 bit PIC® MCUs
11:09
Просмотров 10 тыс.
无意间发现了老公的小金库 #一键入戏
00:20
ХУДШИЕ ВЫБОРЫ в США
13:20
Просмотров 530 тыс.
Realtime debugging using serial decode
19:21
Просмотров 31 тыс.
DMA Introduction Master - Slave Communication
16:02
Просмотров 19 тыс.
DMA Overview on PIC® MCUs
6:45
Просмотров 6 тыс.
Hacking a weird TV censoring device
20:59
Просмотров 3,2 млн
EEVacademy #3 - Bit Banging & SPI Tutorial
17:34
Просмотров 71 тыс.
STM32 DMA and FreeRTOS Tutorial - Phil's Lab #14
29:10
Просмотров 118 тыс.