Send commitlog mailing list submissions to
commitlog@lists.openmoko.org
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.openmoko.org/mailman/listinfo/commitlog
or, via email, send a message with subject or body 'help' to
commitlog-requ...@lists.openmoko.org
You can reach the person managing the list at
commitlog-ow...@lists.openmoko.org
When replying, please edit your Subject line so it is more specific
than "Re: Contents of commitlog digest..."
Today's Topics:
1. r5556 - in trunk/gta02-core: . docs/ecn (da...@docs.openmoko.org)
2. r5557 - trunk/eda/fped (wer...@docs.openmoko.org)
3. r5558 - trunk/gta02-core/modules (wer...@docs.openmoko.org)
4. r5559 - in trunk/gta02-core: . docs/ecn (da...@docs.openmoko.org)
--- Begin Message ---
Author: daveb
Date: 2009-08-27 12:59:51 +0200 (Thu, 27 Aug 2009)
New Revision: 5556
Modified:
trunk/gta02-core/cpu.sch
trunk/gta02-core/docs/ecn/ecn0027.txt
trunk/gta02-core/gta02-core.sch
Log:
rename INTO/INT0 net, and note some of the other renamed nets
Modified: trunk/gta02-core/cpu.sch
===================================================================
--- trunk/gta02-core/cpu.sch 2009-08-27 09:46:44 UTC (rev 5555)
+++ trunk/gta02-core/cpu.sch 2009-08-27 10:59:51 UTC (rev 5556)
@@ -1,5 +1,5 @@
-EESchema Schematic File Version 2 date Wed Aug 26 18:32:51 2009
-LIBS:power,device,conn,gta02-core,gta02-core-cache
+EESchema Schematic File Version 2 date Thu 27 Aug 2009 11:40:56 BST
+LIBS:power,device,conn,gta02-core
EELAYER 24 0
EELAYER END
$Descr A3 16535 11700
@@ -730,7 +730,7 @@
1 0 0 -1
$EndComp
Text GLabel 4900 4800 2 60 Output ~ 0
-INTO
+GSM_INT
Text GLabel 4900 4950 2 60 Output ~ 0
nGSM_EN
Text GLabel 4900 6000 2 60 Output ~ 0
Modified: trunk/gta02-core/docs/ecn/ecn0027.txt
===================================================================
--- trunk/gta02-core/docs/ecn/ecn0027.txt 2009-08-27 09:46:44 UTC (rev
5555)
+++ trunk/gta02-core/docs/ecn/ecn0027.txt 2009-08-27 10:59:51 UTC (rev
5556)
@@ -9,7 +9,24 @@
Openmoko gta02-core Connects
--------------- ---------------
----------------------------------------------
EXTINT0 GPS_EXTINT U1501A nXDREQ1/GPB8 U7608 P9/EXTINT0
+INT0 GSM_INT U1501H CAMDATA3/GPJ3 n/a
+PIO10 WL_ACTIVE
+PIO9 BT_ACTIVE
+SPI_MISO0 WLAN_SPIMISO
+SPI_MOSI0 WLAN_SPIMOSI
+SPI_CLK0 WLAN_SPICLK
+SS0 WLAN_SS
+RX_MODEM MODEM_RX
+TX_MODEM MODEM_TX
+CTS_MODEM MODEM_CTS
+RTS_MODEM MODEM_RTS
+SPI_MISO1 ACCEL_SPIMISO
+SPI_MOSI1 ACCEL_SPIMOSI
+SPI_CLK1 ACCEL_SPICLK
+G1_INT nACCEL_INT1
+G2_INT nACCEL_INT2
+
This ECN is a compilation of changes made by various people, so the
"author" is actually just (one) editor.
Modified: trunk/gta02-core/gta02-core.sch
===================================================================
--- trunk/gta02-core/gta02-core.sch 2009-08-27 09:46:44 UTC (rev 5555)
+++ trunk/gta02-core/gta02-core.sch 2009-08-27 10:59:51 UTC (rev 5556)
@@ -1,5 +1,5 @@
-EESchema Schematic File Version 2 date Wed Aug 26 18:18:32 2009
-LIBS:power,device,conn,gta02-core,gta02-core-cache
+EESchema Schematic File Version 2 date Thu 27 Aug 2009 11:41:00 BST
+LIBS:power,device,conn,gta02-core
EELAYER 24 0
EELAYER END
$Descr A3 16535 11700
@@ -160,7 +160,7 @@
DL_GSM
NoConn ~ 13450 7600
Text GLabel 13650 7600 2 60 Input ~ 0
-INTO
+GSM_INT
NoConn ~ 13450 7300
NoConn ~ 13450 7150
NoConn ~ 13450 7000
--- End Message ---
--- Begin Message ---
Author: werner
Date: 2009-08-27 16:24:54 +0200 (Thu, 27 Aug 2009)
New Revision: 5557
Modified:
trunk/eda/fped/TODO
trunk/eda/fped/fpd.y
Log:
Cause in TODO, effect:
- pad type wasn't optional
Modified: trunk/eda/fped/TODO
===================================================================
--- trunk/eda/fped/TODO 2009-08-27 10:59:51 UTC (rev 5556)
+++ trunk/eda/fped/TODO 2009-08-27 14:24:54 UTC (rev 5557)
@@ -36,6 +36,8 @@
- whenever we call parse_* for input parsing, we may leak lots of expressions
- can't edit measurement labels through the GUI
- unbalanced parentheses in text throw off Postscript syntax
+- when starting, Gtk+ may issue many "extension [...] missing" warnings, which
+ can (and did) hide warnings about real problems
Code cleanup:
- merge edit_unique with edit_name
Modified: trunk/eda/fped/fpd.y
===================================================================
--- trunk/eda/fped/fpd.y 2009-08-27 10:59:51 UTC (rev 5556)
+++ trunk/eda/fped/fpd.y 2009-08-27 14:24:54 UTC (rev 5557)
@@ -512,14 +512,19 @@
;
pad_type:
- ID
{
+ $$ = pt_normal;
+ }
+ | ID
+ {
if (!strcmp($1, "bare"))
$$ = pt_bare;
else if (!strcmp($1, "paste"))
$$ = pt_paste;
- else
- $$ = pt_normal;
+ else {
+ yyerrorf("unknown pad type \"%s\"", $1);
+ YYABORT;
+ }
}
;
--- End Message ---
--- Begin Message ---
Author: werner
Date: 2009-08-28 01:16:21 +0200 (Fri, 28 Aug 2009)
New Revision: 5558
Modified:
trunk/gta02-core/modules/tst.fpd
Log:
- forgot to name tst.fpd, silly ...
Modified: trunk/gta02-core/modules/tst.fpd
===================================================================
--- trunk/gta02-core/modules/tst.fpd 2009-08-27 14:24:54 UTC (rev 5557)
+++ trunk/gta02-core/modules/tst.fpd 2009-08-27 23:16:21 UTC (rev 5558)
@@ -1,6 +1,6 @@
/* MACHINE-GENERATED ! */
-package "_"
+package "TST"
unit mm
set d = 1.2mm
--- End Message ---
--- Begin Message ---
Author: daveb
Date: 2009-08-28 01:17:39 +0200 (Fri, 28 Aug 2009)
New Revision: 5559
Modified:
trunk/gta02-core/cpu.sch
trunk/gta02-core/docs/ecn/ecn0001.txt
Log:
reinstate the lost HDQ
Modified: trunk/gta02-core/cpu.sch
===================================================================
--- trunk/gta02-core/cpu.sch 2009-08-27 23:16:21 UTC (rev 5558)
+++ trunk/gta02-core/cpu.sch 2009-08-27 23:17:39 UTC (rev 5559)
@@ -1,4 +1,4 @@
-EESchema Schematic File Version 2 date Thu 27 Aug 2009 11:40:56 BST
+EESchema Schematic File Version 2 date Fri 28 Aug 2009 00:16:31 BST
LIBS:power,device,conn,gta02-core
EELAYER 24 0
EELAYER END
@@ -13,530 +13,540 @@
Comment3 ""
Comment4 ""
$EndDescr
-NoConn ~ 13450 5900
-Text Notes 10750 5850 0 50 ~ 0
-removed nACCEL_CS network ECN0016
-Text Notes 10750 5700 0 50 ~ 0
-removed nHOLD network ECN0031
-NoConn ~ 13450 5800
-NoConn ~ 3450 5450
-NoConn ~ 3450 5550
-Text Notes 4000 5600 0 50 ~ 0
-Removed KEEPACT net and R1546 - ecn0007
-Text Notes 4000 5700 0 50 ~ 0
-Removed SHUTDOWN net and R1545 - ecn0003
-Text Notes 4550 7000 0 50 ~ 0
-Connect CLKOUT1 to \nUEXTCLK - ecn0025
+Text Notes 4700 9200 0 50 ~ 0
+HDQ moved\necn0001
Wire Wire Line
- 3450 7300 4600 7300
+ 3450 8950 4050 8950
Wire Wire Line
- 4900 5400 4700 5400
+ 4050 9050 4050 8950
Wire Wire Line
- 4700 5400 4700 5350
+ 4700 9050 4050 9050
Wire Wire Line
- 4700 5350 3450 5350
+ 4600 7200 4600 7300
Wire Wire Line
- 4900 4800 4000 4800
+ 4600 7200 4800 7200
Wire Wire Line
- 4000 4800 4000 4950
+ 4900 4350 3700 4350
Wire Wire Line
- 4000 4950 3450 4950
+ 4900 4950 4100 4950
Wire Wire Line
- 3450 5250 4900 5250
+ 4100 4950 4100 5050
Wire Wire Line
- 4900 5850 3800 5850
+ 4100 5050 3450 5050
Wire Wire Line
- 3800 5850 3800 5650
+ 4900 6000 3700 6000
Wire Wire Line
- 3800 5650 3450 5650
+ 3700 6000 3700 5750
Wire Wire Line
- 4900 6150 3600 6150
+ 13450 6200 13250 6200
Wire Wire Line
- 3600 6150 3600 5850
+ 13250 6200 13250 6300
Wire Wire Line
- 11550 6150 13100 6150
+ 13250 6300 11550 6300
+Connection ~ 12550 6000
Wire Wire Line
- 13100 6150 13100 6100
+ 13150 4550 13150 5200
Wire Wire Line
- 13100 6100 13450 6100
+ 13250 4650 13250 5100
Wire Wire Line
- 12550 6000 12550 4550
+ 13050 4950 13050 5300
Wire Wire Line
- 13450 6000 11550 6000
-Connection ~ 13150 4800
+ 12850 5500 12850 5250
Wire Wire Line
- 12950 5100 12950 5400
+ 13450 5700 12650 5700
Wire Wire Line
- 12750 5400 12750 5600
+ 12650 5700 12650 5550
Wire Wire Line
- 10300 5550 10300 6000
-Connection ~ 11550 7500
+ 12650 5550 9900 5550
Wire Wire Line
- 10750 7400 10750 7500
+ 3450 7200 4150 7200
Wire Wire Line
- 10750 7500 11750 7500
+ 4150 7200 4150 7050
Wire Wire Line
- 12250 7500 12950 7500
+ 11550 7500 11550 7350
Wire Wire Line
- 11750 7350 11550 7350
+ 12250 7350 12850 7350
Wire Wire Line
- 13450 6400 12250 6400
+ 3700 4350 3700 4650
Wire Wire Line
- 12250 6400 12250 6450
+ 3700 4650 3450 4650
Wire Wire Line
- 12250 6450 11550 6450
+ 13450 6500 12350 6500
Wire Wire Line
- 11550 6750 12450 6750
+ 12350 6500 12350 6600
Wire Wire Line
- 12450 6750 12450 6600
+ 12350 6600 11550 6600
Wire Wire Line
- 12450 6600 13450 6600
+ 13450 6700 12550 6700
Wire Wire Line
- 11550 7050 12650 7050
+ 12550 6700 12550 6900
Wire Wire Line
- 12650 7050 12650 6800
+ 12550 6900 11550 6900
Wire Wire Line
- 12650 6800 13450 6800
+ 11550 7200 12750 7200
Wire Wire Line
- 12850 7000 12850 7350
+ 12750 7200 12750 6900
Wire Wire Line
- 12850 7000 13450 7000
+ 12750 6900 13450 6900
Wire Wire Line
- 13250 7950 13250 7400
+ 13450 7100 12950 7100
Wire Wire Line
- 13050 7650 13050 7200
-Connection ~ 8300 8100
+ 12950 7100 12950 7500
Wire Wire Line
- 3450 7650 8300 7650
+ 13150 7300 13150 7800
+Connection ~ 7000 8100
Wire Wire Line
- 8300 7650 8300 8300
+ 7200 8100 7000 8100
Wire Wire Line
- 8300 8850 7800 8850
+ 8100 8100 8300 8100
Wire Wire Line
- 7800 8850 7800 8500
+ 7000 8850 7500 8850
Wire Wire Line
- 7000 8300 7000 7750
-Connection ~ 4400 7950
+ 7500 8850 7500 8500
Wire Wire Line
- 4800 7950 4200 7950
+ 9600 6000 10300 6000
+Connection ~ 10300 5550
+Connection ~ 8950 5550
Wire Wire Line
- 13050 7650 11550 7650
+ 8950 5350 8950 6000
Wire Wire Line
- 13050 7200 13450 7200
+ 11550 5100 11750 5100
Wire Wire Line
- 7000 7750 3450 7750
+ 13450 8300 13200 8300
Wire Wire Line
- 9600 6700 9600 6900
-Connection ~ 9600 6000
+ 13200 8300 13200 8250
Wire Wire Line
- 9600 5800 9600 6200
+ 13200 8250 12750 8250
Wire Wire Line
- 10300 5150 10500 5150
-Connection ~ 10500 5550
+ 13250 4650 11550 4650
Wire Wire Line
- 10500 5150 10500 5550
+ 13050 4950 11550 4950
Wire Wire Line
- 9500 5800 9500 6000
+ 12850 5500 13450 5500
Wire Wire Line
- 9500 6000 8950 6000
+ 13050 5300 13450 5300
Wire Wire Line
- 8950 5550 9200 5550
-Wire Notes Line
- 10050 4100 10050 650
-Wire Notes Line
- 10050 4100 15950 4100
-Wire Notes Line
- 15950 4100 15950 650
-Wire Notes Line
- 15950 650 10050 650
+ 13250 5100 13450 5100
Wire Wire Line
- 11550 5250 11750 5250
+ 13550 2650 15500 2650
Wire Wire Line
- 13450 8500 13200 8500
+ 13550 2350 14600 2350
Wire Wire Line
- 13200 8500 13200 8550
+ 3700 5750 3450 5750
Wire Wire Line
- 13200 8550 12750 8550
+ 6750 6850 6750 6450
Wire Wire Line
- 12750 8400 13450 8400
+ 6750 6450 5750 6450
Wire Wire Line
- 12250 5250 12850 5250
+ 5750 6450 5750 7400
Wire Wire Line
- 11550 7800 13150 7800
+ 5750 7400 3450 7400
Wire Wire Line
- 13450 7300 13150 7300
+ 6750 7250 6750 7450
Wire Wire Line
- 13150 4800 11550 4800
+ 6300 7250 6300 7450
Wire Wire Line
- 12950 5100 12250 5100
+ 8300 8700 8300 9050
+Connection ~ 7000 8850
Wire Wire Line
- 12750 5400 11550 5400
+ 5600 8650 3450 8650
Wire Wire Line
- 12750 5600 13450 5600
+ 3650 6900 3650 7100
Wire Wire Line
- 12950 5400 13450 5400
+ 5300 8350 5300 8150
Wire Wire Line
- 13450 5200 13150 5200
+ 4600 8450 4600 8250
+Connection ~ 4400 8150
Wire Wire Line
- 13250 7950 11550 7950
+ 4400 8150 4400 7950
Wire Wire Line
- 13250 7400 13450 7400
+ 5300 8150 5100 8150
Wire Wire Line
- 13550 2500 15050 2500
+ 5850 9950 4500 9950
Wire Wire Line
- 14150 3700 15700 3700
+ 3900 8250 3450 8250
Wire Wire Line
- 15750 1200 14150 1200
+ 4600 8250 4400 8250
+Connection ~ 3700 8350
Wire Wire Line
- 4050 1450 4050 1650
+ 3700 8350 3700 8450
Wire Wire Line
- 4050 1650 3450 1650
+ 3700 8450 3450 8450
Wire Wire Line
- 3600 5850 3450 5850
+ 3900 8550 3900 8350
Wire Wire Line
- 6300 6850 6300 6650
+ 5400 8650 5400 8850
Wire Wire Line
- 6300 6650 6000 6650
+ 5650 9950 5650 10150
Wire Wire Line
- 6000 6650 6000 7500
+ 3450 8750 4700 8750
Wire Wire Line
- 6000 7500 3450 7500
+ 4700 10350 4500 10350
Wire Wire Line
- 7000 9050 7000 8700
-Connection ~ 8300 8850
+ 4500 10350 4500 9200
Wire Wire Line
- 3450 7100 3650 7100
+ 4700 10650 4100 10650
Wire Wire Line
- 6350 9950 6550 9950
-Connection ~ 4500 9950
+ 4100 10650 4100 9400
Wire Wire Line
- 4600 8150 3450 8150
+ 4100 9400 3450 9400
+Connection ~ 3700 10450
Wire Wire Line
- 3450 8350 3900 8350
+ 4700 10950 3700 10950
Wire Wire Line
- 6100 8650 6300 8650
+ 3700 10950 3700 9600
+Connection ~ 5400 8650
Wire Wire Line
- 4700 8900 4250 8900
+ 6300 8450 6300 8650
Wire Wire Line
- 3450 9200 4500 9200
+ 5750 2650 5950 2650
Wire Wire Line
- 4700 10500 4300 10500
+ 8200 2200 8200 3350
Wire Wire Line
- 4300 10500 4300 9300
+ 5400 3400 5200 3400
Wire Wire Line
- 4300 9300 3450 9300
+ 5200 3400 5200 3700
Wire Wire Line
- 4700 10800 3900 10800
+ 5200 3700 3450 3700
Wire Wire Line
- 3900 10800 3900 9500
+ 6250 4150 6250 3550
Wire Wire Line
- 3900 9500 3450 9500
+ 6250 3950 6050 3950
Wire Wire Line
- 2750 10250 2750 10450
+ 6250 3550 6050 3550
Wire Wire Line
- 2750 10450 3000 10450
+ 6050 3650 6450 3650
Wire Wire Line
- 3700 10450 3500 10450
+ 6450 3650 6450 3450
Wire Wire Line
- 3450 9600 3700 9600
+ 7150 3450 7350 3450
Wire Wire Line
- 5650 10550 5650 10750
+ 7150 2500 7400 2500
+Connection ~ 8200 2500
Wire Wire Line
- 6550 9950 6550 9750
-Connection ~ 5650 9950
+ 7900 2500 8200 2500
+Connection ~ 15500 3700
Wire Wire Line
- 5400 9250 5400 9450
+ 15700 3900 15700 3700
+Connection ~ 15050 1200
+Connection ~ 14600 3700
+Connection ~ 15050 2500
+Connection ~ 14150 2200
Wire Wire Line
- 4250 8900 4250 8850
+ 13550 2200 14150 2200
Wire Wire Line
- 4250 8850 3450 8850
+ 15050 2900 15050 1900
Wire Wire Line
- 6350 2800 6550 2800
+ 14150 2900 14150 1900
Wire Wire Line
- 6550 2800 6550 2950
+ 3450 2250 4700 2250
Wire Wire Line
- 6350 2500 6650 2500
+ 4700 1250 4700 1450
Wire Wire Line
- 3450 3600 5000 3600
+ 3450 1550 3650 1550
Wire Wire Line
- 5000 3600 5000 2650
+ 3450 1950 3650 1950
Wire Wire Line
- 5000 2650 5250 2650
+ 4700 2250 4700 1950
Wire Wire Line
- 3450 3800 5400 3800
-Connection ~ 6250 3950
+ 3650 1950 3650 1550
Wire Wire Line
- 6050 3250 6650 3250
+ 3900 2150 3450 2150
Wire Wire Line
- 6650 3450 6450 3450
+ 14150 1400 14150 1200
Wire Wire Line
- 7150 3250 7350 3250
+ 14600 1400 14600 1200
Wire Wire Line
- 3650 3150 3650 3500
+ 15050 1200 15050 1400
Wire Wire Line
- 8000 3350 8200 3350
+ 14150 3400 14150 3700
Wire Wire Line
- 3650 3150 3900 3150
+ 14600 3700 14600 3400
Wire Wire Line
- 3650 3500 3450 3500
-Connection ~ 15500 1200
+ 15050 3700 15050 3400
Wire Wire Line
- 15750 1200 15750 1000
-Connection ~ 14600 1200
-Connection ~ 15050 3700
-Connection ~ 15500 2650
-Connection ~ 14600 2350
+ 15500 1200 15500 1400
Wire Wire Line
- 15500 1900 15500 2900
+ 15500 3400 15500 3700
Wire Wire Line
14600 1900 14600 2900
Wire Wire Line
- 15500 3400 15500 3700
+ 15500 1900 15500 2900
+Connection ~ 14600 2350
+Connection ~ 15500 2650
+Connection ~ 15050 3700
+Connection ~ 14600 1200
Wire Wire Line
- 15500 1200 15500 1400
+ 15750 1000 15750 1200
+Connection ~ 15500 1200
Wire Wire Line
- 15050 3700 15050 3400
+ 3450 3500 3650 3500
Wire Wire Line
- 14600 3700 14600 3400
+ 3900 3150 3650 3150
Wire Wire Line
- 14150 3700 14150 3400
+ 8200 3350 8000 3350
Wire Wire Line
- 15050 1200 15050 1400
+ 3650 3150 3650 3500
Wire Wire Line
- 14600 1400 14600 1200
+ 7150 3250 7350 3250
Wire Wire Line
- 14150 1200 14150 1400
+ 6450 3450 6650 3450
Wire Wire Line
- 3900 2150 3450 2150
+ 6050 3250 6650 3250
+Connection ~ 6250 3950
Wire Wire Line
- 3650 1950 3650 1550
+ 3450 3800 5400 3800
Wire Wire Line
- 4700 1950 4700 2250
+ 5250 2650 5000 2650
Wire Wire Line
- 3650 1950 3450 1950
+ 5000 2650 5000 3600
Wire Wire Line
- 3650 1550 3450 1550
+ 5000 3600 3450 3600
Wire Wire Line
- 4700 1250 4700 1450
+ 6350 2500 6650 2500
Wire Wire Line
- 4700 2250 3450 2250
+ 6550 2950 6550 2800
Wire Wire Line
- 14150 2900 14150 1900
+ 6550 2800 6350 2800
Wire Wire Line
- 15050 2900 15050 1900
+ 3450 8850 4250 8850
Wire Wire Line
- 13550 2200 14150 2200
-Connection ~ 14150 2200
-Connection ~ 15050 2500
-Connection ~ 14600 3700
-Connection ~ 15050 1200
+ 4250 8850 4250 8900
Wire Wire Line
- 15700 3700 15700 3900
-Connection ~ 15500 3700
+ 5400 9250 5400 9450
+Connection ~ 5650 9950
Wire Wire Line
- 7900 2500 8200 2500
-Connection ~ 8200 2500
+ 6550 9750 6550 9950
Wire Wire Line
- 7150 2500 7400 2500
+ 5650 10550 5650 10750
Wire Wire Line
- 7150 3450 7350 3450
+ 3700 9600 3450 9600
Wire Wire Line
- 6450 3450 6450 3650
+ 3700 10450 3500 10450
Wire Wire Line
- 6450 3650 6050 3650
+ 3000 10450 2750 10450
Wire Wire Line
- 6050 3550 6250 3550
+ 2750 10450 2750 10250
Wire Wire Line
- 6250 3950 6050 3950
+ 3450 9500 3900 9500
Wire Wire Line
- 6250 3550 6250 4150
+ 3900 9500 3900 10800
Wire Wire Line
- 3450 3700 5200 3700
+ 3900 10800 4700 10800
Wire Wire Line
- 5200 3700 5200 3400
+ 3450 9300 4300 9300
Wire Wire Line
- 5200 3400 5400 3400
+ 4300 9300 4300 10500
Wire Wire Line
- 8200 3350 8200 2200
+ 4300 10500 4700 10500
Wire Wire Line
- 5750 2650 5950 2650
+ 4500 9200 3450 9200
Wire Wire Line
- 6300 8650 6300 8450
-Connection ~ 5400 8650
+ 4250 8900 4700 8900
Wire Wire Line
- 3700 9600 3700 10950
+ 6300 8650 6100 8650
Wire Wire Line
- 3700 10950 4700 10950
-Connection ~ 3700 10450
+ 3900 8350 3450 8350
Wire Wire Line
- 3450 9400 4100 9400
+ 4600 8150 3450 8150
+Connection ~ 4500 9950
Wire Wire Line
- 4100 9400 4100 10650
+ 6550 9950 6350 9950
Wire Wire Line
- 4100 10650 4700 10650
+ 3650 7100 3450 7100
+Connection ~ 8300 8850
Wire Wire Line
- 4500 9200 4500 10350
+ 7000 9050 7000 8700
Wire Wire Line
- 4500 10350 4700 10350
+ 3450 7500 6000 7500
Wire Wire Line
- 3450 8750 4700 8750
+ 6000 7500 6000 6650
Wire Wire Line
- 5650 9950 5650 10150
+ 6000 6650 6300 6650
Wire Wire Line
- 5400 8650 5400 8850
+ 6300 6650 6300 6850
Wire Wire Line
- 3900 8350 3900 8550
+ 3450 5850 3600 5850
Wire Wire Line
- 3450 8450 3700 8450
+ 3450 1650 4050 1650
Wire Wire Line
- 3700 8450 3700 8350
-Connection ~ 3700 8350
+ 4050 1650 4050 1450
Wire Wire Line
- 4400 8250 4600 8250
+ 15750 1200 14150 1200
Wire Wire Line
- 3900 8250 3450 8250
+ 14150 3700 15700 3700
Wire Wire Line
- 5850 9950 4500 9950
+ 13550 2500 15050 2500
Wire Wire Line
- 5100 8150 5300 8150
+ 13450 7400 13250 7400
Wire Wire Line
- 4400 8150 4400 7950
-Connection ~ 4400 8150
+ 11550 7950 13250 7950
Wire Wire Line
- 4600 8250 4600 8450
+ 13150 5200 13450 5200
Wire Wire Line
- 5300 8150 5300 8350
+ 13450 5400 12950 5400
Wire Wire Line
- 3650 7100 3650 6900
+ 13450 5600 12750 5600
Wire Wire Line
- 5600 8650 3450 8650
-Connection ~ 7000 8850
+ 11550 5400 12750 5400
Wire Wire Line
- 8300 8700 8300 9050
+ 12250 5100 12950 5100
Wire Wire Line
- 6300 7250 6300 7450
+ 13150 4800 11550 4800
Wire Wire Line
- 6750 7250 6750 7450
+ 13150 7300 13450 7300
Wire Wire Line
- 3450 7400 5750 7400
+ 13150 7800 11550 7800
Wire Wire Line
- 5750 7400 5750 6450
+ 12850 5250 12250 5250
Wire Wire Line
- 5750 6450 6750 6450
+ 12750 8400 13450 8400
Wire Wire Line
- 6750 6450 6750 6850
+ 12750 8550 13200 8550
Wire Wire Line
- 3450 5750 3700 5750
+ 13200 8550 13200 8500
Wire Wire Line
- 13550 2350 14600 2350
+ 13200 8500 13450 8500
Wire Wire Line
- 13550 2650 15500 2650
+ 11550 5250 11750 5250
+Wire Notes Line
+ 15950 650 10050 650
+Wire Notes Line
+ 15950 650 15950 4100
+Wire Notes Line
+ 15950 4100 10050 4100
+Wire Notes Line
+ 10050 4100 10050 650
Wire Wire Line
- 13450 5100 13250 5100
+ 8950 5550 9200 5550
Wire Wire Line
- 13450 5300 13050 5300
+ 8950 6000 9500 6000
Wire Wire Line
- 13450 5500 12850 5500
+ 9500 6000 9500 5800
Wire Wire Line
- 11550 4950 13050 4950
+ 10500 5550 10500 5150
+Connection ~ 10500 5550
Wire Wire Line
- 11550 4650 13250 4650
+ 10500 5150 10300 5150
Wire Wire Line
- 12750 8250 13200 8250
+ 9600 5800 9600 6200
+Connection ~ 9600 6000
Wire Wire Line
- 13200 8250 13200 8300
+ 9600 6700 9600 6900
Wire Wire Line
- 13200 8300 13450 8300
+ 3450 7750 7000 7750
Wire Wire Line
- 11550 5100 11750 5100
+ 13450 7200 13050 7200
Wire Wire Line
- 8950 6000 8950 5350
-Connection ~ 8950 5550
-Connection ~ 10300 5550
+ 11550 7650 13050 7650
Wire Wire Line
- 10300 6000 9600 6000
+ 4800 7950 4200 7950
+Connection ~ 4400 7950
Wire Wire Line
- 7500 8500 7500 8850
+ 7000 7750 7000 8300
Wire Wire Line
- 7500 8850 7000 8850
+ 7800 8500 7800 8850
Wire Wire Line
- 8100 8100 8300 8100
+ 7800 8850 8300 8850
Wire Wire Line
- 7200 8100 7000 8100
-Connection ~ 7000 8100
+ 8300 8300 8300 7650
Wire Wire Line
- 13150 7300 13150 7800
+ 8300 7650 3450 7650
+Connection ~ 8300 8100
Wire Wire Line
- 12950 7500 12950 7100
+ 13050 7650 13050 7200
Wire Wire Line
- 12950 7100 13450 7100
+ 13250 7950 13250 7400
Wire Wire Line
- 13450 6900 12750 6900
+ 13450 7000 12850 7000
Wire Wire Line
- 12750 6900 12750 7200
+ 12850 7000 12850 7350
Wire Wire Line
- 12750 7200 11550 7200
+ 13450 6800 12650 6800
Wire Wire Line
- 11550 6900 12550 6900
+ 12650 6800 12650 7050
Wire Wire Line
- 12550 6900 12550 6700
+ 12650 7050 11550 7050
Wire Wire Line
- 12550 6700 13450 6700
+ 13450 6600 12450 6600
Wire Wire Line
- 11550 6600 12350 6600
+ 12450 6600 12450 6750
Wire Wire Line
- 12350 6600 12350 6500
+ 12450 6750 11550 6750
Wire Wire Line
- 12350 6500 13450 6500
+ 11550 6450 12250 6450
Wire Wire Line
- 3450 4650 3700 4650
+ 12250 6450 12250 6400
Wire Wire Line
- 3700 4650 3700 4350
+ 12250 6400 13450 6400
Wire Wire Line
- 12850 7350 12250 7350
+ 11550 7350 11750 7350
Wire Wire Line
- 11550 7350 11550 7500
+ 12950 7500 12250 7500
Wire Wire Line
- 4150 7050 4150 7200
+ 11750 7500 10750 7500
Wire Wire Line
- 4150 7200 3450 7200
+ 10750 7500 10750 7400
+Connection ~ 11550 7500
Wire Wire Line
- 9900 5550 12650 5550
+ 10300 6000 10300 5550
Wire Wire Line
- 12650 5550 12650 5700
+ 12750 5400 12750 5600
Wire Wire Line
- 12650 5700 13450 5700
+ 12950 5100 12950 5400
+Connection ~ 13150 4800
Wire Wire Line
- 12850 5500 12850 5250
+ 13450 6000 11550 6000
Wire Wire Line
- 13050 4950 13050 5300
+ 12550 6000 12550 4550
Wire Wire Line
- 13250 4650 13250 5100
+ 13450 6100 13100 6100
Wire Wire Line
- 13150 5200 13150 4550
-Connection ~ 12550 6000
+ 13100 6100 13100 6150
Wire Wire Line
- 11550 6300 13250 6300
+ 13100 6150 11550 6150
Wire Wire Line
- 13250 6300 13250 6200
+ 3600 5850 3600 6150
Wire Wire Line
- 13250 6200 13450 6200
+ 3600 6150 4900 6150
Wire Wire Line
- 3700 5750 3700 6000
+ 3450 5650 3800 5650
Wire Wire Line
- 3700 6000 4900 6000
+ 3800 5650 3800 5850
Wire Wire Line
- 3450 5050 4100 5050
+ 3800 5850 4900 5850
Wire Wire Line
- 4100 5050 4100 4950
+ 3450 5250 4900 5250
Wire Wire Line
- 4100 4950 4900 4950
+ 3450 4950 4000 4950
Wire Wire Line
- 3700 4350 4900 4350
+ 4000 4950 4000 4800
Wire Wire Line
- 4800 7200 4600 7200
+ 4000 4800 4900 4800
Wire Wire Line
- 4600 7200 4600 7300
+ 3450 5350 4700 5350
+Wire Wire Line
+ 4700 5350 4700 5400
+Wire Wire Line
+ 4700 5400 4900 5400
+Wire Wire Line
+ 4600 7300 3450 7300
+Text GLabel 4700 9050 2 60 Input ~ 0
+HDQ
+NoConn ~ 13450 5900
+Text Notes 10750 5850 0 50 ~ 0
+removed nACCEL_CS network ECN0016
+Text Notes 10750 5700 0 50 ~ 0
+removed nHOLD network ECN0031
+NoConn ~ 13450 5800
+NoConn ~ 3450 5450
+NoConn ~ 3450 5550
+Text Notes 4000 5600 0 50 ~ 0
+Removed KEEPACT net and R1546 - ecn0007
+Text Notes 4000 5700 0 50 ~ 0
+Removed SHUTDOWN net and R1545 - ecn0003
+Text Notes 4550 7000 0 50 ~ 0
+Connect CLKOUT1 to \nUEXTCLK - ecn0025
Text GLabel 4900 6150 2 60 Output ~ 0
WLAN_nRESET
Text GLabel 4800 7200 2 60 Output ~ 0
@@ -1027,7 +1037,6 @@
nRESET
Text GLabel 4700 8750 2 60 Output ~ 0
PWREN
-NoConn ~ 3450 8950
$Comp
L GND #PWR090
U 1 1 4A45500D
Modified: trunk/gta02-core/docs/ecn/ecn0001.txt
===================================================================
--- trunk/gta02-core/docs/ecn/ecn0001.txt 2009-08-27 23:16:21 UTC (rev
5558)
+++ trunk/gta02-core/docs/ecn/ecn0001.txt 2009-08-27 23:17:39 UTC (rev
5559)
@@ -12,6 +12,7 @@
- Moved BT PIO_5 from LCDVF0/GPC5 to CAMDATA0/GPJ0
- Move board-revision detection from VD5/GPC13 & VD12/GPD3 to EINT19/GPG11 &
EINT20/GPG12
- Remove 3D_RST and 3D_INT nets
+- Move HDQ to GPA21
To do:
- software impact of LCM pixel change on kernel
--- End Message ---
_______________________________________________
commitlog mailing list
commitlog@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/commitlog