]> git.sur5r.net Git - u-boot/blobdiff - doc/README.omap3
Net: Clean up LAN91C96 Support
[u-boot] / doc / README.omap3
index 7ac521f76223b6b6f7161ab3033854ac141d4b92..6227151f8e974878459ea05ad92ce1ba0c2415a7 100644 (file)
@@ -11,6 +11,16 @@ Currently the following boards are supported:
 
 * OMAP3530 BeagleBoard [2]
 
+* Gumstix Overo [3]
+
+* TI EVM [4]
+
+* OpenPandora Ltd. Pandora [5]
+
+* TI/Logic PD Zoom MDK [6]
+
+* TI/Logic PD Zoom 2 [7]
+
 Toolchain
 =========
 
@@ -26,6 +36,31 @@ Build
 make omap3_beagle_config
 make
 
+* Gumstix Overo:
+
+make omap3_overo_config
+make
+
+* TI EVM:
+
+make omap3_evm_config
+make
+
+* Pandora:
+
+make omap3_pandora_config
+make
+
+* Zoom MDK:
+
+make omap3_zoom1_config
+make
+
+* Zoom 2:
+
+make omap3_zoom2_config
+make
+
 Custom commands
 ===============
 
@@ -49,10 +84,42 @@ For all other commands see
 
 help
 
+Interfaces
+==========
+
+gpio
+
+To set a bit :
+
+       if (!omap_request_gpio(N)) {
+               omap_set_gpio_direction(N, 0);
+               omap_set_gpio_dataout(N, 1);
+       }
+
+To clear a bit :
+
+       if (!omap_request_gpio(N)) {
+               omap_set_gpio_direction(N, 0);
+               omap_set_gpio_dataout(N, 0);
+       }
+
+To read a bit :
+
+       if (!omap_request_gpio(N)) {
+               omap_set_gpio_direction(N, 1);
+               val = omap_get_gpio_datain(N);
+               omap_free_gpio(N);
+       }
+       if (val)
+               printf("GPIO N is set\n");
+       else
+               printf("GPIO N is clear\n");
+
+
 Acknowledgements
 ================
 
-OMAP3 U-Boot is based on U-Boot tar ball [3] for BeagleBoard and EVM done by
+OMAP3 U-Boot is based on U-Boot tar ball [8] for BeagleBoard and EVM done by
 several TI employees.
 
 Links
@@ -67,6 +134,25 @@ http://www.ti.com/omap35x (broad market)
 
 http://beagleboard.org/
 
-[3] TI OMAP3 U-Boot:
+[3] Gumstix Overo:
+
+http://www.gumstix.net/Overo/
+
+[4] TI EVM:
+
+http://focus.ti.com/docs/toolsw/folders/print/tmdxevm3503.html
+
+[5] OpenPandora Ltd. Pandora:
+
+http://openpandora.org/
+
+[6] TI/Logic PD Zoom MDK:
+
+http://www.logicpd.com/products/devkit/ti/zoom_mobile_development_kit
+
+[7] TI/Logic PD Zoom 2
+
+http://www.logicpd.com/sites/default/files/1012659A_Zoom_OMAP34x-II_MDP_Brief.pdf
+[8] TI OMAP3 U-Boot:
 
 http://beagleboard.googlecode.com/files/u-boot_beagle_revb.tar.gz