summaryrefslogtreecommitdiffstats
path: root/recipes/u-boot/u-boot-1.3.2/boc01/007-090217-CAPSENSE.patch
blob: 1b7630536f1805f4f6ceeac9f005bef41bb2fc69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
Index: u-boot-1.3.2/common/cmd_capsense.c
===================================================================
--- /dev/null
+++ u-boot-1.3.2/common/cmd_capsense.c
@@ -0,0 +1,105 @@
+/*
+ * (C) Copyright 2008
+ * Alexandre Coffignal, CénoSYS, alexandre.coffignal@cenosys.com
+ *
+ * See file CREDITS for list of people who contributed to this
+ * project.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of
+ * the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ * CapSense Express touch-sensing buttons
+ */
+
+#include <common.h>
+#include <config.h>
+#include <command.h>
+
+#include <capsense.h>
+#include <i2c.h>
+
+#define ARG_SENSOR_NUMBER	1
+
+#define ARG_CMD		1
+#define ARG_OLD_ADDRESS	2
+
+
+int do_capsense (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
+{
+	int i;
+	unsigned char sensors[] = CONFIG_CAPSENSE_SENSORS;
+	int old_bus, old_address;
+	char port[2];
+	/* switch to correct I2C bus */
+	old_bus = I2C_GET_BUS();
+	I2C_SET_BUS(CFG_CAPSENSE_BUS_NUM);
+
+	/*
+	 * Loop through sensors, read
+	 * state, and output it.
+	 */
+	if(argc==1)
+	{
+		port[0]=capsense_get_state(CONFIG_CAPSENSE_I2C_ADDRESS,0);
+		port[1]=capsense_get_state(CONFIG_CAPSENSE_I2C_ADDRESS,1);
+		capsense_get_state(CONFIG_CAPSENSE_I2C_ADDRESS,1);
+		printf ("P0 0x%02x 0x%02x\n",port[0],port[1]);
+		for (i = 0; i < 8; i++)
+		{
+			if(sensors[0]&(1<<i))
+			{
+				printf ("GP0[%d]: %i\n",i,port[0]&(1<<i)?1:0);
+			}
+			if(sensors[1]&(1<<i))
+			{
+				printf ("GP1[%d]: %i\n",i,port[1]&(1<<i)?1:0);
+			}
+
+		}
+	}
+	else
+	{
+		if ( strncmp(argv[ARG_CMD], "config", 3) == 0 ) {
+			if ( argc == 3 ) {
+				old_address=simple_strtoul (argv[ARG_OLD_ADDRESS], NULL, 10);
+				if ( capsense_change_i2c_address(old_address, CONFIG_CAPSENSE_I2C_ADDRESS) != 0 )
+					printf("failed to change i2c address\n");
+				else
+					printf("i2c address changed to 0x%02X\n", CONFIG_CAPSENSE_I2C_ADDRESS);
+			}
+
+			capsense_config(CONFIG_CAPSENSE_I2C_ADDRESS);
+			capsense_store_nvm(CONFIG_CAPSENSE_I2C_ADDRESS);
+		}
+		else {
+			printf ("Usage:\n%s\n", cmdtp->help);
+		}
+	}
+
+	/* switch back to original I2C bus */
+	I2C_SET_BUS(old_bus);
+
+	return 0;
+}	/* do_capsense() */
+
+
+/***************************************************/
+
+U_BOOT_CMD(
+	  capsense,	4,	1,	do_capsense,
+	  "capsense - CapSense Express touch-sensing buttons\n",
+	  "capsense\n  Read state of the CapSense Express touch-sensing buttons.\n"
+	  "capsense config [<old i2c address>]\n  Setup default capsense configuration.\n"
+	  );
Index: u-boot-1.3.2/common/Makefile
===================================================================
--- u-boot-1.3.2.orig/common/Makefile
+++ u-boot-1.3.2/common/Makefile
@@ -50,6 +50,7 @@ endif
 COBJS-$(CONFIG_CMD_DISPLAY) += cmd_display.o
 COBJS-$(CONFIG_CMD_DOC) += cmd_doc.o
 COBJS-$(CONFIG_CMD_DTT) += cmd_dtt.o
+COBJS-$(CONFIG_CMD_CAPSENSE) += cmd_capsense.o
 COBJS-$(CONFIG_CMD_GPIO) += cmd_gpio.o
 COBJS-y += cmd_eeprom.o
 COBJS-$(CONFIG_CMD_ELF) += cmd_elf.o
Index: u-boot-1.3.2/drivers/i2c/CY8C201xx.c
===================================================================
--- /dev/null
+++ u-boot-1.3.2/drivers/i2c/CY8C201xx.c
@@ -0,0 +1,289 @@
+/*
+ * (C) Copyright 2008
+ * Alexandre Coffignal, CénoSYS, alexandre.coffignal@cenosys.com
+ *
+ * See file CREDITS for list of people who contributed to this
+ * project.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of
+ * the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ */
+
+/*
+ * CapSense Express touch-sensing buttons
+ */
+
+#include <common.h>
+
+#ifdef CONFIG_CAPSENSE_CY8C201XX
+
+#include <i2c.h>
+#include <capsense.h>
+
+int capsense_read(int address, int reg)
+{
+	int dlen;
+	uchar data[2];
+
+	/*
+	 * Validate 'reg' param
+	 */
+	if ( (reg < 0) || (reg > 0xA1) )
+		return -1;
+
+	/*
+	 * Prepare to handle 1 byte result.
+	 */
+	dlen = 1;
+
+	/*
+	 * Now try to read the register.
+	 */
+	if (i2c_read(address, reg, 1, data, dlen) != 0)
+		return -1;
+
+	return (int)data[0];
+}
+
+
+int capsense_write(int address, int reg, int val)
+{
+	int dlen;
+	uchar data[2];
+
+	/*
+	 * Validate 'reg' param
+	 */
+	if((reg < 0) || (reg > 0xA1))
+		return -1;
+
+	/*
+	 * Handle 1 byte values.
+	 */
+ 	dlen = 1;
+	data[0] = (char)(val & 0xff);
+
+	/*
+	 * Write value to register.
+	 */
+	if (i2c_write(address, reg, 1, data, dlen) != 0)
+		return 1;
+
+	return 0;
+}
+
+
+int capsense_write_N(int address, int reg,  char *data, int dlen)
+{
+	/*
+	 * Validate 'reg' param
+	 */
+	if ( (reg < 0) || (reg > 0xA1) )
+		return -1;
+
+	/*
+	 * Write value to register.
+	 */
+	if ( i2c_write(address, reg, 1, data, dlen) != 0 )
+		return 1;
+
+	return 0;
+}
+
+
+int capsense_get_state(int address,char port)
+{
+	return capsense_read(address,CAPSENSE_REG_READ_STATUS+port);
+}
+
+
+int capsense_change_i2c_address(char old_address,char new_address)
+{
+	unsigned char data[4];
+	int read_address;
+	printf("capsense change i2c address\n");
+	//checking if the I2C address is in the limits ( I2C address can have a value from 0 to 127 )
+	if((old_address>0x7F)||(new_address>0x7F))
+	{
+		printf("I2C address is not in the limits\n");
+		return 1;
+	}
+
+	//reading old capsence address
+	read_address=capsense_read(old_address, CAPSENSE_REG_I2C_ADDR_DM);
+	if(read_address==0xFFFFFFFF)
+	{
+		printf("error reading old capsence address\n");
+		return 1;	//capsense do not respond at new address
+	}
+
+	if((read_address&0x7F)!=old_address)
+	{
+		printf("reading old capsence address failed\n");
+		return 1;	//Capsense not respond correctly
+	}
+
+	//writing command for unlocking the I2C device address lock
+	data[0]=0x3C;
+	data[1]=0xA5;
+	data[2]=0x69;
+	if(capsense_write_N(old_address, CAPSENSE_REG_I2C_DEV_LOCK, data , 3)!=0)
+	{
+		printf("writing command for unlocking the I2C device address lock failed\n");
+		return 1;
+	}
+
+	//writing the new I2C address to the device I2C address register
+	if(capsense_write(old_address, CAPSENSE_REG_I2C_ADDR_DM,new_address|0x80)!=0)
+	{
+		printf("writing the new I2C address to the device I2C address register failed\n");
+		return 1;
+	}
+
+	//writing command for locking the I2C device address lock
+	data[0]=0x96;
+	data[1]=0x5A;
+	data[2]=0xC3;
+	if(capsense_write_N(old_address, CAPSENSE_REG_I2C_DEV_LOCK, data , 3)!=0)
+	{
+		printf("writing command for locking the I2C device failed\n");
+		return 1;
+	}
+
+	//reading new capsence address
+	read_address=capsense_read(new_address, CAPSENSE_REG_I2C_ADDR_DM);
+	if(read_address==0xFFFFFFFF)
+	{
+		printf("capsense do not respond at new address\n");
+		return 1;	//capsense do not respond at new address
+	}
+
+	return 0;
+}
+
+
+static char data_GPIO_ENABLE[] = {
+	0x00, 0x00   // GPIO_ENABLE
+};
+
+static char data_CS_ENABLE[] = {
+	0x1D, 0x10,  // CS_ENABLE
+	0x02, 0x0F,  // GPIO_ENABLE
+	0x00, 0x00,  // INVERSION_MASK
+	0x00, 0x00,  // INT_MASK
+	0x1F, 0x1F,  // STATUS_HOLD_MSK
+	0x00, 0x02, 0x00, 0x00,  // DM_PULL_UP0, DM_STRONG0, DM_HIGHZ0, DM_OD_LOW0
+	0x00, 0x0F, 0x00, 0x00,  // DM_PULL_UP1, DM_STRONG1, DM_HIGHZ1, DM_OD_LOW1
+};
+
+static char data_OUTPUT_PORT[] = {
+	0x00, 0x00   // OUTPUT_PORT
+};
+
+static char data_OP_SEL[] = {
+	0x00, 0x00, 0x00, 0x00, 0x00,   // OP_SEL_00
+	0x80, 0x01, 0x00, 0x00, 0x00,   // OP_SEL_01
+	0x00, 0x00, 0x00, 0x00, 0x00,   // OP_SEL_02
+	0x00, 0x00, 0x00, 0x00, 0x00,   // OP_SEL_03
+	0x00, 0x00, 0x00, 0x00, 0x00,   // OP_SEL_04
+	0x80, 0x10, 0x00, 0x00, 0x00,   // OP_SEL_10
+	0x80, 0x08, 0x00, 0x00, 0x00,   // OP_SEL_11
+	0x80, 0x04, 0x00, 0x00, 0x00,   // OP_SEL_12
+	0x80, 0x00, 0x10, 0x00, 0x00,   // OP_SEL_13
+	0x00, 0x00, 0x00, 0x00, 0x00,   // OP_SEL_14
+};
+
+static char data_CS_NOISE_TH[] = {
+	0x28,   // CS_NOISE_TH
+	0x64,   // CS_BL_UPD_TH
+	0xA0,   // CS_SETL_TIME
+	0x22,   // CS_OTH_SET
+	0x0A,   // CS_HYSTERESIS
+	0x03,   // CS_DEBOUNCE
+	0x14,   // CS_NEG_NOISE_TH
+	0x14,   // CS_LOW_BL_RST
+	0x00,   // CS_FILTERING
+};
+
+static char data_CS_SCAN_POS[] = {
+	0x00, 0x00, 0x00, 0x00, 0x00,   // CS_SCAN_POS_0x
+	0x00, 0x00, 0x00, 0x00, 0x00,   // CS_SCAN_POS_1x
+	0x32, 0x00, 0x32, 0x32, 0x32,   // CS_FINGER_TH_0x
+	0x00, 0x00, 0x00, 0x00, 0x32,   // CS_FINGER_TH_1x
+	0x14, 0x00, 0x0C, 0x0A, 0x14,   // CS_IDAC_0x
+	0x00, 0x00, 0x00, 0x00, 0x0D    // CS_IDAC_1x
+};
+
+static char data_SLEEP[] = {
+	0x00,   // SLEEP_PIN
+	0x20,   // SLEEP_CTRL
+	0x00,   // SLEEP_SA_CTR
+};
+
+int capsense_config(char address)
+{
+	printf("Setting default capsense configuration at i2c address 0x%02X...\n", address);
+
+	//entering setup operation mode
+	if ( capsense_write(address, CAPSENSE_COMMAND_REG, CAPSENSE_CMD_SETUP_OPERATION_MODE) != 0 ) {
+		printf("CAPSENSE_COMMAND_REG SETUP_OPERATION_MODE\n");
+		return 1;
+   	}
+	if ( capsense_write_N(address, CAPSENSE_REG_GPIO_ENABLE, data_GPIO_ENABLE, sizeof(data_GPIO_ENABLE)) != 0 ) {
+		printf("CAPSENSE_REG_GPIO_ENABLE\n");
+		return 1;
+   	}
+	if ( capsense_write_N(address, CAPSENSE_REG_CS_ENABLE, data_CS_ENABLE, sizeof(data_CS_ENABLE)) != 0 ) {
+		printf("CAPSENSE_REG_CS_ENABLE\n");
+		return 1;
+   	}
+	if ( capsense_write_N(address, CAPSENSE_REG_OUTPUT_PORT, data_OUTPUT_PORT, sizeof(data_OUTPUT_PORT)) != 0 ) {
+		printf("CAPSENSE_REG_OUTPUT_PORT\n");
+		return 1;
+   	}
+	if ( capsense_write_N(address, CAPSENSE_REG_OP_SEL_0, data_OP_SEL, sizeof(data_OP_SEL)) != 0 ) {
+		printf("CAPSENSE_REG_OP_SEL_0\n");
+		return 1;
+   	}
+	if ( capsense_write_N(address, CAPSENSE_REG_CS_NOISE_TH, data_CS_NOISE_TH, sizeof(data_CS_NOISE_TH)) != 0 ) {
+		printf("CAPSENSE_REG_CS_NOISE_TH\n");
+		return 1;
+   	}
+	if ( capsense_write_N(address, CAPSENSE_REG_CS_SCAN_POS, data_CS_SCAN_POS, sizeof(data_CS_SCAN_POS)) != 0 ) {
+		printf("CAPSENSE_REG_CS_SCAN_POS\n");
+		return 1;
+   	}
+	if ( capsense_write_N(address, CAPSENSE_REG_SLEEP_PIN, data_SLEEP, sizeof(data_SLEEP)) != 0 ) {
+		printf("CAPSENSE_REG_SLEEP_PIN\n");
+		return 1;
+   	}
+	if ( capsense_write(address, CAPSENSE_COMMAND_REG, CAPSENSE_CMD_NORMAL_OPERATION_MODE) != 0 ) {
+		printf("CAPSENSE_COMMAND_REG NORMAL_OPERATION_MODE\n");
+		return 1;
+   	}
+
+	printf("...done.\n");
+
+	return 0;
+}
+
+void capsense_store_nvm(char address)
+{
+	//storing the new current configuration to NVM
+	printf("Storing capsense configuration to NVM\n");
+	capsense_write(address, CAPSENSE_COMMAND_REG, CAPSENSE_CMD_STORE_TO_NVM);
+}
+
+#endif /* CONFIG_CAPSENSE_CY8C201XX */
Index: u-boot-1.3.2/drivers/i2c/Makefile
===================================================================
--- u-boot-1.3.2.orig/drivers/i2c/Makefile
+++ u-boot-1.3.2/drivers/i2c/Makefile
@@ -29,6 +29,7 @@ COBJS-y += fsl_i2c.o
 COBJS-y += omap1510_i2c.o
 COBJS-y += omap24xx_i2c.o
 COBJS-y += tsi108_i2c.o
+COBJS-y += CY8C201xx.o
 
 COBJS	:= $(COBJS-y)
 SRCS 	:= $(COBJS:.o=.c)
Index: u-boot-1.3.2/include/capsense.h
===================================================================
--- /dev/null
+++ u-boot-1.3.2/include/capsense.h
@@ -0,0 +1,95 @@
+/*
+ * (C) Copyright 2008
+ * Alexandre Coffignal, CénoSYS, alexandre.coffignal@cenosys.com
+ *
+ * See file CREDITS for list of people who contributed to this
+ * project.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of
+ * the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USCY8C201xx.c:234:A
+ */
+
+/*
+ * CapSense Express touch-sensing buttons.
+ */
+#ifndef _CAPSENSE_H_
+#define _CAPSENSE_H_
+
+#if defined(CONFIG_CAPSENSE_CY8C201XX)
+
+#define CONFIG_CAPSENSE				/* We have a Capsense */
+
+#ifndef CONFIG_CAPSENSE_SENSORS
+/*config for CY3218-CAPEXP1*/
+#define CONFIG_CAPSENSE_LED				{0x05,0x02} // port 0-{0,3} port 1-{2}
+#define CONFIG_CAPSENSE_SENSOR			{0x02,0x0C} // port 0-{2} port 1-{3,4}
+#endif
+#endif /* CONFIG_CAPSENSE_SENSORS */
+
+extern int capsense_read(int address, int reg);
+extern int capsense_write(int address, int reg, int val);
+extern int capsense_get_state(int address,char port);
+extern int capsense_change_i2c_address(char old_address,char new_address);
+extern int capsense_config(char address);
+extern void capsense_store_nvm(char address);
+#endif
+
+#if !defined(CFG_CAPSENSE_BUS_NUM)
+#define CFG_CAPSENSE_BUS_NUM		1
+
+//-----------------------------------------------
+// Register Map and corresponding constants
+//-----------------------------------------------
+
+
+#define CAPSENSE_REG_STATUS_PORT                          0x02
+#define CAPSENSE_REG_OUTPUT_PORT                          0x04
+#define CAPSENSE_REG_CS_ENABLE                            0x06
+#define CAPSENSE_REG_GPIO_ENABLE                          0x08
+#define CAPSENSE_REG_INVERSION_MASK                       0x0A
+#define CAPSENSE_REG_INT_MASK                             0x0C
+#define CAPSENSE_REG_STATUS_HOLD_MSK                      0x0E
+#define CAPSENSE_REG_DRIVE_MODE                           0x10
+#define CAPSENSE_REG_OP_SEL_0                             0x1C
+#define CAPSENSE_REG_OP_SEL_1                             0x35
+#define CAPSENSE_REG_CS_NOISE_TH                          0x4E
+#define CAPSENSE_REG_CS_SETL_TIME                         0x50
+#define CAPSENSE_REG_CS_OTH_SET                           0x51
+#define CAPSENSE_REG_CS_HYSTERESIS                        0x52
+#define CAPSENSE_REG_CS_DEBOUNCE                          0x53
+#define CAPSENSE_REG_CS_NEG_NOISE_TH                      0x54
+#define CAPSENSE_REG_CS_SCAN_POS			  0x57
+#define CAPSENSE_REG_CS_FINGER_TH                         0x61
+#define CAPSENSE_REG_CS_IDAC                              0x6B
+#define CAPSENSE_REG_CS_SLID_CONFIG                       0x75
+#define CAPSENSE_REG_CS_SLID_MUL                          0x77
+#define CAPSENSE_REG_I2C_DEV_LOCK			  0x79
+#define CAPSENSE_REG_DEVICE_ID                            0x7A
+#define CAPSENSE_REG_I2C_ADDR_DM		          0x7C
+#define CAPSENSE_REG_SLEEP_PIN                            0x7E
+#define CAPSENSE_REG_SLEEP_CTRL                           0x7F
+#define CAPSENSE_REG_SLEEP_SA_CTR                         0x80
+#define CAPSENSE_REG_CS_READ_BUTTON                       0x81
+#define CAPSENSE_REG_CS_READ_BL                           0x82
+#define CAPSENSE_REG_READ_STATUS                          0x88
+#define CAPSENSE_REG_READ_CEN_POS                         0x8A
+
+#define CAPSENSE_COMMAND_REG                              0xA0
+
+#define CAPSENSE_CMD_STORE_TO_NVM                          0x01
+#define CAPSENSE_CMD_NORMAL_OPERATION_MODE                 0x07
+#define CAPSENSE_CMD_SETUP_OPERATION_MODE                  0x08
+
+#endif /* _CAPSENSE_H_ */
Index: u-boot-1.3.2/include/configs/MPC8313ERDB.h
===================================================================
--- u-boot-1.3.2.orig/include/configs/MPC8313ERDB.h
+++ u-boot-1.3.2/include/configs/MPC8313ERDB.h
@@ -407,6 +407,13 @@
 #define CFG_DTT_MAX_TEMP        70
 #define CFG_DTT_MIN_TEMP        -30
 
+/*Capsense touch sensing buttons (Cpe board)*/
+#define CONFIG_CMD_CAPSENSE
+#define CONFIG_CAPSENSE_CY8C201XX		1
+#define CONFIG_CAPSENSE_I2C_ADDRESS		0x25
+#define CONFIG_CAPSENSE_LEDS			{0x02,0x0F} // port 0-{1} port 1-{0,1,2,3}
+#define CONFIG_CAPSENSE_SENSORS			{0x1D,0x10} // port 0-{0,2,3,4} port 1-{4}
+
 /*
  * Miscellaneous configurable options
  */