What's the best way to do a software-controlled CPU reset?
Is there a quick and easy way to do a software reset on the RZ?Or is simply branching to the reset handler the appropriate way to do this?(I'm working on code that will download a new code image into...
View ArticleRE: RZ/A1L GPIO versus RZ/A1H GPIO
Thank you Chris.Can you tell me when the estimated release date of the BSP for the RZ/A1L is? Is there a development repository for it?
View ArticleRE: RZ/A1L GPIO versus RZ/A1H GPIO
The repository will be the same as the existing RZ/A1H.github.com/.../linux-3.14We will just be adding support for more Renesas boards, some of them based on RZ/A1L.If you are tracking the github...
View ArticleRE: RZA1H based board and starter kit LCD touchscreen on linux
Good news!I decided to delete everything and make a clean build and now I finally have /dev/input/event0 But if I try cat /dev/input/event0 nothing happens.Could it be the interrupt not working? How...
View ArticleRZA1H based board and starter kit LCD touchscreen on linux
Hi all!I'm working on a RZA1H based board. For demo purposes I'm trying to use the LCD touchscreen panel that came with the RZA1H starter kit +. I managed to show images on the screen, but I'm...
View ArticleRE: RZA1H based board and starter kit LCD touchscreen on linux
So, now when I power on the board i get this errors:------------[ cut here ]------------WARNING: at fs/sysfs/dir.c:536 sysfs_add_one+0x78/0x98()sysfs: cannot create duplicate filename...
View ArticleRE: RZA1H based board and starter kit LCD touchscreen on linux
Further informations!I tried ts_test and when I touch the screen it promps out:i2c-riic i2c-riic.3: i2c bus is busy. ft5x06-ts 3-0038: Unable to write to i2c...
View ArticleRE: What's the best way to do a software-controlled CPU reset?
Thanks. I got that working fairly easily - but now I'm having trouble clearing the WOVF bit at startup. I've gone over the user manual and think I'm following all the proper steps - but I end up in...
View ArticleRE: RZA1H based board and starter kit LCD touchscreen on linux
> sysfs: cannot create duplicate filename '/devices/platform/i2c-riic.3'> UPDATE::> Removing: platform_device_register_full(&riic3_info);> from my board.c fixed the errors at boot.My...
View ArticleRE: XIP Kernel with Single Quad-SPI on RZ/A1 RSK
One other thing I noticed is that u-boot uses the bank command as well. So, if you do a read of an address above 16MB (sf read xxx) , it sets the bank register which might screw things up when you boot...
View ArticleRE: What's the best way to do a software-controlled CPU reset?
>but now I'm having trouble clearing the WOVF bit at startup.The WOVF will be cleared automatically on reset. You should not have to do anything.>Where can I find the Linux BSP code that does...
View ArticleRE: RZA1H based board and starter kit LCD touchscreen on linux
None of the line is low. If I touch the screen the interrupt line goes down, and on SDA and SCL I see some waveform. The reset pin is always up.If I try "i2cdetect 3" I get: 0 1 2 3 4 5 6 7...
View ArticleRE: What's the best way to do a software-controlled CPU reset?
According to section 12.5.5 of the User's manual, the WOVF bit is NOT cleared when a watchdog reset occurs. Thus, it needs to be cleared manually - or else a subsequent watchdog reset will not occur.I...
View ArticleRE: What's the best way to do a software-controlled CPU reset?
oops, you're right. sorry (was getting confused with another SoC).That bit stays set so SW can know a WDT occurred.Well, I can say that the reset code above is the only code in the BSP that writes to...
View ArticleRE: What's the best way to do a software-controlled CPU reset?
Actually, no. According to the user manual, reads from the WRCSR register must be done as 8-bit reads. Even the Linux code does this. (I had to create the "WRCSR_R" macro myself - since the .h files...
View ArticleRE: RZ A1/M mirror RAM not available
Hi,of course it can work by using a cached area, it is just that the mirrored addresses are not supported on the M targetUn-cached areas for the video buffers are easier to handle at first (since you...
View ArticleRZ A1/M mirror RAM not available
I had taken trail with A1/H RSK board and in that mirror RAM was used for lcd buffer and I had also observed that it doesn't work in cached RAM.Now I want to modified my current A1/H BSP to A1/M which...
View ArticleRE: USB Ethernet Gadget Support on RZ/A1 RSK BSP
Please note that the instructions specify to leave J11 "OPEN", but the picture shows it jumpered. I've tried both ways and neither seem to make a difference.
View ArticleRE: USB Ethernet Gadget Support on RZ/A1 RSK BSP
You want to leave J11 open, otherwise the RZ board will back feed 5 volts to the host PC on the VBUS pin. Remember, gadgets are not supposed to be driving the VCC line in a USB connector.After you plug...
View ArticleUSB Ethernet Gadget Support on RZ/A1 RSK BSP
The RZ/A1 BSP ships with some documentation that shows how to use the mini USB port 0 on the Dev Kit as an "Ethernet over USB" gadget. Those instructions can be found...
View Article