Difference between revisions of "BeagleBoard/GSoC/2019Proposal/GPIOParallelBidirComm"

From eLinux.org
Jump to: navigation, search
m (Introduction)
m (Week 9 : Milestone #9)
Line 108: Line 108:
 
'''By this time the time for Phase II evaluation: I will be able to deliver library for the user space,  
 
'''By this time the time for Phase II evaluation: I will be able to deliver library for the user space,  
 
===== Week 9 : Milestone #9 =====
 
===== Week 9 : Milestone #9 =====
* fixing bugs error and  
+
* fixing bugs error and making support for
*expanding the support for the driver in python  
+
* making or implementing the library made a with a game controller pocket beagle.
 +
* creating and modifying code so that it usability can increase
 +
* expanding the support for the driver support in python
 +
 
 
===== Week 10 : Milestone #10 =====
 
===== Week 10 : Milestone #10 =====
  

Revision as of 14:38, 2 April 2019

Reference Design For A GPIO-based Parallel Bi-Directional Bus

Student: Pranav Kumar
Mentors: Andrew Henderson, Zubeen Tolani
Code:
Wiki: https://elinux.org/index.php?title=/BeagleBoard/GSoC/GPIO-parallel-bi-dir-bus

Status

Create a hardware/software design will incorporate shift registers (and potentially logic level converter solutions as appropriate) to allow BB.org hardware to communicate with hardware via a parallel, bi-directional bus.

Tasks Done

I have completed the task required as described on the ideas page, and created a pull request, as listed here

About Me

IRC: pranav_kumar
Github: https://github.com/pranav083
E-Linux Username: pranav083
School: UIET,Panjab University,Chandigarh
Country: India
Primary language: English,Hindi
Typical work hours: 9:30 - 23:00 IST GMT/EST/PST to Ist Adjusted Time
Previous GSoC participation: This is my first time participation in gsoc .I got intrested for it by seeing the vast amount of development for open source hardware around the world .And i also want to become a part of it.
Skills: C,Python,ROS,OpenCV,Embeddded C,Electronics Prototying,circuit designing

Tools(proficient) : Git, Linux

Experience : C, Python, Java, HTML, CSS, JavaScript, Arduino

Hardware Skills: Raspberry Pi, ICs, Circuit Designing, Atmel chip, I2C, circuit debugging

Reference Design For A GPIO-based Parallel Bi-Directional Bus

Project name: Reference Design For A GPIO-based Parallel Bi-Directional Bus

Introduction

swift register 74hc299

In digital circuits, a shift register is a cascade of flip flops, sharing the same clock, in which the output of each flip-flop is connected to the 'data' input of the next flip-flop in the chain, resulting in a circuit that shifts by one position the 'bit array' stored in it, 'shifting in' the data present at its input and 'shifting out' the last bit in the array, at each transition of the clock input.

This is 74hc299 which is 8-bit universal shift register figure on the right side of the page .

As many projects require a large number of input/output pins to make the project interfacing other the other microcontroller it's having a huge requirement GPIO(e.g game controller etc.). As pocket beagle is small yet very power packed low-power board in which the GPIO are pinmux with the other peripherals and having many functionalities on the same pin like (SPI, USART), that led to the shortage of pins on the board.

As it can be seen that GPIO having simple input /output (without pinmux) are very less in number which makes it really hard to use pocket beagle to use in projects where their large requirement of I/O pins. Buts as it has two powerful PRU of with a 32‐bit RISC processor at 200MHz with single-­cycle pin access for hard realme. So it makes it very easy for implementing multiple inputs and outputs control at high speed through a few GPIO pins.

gpio without pinmux

Pins are shown above that have a boundary of yellow rectangle shows the no. of pin available in pocket beagle that is without pinmux with them.

Project Overview

the BeagleBone family has a large number of pins available on their P8/P9 headers, projects requiring a large amount of GPIO I/O may still be infeasible due to pinmux conflicts with other interfaces (SPI, UARTs, etc.). The newer PocketBeagle platform is even more restricted in the number of available GPIOs for interfacing. In addition, bi-directional bus communication using GPIOs is infeasible, as each GPIO is configured for either input or output. This project will combine your hardware and software skills to address these limitations by creating a shift register-based hardware design that will allow serial streams of data going in/out of the PocketBeagle or BeagleBone family GPIOs to be mapped into a bi-directional communications bus. Some practical uses of this are for GPIO-based game controller inputs (using *lots of buttons*), communication address/data buses for interfacing with older microcontrollers and microprocessors, and providing large numbers of logical bi-directional GPIOs.

Sometimes a project needs to have multiple inputs /outputs just for example interfacing LCD Display ,Interfacing a multiple button controller like game controller, there is need for interfacing external memory like (eg. 8kx8 SRAM older low memory version or 28f400 Flash Memory ) in which their needs to be need of multiple data line to be there in a controller to use it.

Detailed Description

Progress till now

First of all, I studied the internal mapping of the PRU in the pocket Beagle and find out the usable GPIO in the pocket beagle that will be suitable for this project.

GPIO used in this project

I am able to interface swift register with the pocketBeagle And working

[hendersa]: Mention your existing C code here and link to the GitHub project for it. For additional preliminary work, consider adding a few functions in your C code to set the read/write mode of the bus and to read/write data to/from the bus. This way, you can show that you've thought through the entire bus interfacing process and have a preliminary prototype that uses the (very slow) filesystem I/O interface. The logic in this prototype can then be used as a blueprint to build a more complex code. This will make your proposal much stronger.

Timeline:

Community Bonding Period

  • Studying and getting further in-depth knowledge of the PRU and knowing the further use cases of the project through the mentor and another community member.
  • Discussing the type of coding standard to be followed in the code with the mentors
  • If any changes are suggested making changes in according to that
  • Discussing the guideline followed for documentation
  • study the device tree of the pocketbeagle for
  • Studying the Datasheet so that during the implementation period it makes easier to apply things in a more smooth way.
Week 1 : Milestone #1
  • As I was already working on the swift register interfacing with the pocket beagle will work on further improving the code for different use cases
  • Testing it with different input and output modes on different GPIOs
Week 2 : Milestone #2
  • Check for signal accuracy and any delay if occurring which occurring while running different test cases using CRO.
  • In the meantime check for any loss which is occurring in this circuit
  • Testing and Debugging the circuit making circuits for the by implementing it with different input and output with different programs and making the design of the circuit on PCB as an addon for pocketbeagle.
  • As I will get be known to most aspect of the hardware and PRU for now so it will be easier to exploit more from it, to move toward the development of kernel drivers
Week 3 : Milestone #3
  • developing Linux kernel module for the kernel userspace
  • testing and debugging if any problem is caused in between the development
Week 4 : Milestone #4
  • expanding device driver capability to communicate taking input or output at different baud rates
  • Testing the communication and synchronization with other peripherals and logic analyzer
  • Preparing slides of the completed work and check for any bugs in the driver.


by this time the time for Phase I evaluation: I will deliver kernel driver, circuits, effects of shift register on the different GPIOs of the pocket beagle

Week 5 : Milestone #5
  • Try to fix any bug if it is there in the kernel driver
  • start to develop library in c for the userspace
  • Documenting the work
Week 6 : Milestone #6
  • making first project that will be a game controller using the pocket beagle
  • testing and writing code for it as
Week 7 : Milestone #7
Week 8 : Milestone #8

By this time the time for Phase II evaluation: I will be able to deliver library for the user space,

Week 9 : Milestone #9
  • fixing bugs error and making support for
  • making or implementing the library made a with a game controller pocket beagle.
  • creating and modifying code so that it usability can increase
  • expanding the support for the driver support in python
Week 10 : Milestone #10
Week 11 : Milestone #11
Week 12 : Milestone #12
Week 13 : Milestone #13

As the another p

Week 14 : Milestone #14

Final Goals:

Successfully completing the project and creating a library for it and making a whole new open source code and DIY guides by which it help the community further to explore the Pocket Beagle.

Experience

As I am from Electronics background and always involved in creating in making projects related to micro-controller.I like to learn new things in my day to day life. I have made a 3D printer that works both as a 2D printer and 3D printer using the hardware modules of a 3d printer and Open Source Marlin Firmware. Worked on finite state machines using an embedded system. And I take sessions in our college to spread knowledge among ourself with common interests. I love to contribute to open source where people can help each and clearing one another problems.


Previous Contributions to Open-Source

  • Making a lighter and less complex multifunctional line Following algorithm using FSM that is easy to implement and build.
  • Lead the team of NGO making projects for school going children with full DIY guide and Documentation Github.
  • Making a short script for login into our university wifi Github Link.
  • Take the initiative to have an Open-Source Community section of India on OSRF official ROS-Discourse so that people can openly know to each other.

Contributions to this project

There was no upstream repository for this project. So, I make one and started contributing to it by starting from the interfacing shift register github. And for this project, I have created another repository on GitHub https://github.com/pranav083/pocketbeagle-bi-dir-comm.

Participations

  • Participated in Hacktober fest 2018.
  • Suggesting an efficient prototype of Harvester at eYIC, IIT Bombay(Country level competition) Docs.
  • Won PocketBeagle from Mouser electronics event at IIT Roorkee, India.

Approach

As I will be on my break period from my college after semesters exam. So, I can devote my full time on this project and there will be enough time for me to learn, explore and implement new things and successfully able to complete this project on time.

Benefit

It will largely impact the way people who want multiple inputs or output capability in their projects or those who want to interface different memory device with the pocket beagle. it also opens new capability by open an entire world of a new project that can get incorporated with the help of pocket beagle for ex. making a scientific calculator with the help of it, etc.

What community members speak

After making this project for the community, I am looking forward to working more with the hardware-software integrated project and want to help pocketbeagle to made easy to use in projects for newbies.

Sure, that would be very useful. You'll have to think about how you'd do that in the PRU firmware.
                                            -Andrew Henderson(hendersa)

Future Contributions

As always I will like to contribute further in the open source community and spread my word to my local community by spreading the easy of making project using beaglebone family and its advantages over other controllers, And the way people help each other especially.