RE: salvator x board
Hi,this forum is for RZ.Please refer toelinux.org/.../Salvator-Xhttp://elinux.org/R-Carfor further information and support.
View ArticleRE: RZA1 RSK GPIO Issue with SysFs
Where are you probing the P2_0 signal? What header? Or are you probing the pad where the Ethernet chip once was (you said you removed it)If you look on the RSK schematic, IC29 is a pin multiplexer, and...
View ArticleRZA1 RSK GPIO Issue with SysFs
On the RZA1 RSK dev kit, we removed the ethernet chip and we were able to use the ETH_IRQ as IRQ6 by pinmuxing pin P4_14 in the kernel board file, board-rskrza1.c:r7s72100_pfc_pin_assign(P4_14, ALT8,...
View ArticleRE: SPI chip select signal stay low too long
The reason for the delay is that while the SPI driver is waiting for the transfer to complete, it puts that kernel thread to sleep. When the transfer finishes, the interrupt routine wakes up the...
View ArticleRE: RZA1 RSK GPIO Issue with SysFs
Thank you Chris - it works now. I did not realize that DIR_IN means Software Controlled GPIO.. Thanks.
View ArticleRE: SPI chip select signal stay low too long
Hi Chris, thank you for your quick answer.Can you tell me a little more detail on how to do that? I will have no choice but doing that.
View ArticleSPI chip select signal stay low too long
Hi,I am using the RSPI driver on a rza1m CPU on a custom board. I want to get multiple register value from ADE. The speed is very important since I need to refresh all value every 100ms. I have...
View ArticleRE: SPI chip select signal stay low too long
You would edit the file drivers/spi/spi-rspi.cThen, you would make the following changes: #include <linux/spinlock.h> static int rspi_wait_for_interrupt(struct rspi_data *rspi, u8 wait_mask, u8...
View ArticleRE: SPI chip select signal stay low too long
Thank you for your answer. I will give it a try.
View ArticleRE: [RZ/A1H][VDC5] Reducing the size of graphic frame
From a technical standpoint, the VDC5 can drive a WVGA display (800x480), but only use a smaller frame buffer (like QVGA or something). You would just see a smaller image on the bigger LCD.Basically,...
View ArticleHibernation/suspend to disk support in RZ/G1E starter kit.
Hi everyone,1. I followed steps given in http://elinux.org/RZ-G/Boards/SK-RZG1E for running yocto on RZ/G1E for kernel 3.102. On top of this , I applied patch...
View ArticleRE: [RZ/A1H][VDC5] Reducing the size of graphic frame
> 1. Scale down the size of graphic frame. But as my understanding,> It's just possible for graphic 0 and graphic 1 only, is this right? (in our case, graphic 2 is selected)>Your understanding...
View ArticleRE: [RZ/A1H][VDC5] Reducing the size of graphic frame
Hi all,Thanks for your support.By using the Chroma-key processing (VDC5) on graphic 2, currently, the size of graphic frame is decreased from 1500 KB (800x480x4) to 1152 KB (800x480x3) and graphic 0...
View Article[RZ/A1H][VDC5] Reducing the size of graphic frame
Hello everyone,Currently, I'm developing image processing on RSK board (RZ/A1H platform) using VDC5 module and using TFT LCD panel (800x480) to show the output image. The BSP package which is...
View ArticleRE: Can't get I2C to work
// Release reset RIIC1.RIICnCR1.UINT8[0] &= ~RIICn_RIICnCR1_IICRST; You are holding the peripheral in reset while you are doing your init sequence, so I'm not sure if any of those setting will...
View ArticleRE: Can't get I2C to work
Hello Chris,Thank you for your reply.I am holding the peripheral in internal reset because the user manual says so (RZ A1H/M rev 2.0 pages 18-46 to 18-49). The BBSY, MST, and TRS bits are read-only and...
View ArticleRE: Can't get I2C to work
OK, I see that in the manual. I usually just reset it the begin and then leave it.But, you set RIICn_RIICnCR1_ICE, but you never clear it. I'm not sure if that clears by itself.What if you did this://...
View ArticleCan't get I2C to work
Hi,I am trying to control a digital pot via I2C, but I can't get it to work. I have added the code for initialization and transmission below. The clock for I2C channel 1 is enabled and the SCL and SDA...
View ArticleRE: RZA1 RSK USB Host Bandwidth Issue
Unfortunately, at the moment the DMA is not used for USB in the BSP, so transfers are done using PIO mode and what you are probably running into is the non-realtime scheduling of the USB and driver...
View Article