This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Working with DM6467T GPIOs with git linux

Hi,

 We intend to use GPIOs 4,5,36 and 38 on dm6467T over git linux v2.6.32. We are using

        gpio_request(gpioOut, NULL);
        gpio_direction_output(gpioOut , 1);

        while(!(__gpio_get_value(gpioIn)));
        gpio_set_value(gpioOut, 0);
        msleep(800);
        gpio_set_value(gpioOut, 1);

Here gpioIn can be GPIO-04 or GPIO-05 and gpioOut is GPIO-36 or GPIO-38 on DM6467T .

We are only able to read GPIO-04 and GPIO-05 levels correctly but we are uable to set the levels on GPIO-36 and GPIO-38.

Please let me know if GPIO initializations are taking place correctly in GIT linux 2.6.32. Any pointers or references in how we can set the GPIO levels under git.

Regards