[PATCH 1/2] beagle i2c: Add beaglebone i2c driver code

2017-03-30 Thread Sichen Zhao
From: Punit Vara This patch add the I2C driver code for Beaglebone Black: - Add beagle/i2c/bbb-i2c.c i2c driver code - Modify include/i2c.h - Modify beagle/Makefile.am But i2c can not work currently --- c/src/lib/libbsp/arm/beagle/Makefile.am | 4 +- c/src/lib/libbsp/arm/beagle/i2c/bbb-i2c

[PATCH 2/2] Beagle i2c: Update Beaglebone i2c driver code

2017-03-30 Thread Sichen Zhao
This patch modify the i2c code for Beaglebone Black based on PV works: - bbb-i2c.c: Modify the interrupt handler, transfer funciton, read function, am335x_i2c_busbusy function etc. Add flush_fifo function - include/i2c.h: Modify some macros, such as BBB_I2C_IRQ_ERROR Now the i2c is working on Bea

Re: bsp sorting for acinclude.m4

2017-03-30 Thread Chris Johns
On 31/03/2017 13:49, Joel Sherrill wrote: Sorry to top post. I am usually on CentOS​ 7 or whatever rtbf64c is running which is also CentOS 7 I think. I am not in a position to check that this evening. What do we need to check to narrow down the difference? The commands to test with are in thi

Re: bsp sorting for acinclude.m4 (was: ampolish3 sorting issues (again))

2017-03-30 Thread Joel Sherrill
Sorry to top post. I am usually on CentOS​ 7 or whatever rtbf64c is running which is also CentOS 7 I think. I am not in a position to check that this evening. What do we need to check to narrow down the difference? On Mar 30, 2017 7:15 PM, "Chris Johns" wrote: > On 31/03/2017 09:24, Chris Johns

Re: GSoC 2017

2017-03-30 Thread aditya upadhyay
Hello Amar, I have uploaded the first draft of my proposal. I request you and other experts to review and comment on the same. Thanks & Regards, Aditya On Wed, Mar 29, 2017 at 7:20 PM, Amar Takhar wrote: > On 2017-03-29 13:59 +0530, aditya upadhyay wrote: > > Hello Amar, > > i have followed thi

Re: bsp sorting for acinclude.m4 (was: ampolish3 sorting issues (again))

2017-03-30 Thread Chris Johns
On 31/03/2017 09:24, Chris Johns wrote: I am getting this on master (4.12) after a bootstrap on FreeBSD 11.0 so I am wondering if perl has changed something which effects us. It is not perl or ampolish3 related so the subject has changed. It is looking like a mismatch between a command line so

ampolish3 sorting issues (again)

2017-03-30 Thread Chris Johns
Hi, I am getting this on master (4.12) after a bootstrap on FreeBSD 11.0 so I am wondering if perl has changed something which effects us. Anyone else seeing this? I do not want to push a change if conflicts with other hosts. ruru rtems.git $ git diff diff --git a/c/src/lib/libbsp/bfin/acinc

Re: Queries regarding Tracing related bugs and GSoC 2017

2017-03-30 Thread vivek kukreja
Hello Gedare, everyone, I have created a ticket for the Run-Time Tracing project at: https://devel.rtems.org/ticket/2961#ticket The project description includes all the project ideas discussed on the Tracing projects page. Some details in the ticket may need to be modified for example the target R

Re: [PATCH 1/2] Beaglebone black i2c code, modify by Punit Vara - Add beagle/bbb-i2c.c i2c driver - Modify include/i2c.h - Modify Makefile.am But i2c cannot work currently

2017-03-30 Thread Gedare Bloom
Hi Sichen, Can you please make your git commit message a bit "cleaner" so that it appears more nicely in git-log and in the email subject? https://devel.rtems.org/wiki/Developer/Git#GitCommits Give a descriptive short first line, followed by a blank line, and then the more detailed commit message

[PATCH] configure: Remove defunct configure stuff

2017-03-30 Thread Sebastian Huber
--- cpukit/configure.ac | 2 -- 1 file changed, 2 deletions(-) diff --git a/cpukit/configure.ac b/cpukit/configure.ac index c3a0563..feecc1e 100644 --- a/cpukit/configure.ac +++ b/cpukit/configure.ac @@ -13,7 +13,6 @@ AM_MAINTAINER_MODE RTEMS_ENABLE_MULTILIB RTEMS_ENABLE_MULTIPROCESSING RTEMS_

[PATCH 2/2] Beaglebone Black i2c code, modify by Sichen Zhao - Modify the bbb-i2c.c code, base on Punit Vara code - Modify the include/i2c.h, base on Punit Vara code I2C is working now, BBB can read t

2017-03-30 Thread Sichen Zhao
--- c/src/lib/libbsp/arm/beagle/i2c/bbb-i2c.c | 370 -- c/src/lib/libbsp/arm/beagle/include/i2c.h | 11 +- 2 files changed, 150 insertions(+), 231 deletions(-) diff --git a/c/src/lib/libbsp/arm/beagle/i2c/bbb-i2c.c b/c/src/lib/libbsp/arm/beagle/i2c/bbb-i2c.c index cd

[PATCH 1/2] Beaglebone black i2c code, modify by Punit Vara - Add beagle/bbb-i2c.c i2c driver - Modify include/i2c.h - Modify Makefile.am But i2c cannot work currently

2017-03-30 Thread Sichen Zhao
--- c/src/lib/libbsp/arm/beagle/Makefile.am | 4 +- c/src/lib/libbsp/arm/beagle/i2c/bbb-i2c.c | 788 ++ c/src/lib/libbsp/arm/beagle/include/i2c.h | 153 +- 3 files changed, 926 insertions(+), 19 deletions(-) create mode 100644 c/src/lib/libbsp/arm/beagle/i2c/bb