Re: [PATCH v2 1/6] Imported files for driver: bcm283x_dwcotg

2016-08-28 Thread Christian Mauderer
Am 27.08.2016 um 13:16 schrieb Deval Shah: > > > On Tue, Aug 23, 2016 at 7:08 PM, Sebastian Huber > > wrote: > > I updated the MMC support to use the FreeBSD trunk, 2016-08-23, > 9fe7c416e6abb28b1398fd3e5687099846800cfd. It would be great if yo

Re: [PATCH v2] Mailbox : Extending functionality

2016-08-28 Thread Mudit Jain
Hi, That's great news Pavel. Should I start merging all your findings and push it as a patch ? What would be the next steps ? Thanks Mudit ___ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel

RPi SD card Driver

2016-08-28 Thread Mudit Jain
Hi all, Good News !! I have successfully moved my changes on top of the recent MMC stack update to use the FreeBSD trunk, 2016-08-23, 9fe7c416e6abb28b1398fd3e5687099846800cfd The GitHub Link : https://github.com/spark1729/rtems-libbsd/commits/RPI_SD_LIBBSD Sebastian, if you can review the commi

[PATCH 2/2] posix: simplify paths and check errors in shm_open

2016-08-28 Thread Gedare Bloom
--- cpukit/posix/src/shmopen.c | 84 +++--- 1 file changed, 49 insertions(+), 35 deletions(-) diff --git a/cpukit/posix/src/shmopen.c b/cpukit/posix/src/shmopen.c index 7823785..cbea88c 100644 --- a/cpukit/posix/src/shmopen.c +++ b/cpukit/posix/src/shmopen.

Re: [PATCH v2] Mailbox : Extending functionality

2016-08-28 Thread Pavel Pisa
Hello Mudit, On Sunday 28 of August 2016 09:27:16 Mudit Jain wrote: > Hi, > > That's great news Pavel. > Should I start merging all your findings and push it as a patch ? > What would be the next steps ? I suggest to invest the time into SD part of the project now. It needs to use DMA as well. As

[PATCH 2/7] SD Card : Changes over initial commit

2016-08-28 Thread Mudit Jain
--- freebsd/sys/arm/broadcom/bcm2835/bcm2835_dma.c | 13 + libbsd_waf.py | 3 ++- rtemsbsd/include/bsp/nexus-devices.h | 7 +++ rtemsbsd/include/machine/rtems-bsd-nexus-bus.h | 21 + 4 files changed, 43 insertions(+),

[PATCH 4/7] SD Card : Clean addition of Kernel Source Files

2016-08-28 Thread Mudit Jain
--- freebsd/sys/dev/sdhci/sdhci.c | 1510 + freebsd/sys/dev/sdhci/sdhci.h | 326 + libbsd.txt|1 + 3 files changed, 1837 insertions(+) create mode 100644 freebsd/sys/dev/sdhci/sdhci.c create mode 100644 freebsd/sys/dev/sdhc

[PATCH 6/7] SD Card : Changes over the initial commit for SD

2016-08-28 Thread Mudit Jain
--- freebsd/sys/arm/broadcom/bcm2835/bcm2835_sdhci.c | 19 + freebsd/sys/dev/sdhci/sdhci.c| 19 + freebsd/sys/dev/sdhci/sdhci.h| 5 + libbsd_waf.py| 1 + rtemsbsd/include/bsp/nexus-dev

[PATCH 5/7] SD Card : Intial Port of SD card driver files

2016-08-28 Thread Mudit Jain
--- freebsd/sys/arm/broadcom/bcm2835/bcm2835_sdhci.c | 677 +++ libbsd.py| 2 + libbsd.txt | 1 + libbsd_waf.py| 1 + rtemsbsd/include/rtems/bsd/local/sdhci_i

[PATCH 3/7] SD Card : Clean deletion of old sdhci files

2016-08-28 Thread Mudit Jain
--- freebsd/sys/dev/sdhci/sdhci.c | 1907 - freebsd/sys/dev/sdhci/sdhci.h | 190 2 files changed, 2097 deletions(-) delete mode 100644 freebsd/sys/dev/sdhci/sdhci.c delete mode 100644 freebsd/sys/dev/sdhci/sdhci.h diff --git a/freebsd/sys/dev/sdhci/

[PATCH 7/7] SD Card : Added basic test suite

2016-08-28 Thread Mudit Jain
--- libbsd.py | 1 + libbsd_waf.py | 10 ++ testsuite/sdhci01/test_main.c | 46 +++ 3 files changed, 57 insertions(+) create mode 100644 testsuite/sdhci01/test_main.c diff --git a/libbsd.py b/libbsd.py index 4ad

[PATCH 1/7] SD Card : DMA Controller intial port.

2016-08-28 Thread Mudit Jain
--- freebsd/sys/arm/broadcom/bcm2835/bcm2835_dma.c | 768 +++ freebsd/sys/arm/broadcom/bcm2835/bcm2835_dma.h | 60 ++ freebsd/sys/arm/broadcom/bcm2835/bcm2835_vcbus.h | 72 +++ libbsd.py| 13 + 4 files changed, 913 insertions(+) c