3 * Stefan Strobl, GERSYS GmbH, stefan.strobl@gersys.de
6 * Martin Krause, TQ-Systems GmbH, martin.krause@tqs.de.
8 * See file CREDITS for list of people who contributed to this
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
31 * BC3450 specific commands
33 #if defined(CONFIG_CMD_BSP)
37 # define dprintf(fmt,args...) printf(fmt, ##args)
39 # define dprintf(fmt,args...)
43 * Definitions for DS1620 chip
45 #define THERM_START_CONVERT 0xee
46 #define THERM_RESET 0xaf
47 #define THERM_READ_CONFIG 0xac
48 #define THERM_READ_TEMP 0xaa
49 #define THERM_READ_TL 0xa2
50 #define THERM_READ_TH 0xa1
51 #define THERM_WRITE_CONFIG 0x0c
52 #define THERM_WRITE_TL 0x02
53 #define THERM_WRITE_TH 0x01
55 #define CONFIG_SYS_CPU 2
56 #define CONFIG_SYS_1SHOT 1
57 #define CONFIG_SYS_STANDALONE 0
67 #define SM501_GPIO_CTRL_LOW 0x00000008UL /* gpio pins 0..31 */
68 #define SM501_GPIO_CTRL_HIGH 0x0000000CUL /* gpio pins 32..63 */
69 #define SM501_POWER_MODE0_GATE 0x00000040UL
70 #define SM501_POWER_MODE1_GATE 0x00000048UL
71 #define POWER_MODE_GATE_GPIO_PWM_I2C 0x00000040UL
72 #define SM501_GPIO_DATA_LOW 0x00010000UL
73 #define SM501_GPIO_DATA_HIGH 0x00010004UL
74 #define SM501_GPIO_DATA_DIR_LOW 0x00010008UL
75 #define SM501_GPIO_DATA_DIR_HIGH 0x0001000CUL
76 #define SM501_PANEL_DISPLAY_CONTROL 0x00080000UL
77 #define SM501_CRT_DISPLAY_CONTROL 0x00080200UL
79 /* SM501 CRT Display Control Bits */
80 #define SM501_CDC_SEL (1 << 9)
81 #define SM501_CDC_TE (1 << 8)
82 #define SM501_CDC_E (1 << 2)
84 /* SM501 Panel Display Control Bits */
85 #define SM501_PDC_FPEN (1 << 27)
86 #define SM501_PDC_BIAS (1 << 26)
87 #define SM501_PDC_DATA (1 << 25)
88 #define SM501_PDC_VDDEN (1 << 24)
90 /* SM501 GPIO Data LOW Bits */
91 #define SM501_GPIO24 0x01000000
92 #define SM501_GPIO25 0x02000000
93 #define SM501_GPIO26 0x04000000
94 #define SM501_GPIO27 0x08000000
95 #define SM501_GPIO28 0x10000000
96 #define SM501_GPIO29 0x20000000
97 #define SM501_GPIO30 0x40000000
98 #define SM501_GPIO31 0x80000000
100 /* SM501 GPIO Data HIGH Bits */
101 #define SM501_GPIO46 0x00004000
102 #define SM501_GPIO47 0x00008000
103 #define SM501_GPIO48 0x00010000
104 #define SM501_GPIO49 0x00020000
105 #define SM501_GPIO50 0x00040000
106 #define SM501_GPIO51 0x00080000
108 /* BC3450 GPIOs @ SM501 Data LOW */
109 #define DIP (SM501_GPIO24 | SM501_GPIO25 | SM501_GPIO26 | SM501_GPIO27)
110 #define DS1620_DQ SM501_GPIO29 /* I/O */
111 #define DS1620_CLK SM501_GPIO30 /* High active O/P */
112 #define DS1620_RES SM501_GPIO31 /* Low active O/P */
113 /* BC3450 GPIOs @ SM501 Data HIGH */
114 #define BUZZER SM501_GPIO47 /* Low active O/P */
115 #define DS1620_TLOW SM501_GPIO48 /* High active I/P */
116 #define PWR_OFF SM501_GPIO49 /* Low active O/P */
117 #define FP_DATA_TRI SM501_GPIO50 /* High active O/P */
121 * Initialise GPIO on SM501
123 * This function may be called from several other functions.
124 * Yet, the initialisation sequence is executed only the first
125 * time the function is called.
127 int sm501_gpio_init (void)
129 static int init_done = 0;
132 /* dprintf("sm501_gpio_init: nothing to be done.\n"); */
136 /* enable SM501 GPIO control (in both power modes) */
137 *(vu_long *) (SM501_MMIO_BASE + SM501_POWER_MODE0_GATE) |=
138 POWER_MODE_GATE_GPIO_PWM_I2C;
139 *(vu_long *) (SM501_MMIO_BASE + SM501_POWER_MODE1_GATE) |=
140 POWER_MODE_GATE_GPIO_PWM_I2C;
142 /* set up default O/Ps */
143 *(vu_long *) (SM501_MMIO_BASE + SM501_GPIO_DATA_LOW) &=
144 ~(DS1620_RES | DS1620_CLK);
145 *(vu_long *) (SM501_MMIO_BASE + SM501_GPIO_DATA_LOW) |= DS1620_DQ;
146 *(vu_long *) (SM501_MMIO_BASE + SM501_GPIO_DATA_HIGH) &=
148 *(vu_long *) (SM501_MMIO_BASE + SM501_GPIO_DATA_HIGH) |=
151 /* configure directions for SM501 GPIO pins */
152 *(vu_long *) (SM501_MMIO_BASE + SM501_GPIO_CTRL_LOW) &= ~(0xFF << 24);
153 *(vu_long *) (SM501_MMIO_BASE + SM501_GPIO_CTRL_HIGH) &=
155 *(vu_long *) (SM501_MMIO_BASE + SM501_GPIO_DATA_DIR_LOW) &=
157 *(vu_long *) (SM501_MMIO_BASE + SM501_GPIO_DATA_DIR_LOW) |=
158 (DS1620_RES | DS1620_CLK);
159 *(vu_long *) (SM501_MMIO_BASE + SM501_GPIO_DATA_DIR_HIGH) &=
161 *(vu_long *) (SM501_MMIO_BASE + SM501_GPIO_DATA_DIR_HIGH) |=
162 (PWR_OFF | BUZZER | FP_DATA_TRI);
165 /* dprintf("sm501_gpio_init: done.\n"); */
171 * dip - read Config Inputs
173 * read and prints the dip switch
174 * and/or external config inputs (4bits) 0...0x0F
176 int cmd_dip (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
182 /* read dip switch */
183 rc = *(vu_long *) (SM501_MMIO_BASE + SM501_GPIO_DATA_LOW);
186 rc = (int) (rc >> 24);
188 /* plausibility check */
192 printf ("0x%lx\n", rc);
196 U_BOOT_CMD (dip, 1, 1, cmd_dip,
197 "read dip switch and config inputs",
199 " - prints the state of the dip switch and/or\n"
200 " external configuration inputs as hex value.\n"
201 " - \"Config 1\" is the LSB");
205 * buz - turns Buzzer on/off
207 #ifdef CONFIG_BC3450_BUZZER
208 static int cmd_buz (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
211 printf ("Usage:\nspecify one argument: \"on\" or \"off\"\n");
217 if (strncmp (argv[1], "on", 2) == 0) {
218 *(vu_long *) (SM501_MMIO_BASE + SM501_GPIO_DATA_HIGH) &=
221 } else if (strncmp (argv[1], "off", 3) == 0) {
222 *(vu_long *) (SM501_MMIO_BASE + SM501_GPIO_DATA_HIGH) |=
226 printf ("Usage:\nspecify one argument: \"on\" or \"off\"\n");
230 U_BOOT_CMD (buz, 2, 1, cmd_buz,
231 "turns buzzer on/off",
232 "\n" "buz <on/off>\n" " - turns the buzzer on or off");
233 #endif /* CONFIG_BC3450_BUZZER */
237 * fp - front panel commands
239 static int cmd_fp (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
243 if (strncmp (argv[1], "on", 2) == 0) {
244 /* turn on VDD first */
245 *(vu_long *) (SM501_MMIO_BASE +
246 SM501_PANEL_DISPLAY_CONTROL) |= SM501_PDC_VDDEN;
248 /* then put data on */
249 *(vu_long *) (SM501_MMIO_BASE +
250 SM501_PANEL_DISPLAY_CONTROL) |= SM501_PDC_DATA;
251 /* wait some time and enable backlight */
253 *(vu_long *) (SM501_MMIO_BASE +
254 SM501_PANEL_DISPLAY_CONTROL) |= SM501_PDC_BIAS;
256 *(vu_long *) (SM501_MMIO_BASE +
257 SM501_PANEL_DISPLAY_CONTROL) |= SM501_PDC_FPEN;
259 } else if (strncmp (argv[1], "off", 3) == 0) {
260 /* turn off the backlight first */
261 *(vu_long *) (SM501_MMIO_BASE +
262 SM501_PANEL_DISPLAY_CONTROL) &= ~SM501_PDC_FPEN;
264 *(vu_long *) (SM501_MMIO_BASE +
265 SM501_PANEL_DISPLAY_CONTROL) &= ~SM501_PDC_BIAS;
267 /* wait some time, then remove data */
268 *(vu_long *) (SM501_MMIO_BASE +
269 SM501_PANEL_DISPLAY_CONTROL) &= ~SM501_PDC_DATA;
271 /* and remove VDD last */
272 *(vu_long *) (SM501_MMIO_BASE +
273 SM501_PANEL_DISPLAY_CONTROL) &=
276 } else if (strncmp (argv[1], "bl", 2) == 0) {
277 /* turn on/off backlight only */
278 if (strncmp (argv[2], "on", 2) == 0) {
279 *(vu_long *) (SM501_MMIO_BASE +
280 SM501_PANEL_DISPLAY_CONTROL) |=
283 *(vu_long *) (SM501_MMIO_BASE +
284 SM501_PANEL_DISPLAY_CONTROL) |=
287 } else if (strncmp (argv[2], "off", 3) == 0) {
288 *(vu_long *) (SM501_MMIO_BASE +
289 SM501_PANEL_DISPLAY_CONTROL) &=
292 *(vu_long *) (SM501_MMIO_BASE +
293 SM501_PANEL_DISPLAY_CONTROL) &=
298 #ifdef CONFIG_BC3450_CRT
299 else if (strncmp (argv[1], "crt", 3) == 0) {
300 /* enables/disables the crt output (debug only) */
301 if (strncmp (argv[2], "on", 2) == 0) {
302 *(vu_long *) (SM501_MMIO_BASE +
303 SM501_CRT_DISPLAY_CONTROL) |=
304 (SM501_CDC_TE | SM501_CDC_E);
305 *(vu_long *) (SM501_MMIO_BASE +
306 SM501_CRT_DISPLAY_CONTROL) &=
309 } else if (strncmp (argv[2], "off", 3) == 0) {
310 *(vu_long *) (SM501_MMIO_BASE +
311 SM501_CRT_DISPLAY_CONTROL) &=
312 ~(SM501_CDC_TE | SM501_CDC_E);
313 *(vu_long *) (SM501_MMIO_BASE +
314 SM501_CRT_DISPLAY_CONTROL) |=
319 #endif /* CONFIG_BC3450_CRT */
320 printf ("Usage:%s\n", cmdtp->help);
324 U_BOOT_CMD (fp, 3, 1, cmd_fp,
325 "front panes access functions",
328 " - turns the CCFL backlight of the display on/off\n"
329 "fp <on/off>\n" " - turns the whole display on/off"
330 #ifdef CONFIG_BC3450_CRT
333 " - enables/disables the crt output (debug only)"
334 #endif /* CONFIG_BC3450_CRT */
338 * temp - DS1620 thermometer
340 /* GERSYS BC3450 specific functions */
341 static inline void bc_ds1620_set_clk (int clk)
344 *(vu_long *) (SM501_MMIO_BASE + SM501_GPIO_DATA_LOW) |=
347 *(vu_long *) (SM501_MMIO_BASE + SM501_GPIO_DATA_LOW) &=
351 static inline void bc_ds1620_set_data (int dat)
354 *(vu_long *) (SM501_MMIO_BASE + SM501_GPIO_DATA_LOW) |=
357 *(vu_long *) (SM501_MMIO_BASE + SM501_GPIO_DATA_LOW) &=
361 static inline int bc_ds1620_get_data (void)
365 rc = *(vu_long *) (SM501_MMIO_BASE + SM501_GPIO_DATA_LOW);
372 static inline void bc_ds1620_set_data_dir (int dir)
375 *(vu_long *) (SM501_MMIO_BASE + SM501_GPIO_DATA_DIR_LOW) &= ~DS1620_DQ;
377 *(vu_long *) (SM501_MMIO_BASE + SM501_GPIO_DATA_DIR_LOW) |= DS1620_DQ;
380 static inline void bc_ds1620_set_reset (int res)
383 *(vu_long *) (SM501_MMIO_BASE + SM501_GPIO_DATA_LOW) |= DS1620_RES;
385 *(vu_long *) (SM501_MMIO_BASE + SM501_GPIO_DATA_LOW) &= ~DS1620_RES;
388 /* hardware independent functions */
389 static void ds1620_send_bits (int nr, int value)
393 for (i = 0; i < nr; i++) {
394 bc_ds1620_set_data (value & 1);
395 bc_ds1620_set_clk (0);
397 bc_ds1620_set_clk (1);
404 static unsigned int ds1620_recv_bits (int nr)
406 unsigned int value = 0, mask = 1;
409 bc_ds1620_set_data (0);
411 for (i = 0; i < nr; i++) {
412 bc_ds1620_set_clk (0);
415 if (bc_ds1620_get_data ())
420 bc_ds1620_set_clk (1);
427 static void ds1620_out (int cmd, int bits, int value)
429 bc_ds1620_set_clk (1);
430 bc_ds1620_set_data_dir (0);
432 bc_ds1620_set_reset (0);
434 bc_ds1620_set_reset (1);
438 ds1620_send_bits (8, cmd);
440 ds1620_send_bits (bits, value);
445 bc_ds1620_set_data_dir (1);
446 bc_ds1620_set_reset (0);
447 bc_ds1620_set_clk (0);
452 static unsigned int ds1620_in (int cmd, int bits)
456 bc_ds1620_set_clk (1);
457 bc_ds1620_set_data_dir (0);
459 bc_ds1620_set_reset (0);
461 bc_ds1620_set_reset (1);
465 ds1620_send_bits (8, cmd);
467 bc_ds1620_set_data_dir (1);
468 value = ds1620_recv_bits (bits);
471 bc_ds1620_set_data_dir (1);
472 bc_ds1620_set_reset (0);
473 bc_ds1620_set_clk (0);
478 static int cvt_9_to_int (unsigned int val)
486 /* set thermostate thresholds */
487 static void ds1620_write_state (struct therm *therm)
489 ds1620_out (THERM_WRITE_TL, 9, therm->lo);
490 ds1620_out (THERM_WRITE_TH, 9, therm->hi);
491 ds1620_out (THERM_START_CONVERT, 0, 0);
494 static int cmd_temp (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
501 /* print temperature */
503 i = cvt_9_to_int (ds1620_in (THERM_READ_TEMP, 9));
504 printf ("%d.%d C\n", i >> 1, i & 1 ? 5 : 0);
508 /* set to default operation */
509 if (strncmp (argv[1], "set", 3) == 0) {
510 if (strncmp (argv[2], "default", 3) == 0) {
515 ds1620_write_state (&therm);
516 ds1620_out (THERM_WRITE_CONFIG, 8, CONFIG_SYS_STANDALONE);
521 printf ("Usage:%s\n", cmdtp->help);
525 U_BOOT_CMD (temp, 3, 1, cmd_temp,
526 "print current temperature",
527 "\n" "temp\n" " - print current temperature");
529 #ifdef CONFIG_BC3450_CAN
531 * Initialise CAN interface
533 * return 1 on CAN initialization failure
534 * return 0 if no failure
538 static int init_done = 0;
540 struct mpc5xxx_mscan *can1 =
541 (struct mpc5xxx_mscan *) (CONFIG_SYS_MBAR + 0x0900);
542 struct mpc5xxx_mscan *can2 =
543 (struct mpc5xxx_mscan *) (CONFIG_SYS_MBAR + 0x0980);
545 /* GPIO configuration of the CAN pins is done in BC3450.h */
549 can1->canctl1 |= 0x80; /* CAN enable */
553 can1->canctl0 |= 0x02; /* sleep mode */
554 /* wait until sleep mode reached */
555 while (!(can1->canctl1 & 0x02)) {
559 printf ("%s: CAN1 initialize error, "
560 "can not enter sleep mode!\n",
566 can1->canctl0 = 0x01; /* enter init mode */
567 /* wait until init mode reached */
568 while (!(can1->canctl1 & 0x01)) {
572 printf ("%s: CAN1 initialize error, "
573 "can not enter init mode!\n",
578 can1->canctl1 = 0x80;
579 can1->canctl1 |= 0x40;
580 can1->canbtr0 = 0x0F;
581 can1->canbtr1 = 0x7F;
582 can1->canidac &= ~(0x30);
583 can1->canidar1 = 0x00;
584 can1->canidar3 = 0x00;
585 can1->canidar5 = 0x00;
586 can1->canidar7 = 0x00;
587 can1->canidmr0 = 0xFF;
588 can1->canidmr1 = 0xFF;
589 can1->canidmr2 = 0xFF;
590 can1->canidmr3 = 0xFF;
591 can1->canidmr4 = 0xFF;
592 can1->canidmr5 = 0xFF;
593 can1->canidmr6 = 0xFF;
594 can1->canidmr7 = 0xFF;
597 can1->canctl0 &= ~(0x01); /* leave init mode */
598 can1->canctl0 &= ~(0x02);
599 /* wait until init and sleep mode left */
600 while ((can1->canctl1 & 0x01) || (can1->canctl1 & 0x02)) {
604 printf ("%s: CAN1 initialize error, "
605 "can not leave init/sleep mode!\n",
612 can2->canctl1 |= 0x80; /* CAN enable */
616 can2->canctl0 |= 0x02; /* sleep mode */
617 /* wait until sleep mode reached */
618 while (!(can2->canctl1 & 0x02)) {
622 printf ("%s: CAN2 initialize error, "
623 "can not enter sleep mode!\n",
629 can2->canctl0 = 0x01; /* enter init mode */
630 /* wait until init mode reached */
631 while (!(can2->canctl1 & 0x01)) {
635 printf ("%s: CAN2 initialize error, "
636 "can not enter init mode!\n",
641 can2->canctl1 = 0x80;
642 can2->canctl1 |= 0x40;
643 can2->canbtr0 = 0x0F;
644 can2->canbtr1 = 0x7F;
645 can2->canidac &= ~(0x30);
646 can2->canidar1 = 0x00;
647 can2->canidar3 = 0x00;
648 can2->canidar5 = 0x00;
649 can2->canidar7 = 0x00;
650 can2->canidmr0 = 0xFF;
651 can2->canidmr1 = 0xFF;
652 can2->canidmr2 = 0xFF;
653 can2->canidmr3 = 0xFF;
654 can2->canidmr4 = 0xFF;
655 can2->canidmr5 = 0xFF;
656 can2->canidmr6 = 0xFF;
657 can2->canidmr7 = 0xFF;
658 can2->canctl0 &= ~(0x01); /* leave init mode */
659 can2->canctl0 &= ~(0x02);
662 /* wait until init mode left */
663 while ((can2->canctl1 & 0x01) || (can2->canctl1 & 0x02)) {
667 printf ("%s: CAN2 initialize error, "
668 "can not leave init/sleep mode!\n",
680 * by sending message between CAN1 and CAN2
682 * return 1 on CAN failure
683 * return 0 if no failure
685 int do_can (char * const argv[])
688 struct mpc5xxx_mscan *can1 =
689 (struct mpc5xxx_mscan *) (CONFIG_SYS_MBAR + 0x0900);
690 struct mpc5xxx_mscan *can2 =
691 (struct mpc5xxx_mscan *) (CONFIG_SYS_MBAR + 0x0980);
693 /* send a message on CAN1 */
694 can1->cantbsel = 0x01;
695 can1->cantxfg.idr[0] = 0x55;
696 can1->cantxfg.idr[1] = 0x00;
697 can1->cantxfg.idr[1] &= ~0x8;
698 can1->cantxfg.idr[1] &= ~0x10;
699 can1->cantxfg.dsr[0] = 0xCC;
700 can1->cantxfg.dlr = 1;
701 can1->cantxfg.tbpr = 0;
702 can1->cantflg = 0x01;
705 while ((can1->cantflg & 0x01) == 0) {
708 printf ("%s: CAN1 send timeout, "
709 "can not send message!\n", __FUNCTION__);
717 while (!(can2->canrflg & 0x01)) {
720 printf ("%s: CAN2 receive timeout, "
721 "no message received!\n", __FUNCTION__);
727 if (can2->canrxfg.dsr[0] != 0xCC) {
728 printf ("%s: CAN2 receive error, "
729 "data mismatch!\n", __FUNCTION__);
733 /* send a message on CAN2 */
734 can2->cantbsel = 0x01;
735 can2->cantxfg.idr[0] = 0x55;
736 can2->cantxfg.idr[1] = 0x00;
737 can2->cantxfg.idr[1] &= ~0x8;
738 can2->cantxfg.idr[1] &= ~0x10;
739 can2->cantxfg.dsr[0] = 0xCC;
740 can2->cantxfg.dlr = 1;
741 can2->cantxfg.tbpr = 0;
742 can2->cantflg = 0x01;
745 while ((can2->cantflg & 0x01) == 0) {
748 printf ("%s: CAN2 send error, "
749 "can not send message!\n", __FUNCTION__);
757 while (!(can1->canrflg & 0x01)) {
760 printf ("%s: CAN1 receive timeout, "
761 "no message received!\n", __FUNCTION__);
767 if (can1->canrxfg.dsr[0] != 0xCC) {
768 printf ("%s: CAN1 receive error 0x%02x\n",
769 __FUNCTION__, (can1->canrxfg.dsr[0]));
775 #endif /* CONFIG_BC3450_CAN */
778 * test - BC3450 HW test routines
780 int cmd_test (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
782 #ifdef CONFIG_BC3450_CAN
786 #endif /* CONFIG_BC3450_CAN */
791 printf ("Usage:%s\n", cmdtp->help);
795 if (strncmp (argv[1], "unit-off", 8) == 0) {
796 printf ("waiting 2 seconds...\n");
798 *(vu_long *) (SM501_MMIO_BASE + SM501_GPIO_DATA_HIGH) &=
802 #ifdef CONFIG_BC3450_CAN
803 else if (strncmp (argv[1], "can", 2) == 0) {
804 rcode = do_can (argv);
805 if (simple_strtoul (argv[2], NULL, 10) == 2) {
813 #endif /* CONFIG_BC3450_CAN */
815 printf ("Usage:%s\n", cmdtp->help);
819 U_BOOT_CMD (test, 2, 1, cmd_test, "unit test routines", "\n"
820 #ifdef CONFIG_BC3450_CAN
822 " - connect CAN1 (X8) with CAN2 (X9) for this test\n"
823 #endif /* CONFIG_BC3450_CAN */
825 " - turns off the BC3450 unit\n"
826 " WARNING: Unsaved environment variables will be lost!"