3 * Martin Krause, TQ-Systems GmbH, martin.krause@tqs.de.
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * STK52XX specific functions
32 #if (CONFIG_COMMANDS & CFG_CMD_BSP)
33 #if defined (CONFIG_STK52XX)
35 #define DEFAULT_VOL 45
36 #define DEFAULT_FREQ 500
37 #define DEFAULT_DURATION 200
44 #define SM501_GPIO_CTRL_LOW 0x00000008UL
45 #define SM501_GPIO_CTRL_HIGH 0x0000000CUL
46 #define SM501_POWER_MODE0_GATE 0x00000040UL
47 #define SM501_POWER_MODE1_GATE 0x00000048UL
48 #define POWER_MODE_GATE_GPIO_PWM_I2C 0x00000040UL
49 #define SM501_GPIO_DATA_LOW 0x00010000UL
50 #define SM501_GPIO_DATA_HIGH 0x00010004UL
51 #define SM501_GPIO_DATA_DIR_LOW 0x00010008UL
52 #define SM501_GPIO_DATA_DIR_HIGH 0x0001000CUL
53 #define SM501_PANEL_DISPLAY_CONTROL 0x00080000UL
55 static int i2s_squarewave(unsigned long duration, unsigned int freq,
56 unsigned int channel);
57 static int i2s_sawtooth(unsigned long duration, unsigned int freq,
58 unsigned int channel);
59 static void spi_init(void);
60 static int spi_transmit(unsigned char data);
61 static void pcm1772_write_reg(unsigned char addr, unsigned char data);
62 static void set_attenuation(unsigned char attenuation);
64 static void spi_init(void)
66 struct mpc5xxx_spi *spi = (struct mpc5xxx_spi*)MPC5XXX_SPI;
67 struct mpc5xxx_gpio *gpio = (struct mpc5xxx_gpio*)MPC5XXX_GPIO;
69 /* PSC3 as SPI and GPIOs */
70 gpio->port_config &= 0xFFFFF0FF;
71 gpio->port_config |= 0x00000800;
73 * Its important to use the correct order when initializing the
76 spi->ddr = 0x0F; /* set all SPI pins as output */
77 spi->pdr = 0x08; /* set SS high */
78 spi->cr1 = 0x50; /* SPI is master, SS is general purpose output */
79 spi->cr2 = 0x00; /* normal operation */
80 spi->brr = 0xFF; /* baud rate: IPB clock / 2048 */
83 static int spi_transmit(unsigned char data)
86 struct mpc5xxx_spi *spi = (struct mpc5xxx_spi*)MPC5XXX_SPI;
89 /* wait for SPI transmission completed */
90 while(!(spi->sr & 0x80))
92 if (spi->sr & 0x40) /* if write collision occured */
94 /* do dummy read to clear status register */
96 printf ("SPI write collision\n");
103 static void pcm1772_write_reg(unsigned char addr, unsigned char data)
105 struct mpc5xxx_spi *spi = (struct mpc5xxx_spi*)MPC5XXX_SPI;
107 spi->pdr = 0x00; /* Set SS low */
110 /* wait some time to meet MS# hold time of PCM1772 */
112 spi->pdr = 0x08; /* set SS high */
115 static void set_attenuation(unsigned char attenuation)
117 pcm1772_write_reg(0x01, attenuation); /* left channel */
118 debug ("PCM1772 attenuation left set to %d.\n", attenuation);
119 pcm1772_write_reg(0x02, attenuation); /* right channel */
120 debug ("PCM1772 attenuation right set to %d.\n", attenuation);
123 void amplifier_init(void)
125 static int init_done = 0;
127 struct mpc5xxx_gpio *gpio = (struct mpc5xxx_gpio*)MPC5XXX_GPIO;
129 /* Do this only once, because of the long time delay */
131 /* configure PCM1772 audio format as I2S */
132 pcm1772_write_reg(0x03, 0x01);
133 /* enable audio amplifier */
134 gpio->sint_gpioe |= 0x02; /* PSC3_5 as GPIO */
135 gpio->sint_ode &= ~0x02; /* PSC3_5 is not open Drain */
136 gpio->sint_dvo &= ~0x02; /* PSC3_5 is LOW */
137 gpio->sint_ddr |= 0x02; /* PSC3_5 as output */
139 * wait some time to allow amplifier to recover from shutdown
142 for(i = 0; i < 350; i++)
145 * The used amplifier (LM4867) has a so called "pop and click"
146 * elmination filter. The input signal of the amplifier must
147 * exceed a certain level once after power up to activate the
148 * generation of the output signal. This is achieved by
149 * sending a low frequent (nearly inaudible) sawtooth with a
150 * sufficient signal level.
153 i2s_sawtooth (200, 5, LEFT_RIGHT);
158 static void i2s_init(void)
161 struct mpc5xxx_psc *psc = (struct mpc5xxx_psc*)MPC5XXX_PSC2;;
162 struct mpc5xxx_gpio *gpio = (struct mpc5xxx_gpio*)MPC5XXX_GPIO;
164 gpio->port_config |= 0x00000070; /* PSC2 ports as Codec with MCLK */
165 psc->command = (PSC_RX_DISABLE | PSC_TX_DISABLE);
166 psc->sicr = 0x22E00000; /* 16 bit data; I2S */
168 *(vu_long *)(CFG_MBAR + 0x22C) = 0x805d; /* PSC2 CDM MCLK config; MCLK
170 *(vu_long *)(CFG_MBAR + 0x214) |= 0x00000040; /* CDM clock enable
172 psc->ccr = 0x1F03; /* 16 bit data width; 5.617MHz MCLK */
173 psc->ctur = 0x0F; /* 16 bit frame width */
177 psc->psc_buffer_32 = 0; /* clear tx fifo */
181 static int i2s_play_wave(unsigned long addr, unsigned long len)
184 unsigned char *wave_file = (uchar *)addr + 44; /* quick'n dirty: skip
186 unsigned char swapped[4];
187 struct mpc5xxx_psc *psc = (struct mpc5xxx_psc*)MPC5XXX_PSC2;
190 * play wave file in memory; bytes/words are be swapped
192 psc->command = (PSC_RX_ENABLE | PSC_TX_ENABLE);
194 for(i = 0;i < (len / 4); i++) {
195 swapped[3]=*wave_file++;
196 swapped[2]=*wave_file++;
197 swapped[1]=*wave_file++;
198 swapped[0]=*wave_file++;
199 psc->psc_buffer_32 = *((unsigned long*)swapped);
200 while (psc->tfnum > 400) {
205 while (psc->tfnum > 0); /* wait for fifo empty */
207 psc->command = (PSC_RX_DISABLE | PSC_TX_DISABLE);
211 static int i2s_sawtooth(unsigned long duration, unsigned int freq,
212 unsigned int channel)
216 struct mpc5xxx_psc *psc = (struct mpc5xxx_psc*)MPC5XXX_PSC2;
218 psc->command = (PSC_RX_ENABLE | PSC_TX_ENABLE);
221 * Generate sawtooth. Start with middle level up to highest level. Then
222 * go to lowest level and back to middle level.
224 for(j = 0; j < ((duration * freq) / 1000); j++) {
225 for(i = 0; i <= 0x7FFF; i += (0x7FFF/(44100/(freq*4)))) {
227 /* data format: right data left data) */
228 if (channel == LEFT_RIGHT)
230 if (channel == RIGHT)
232 psc->psc_buffer_32 = data;
233 while (psc->tfnum > 400);
235 for(i = 0x7FFF; i >= -0x7FFF; i -= (0xFFFF/(44100/(freq*2)))) {
237 /* data format: right data left data) */
238 if (channel == LEFT_RIGHT)
240 if (channel == RIGHT)
242 psc->psc_buffer_32 = data;
243 while (psc->tfnum > 400);
245 for(i = -0x7FFF; i <= 0; i += (0x7FFF/(44100/(freq*4)))) {
247 /* data format: right data left data) */
248 if (channel == LEFT_RIGHT)
250 if (channel == RIGHT)
252 psc->psc_buffer_32 = data;
253 while (psc->tfnum > 400);
256 while (psc->tfnum > 0); /* wait for fifo empty */
258 psc->command = (PSC_RX_DISABLE | PSC_TX_DISABLE);
263 static int i2s_squarewave(unsigned long duration, unsigned int freq,
264 unsigned int channel)
268 struct mpc5xxx_psc *psc = (struct mpc5xxx_psc*)MPC5XXX_PSC2;
270 psc->command = (PSC_RX_ENABLE | PSC_TX_ENABLE);
273 * Generate sqarewave. Start with high level, duty cycle 1:1.
275 for(j = 0; j < ((duration * freq) / 1000); j++) {
276 for(i = 0; i < (44100/(freq*2)); i ++) {
278 /* data format: right data left data) */
279 if (channel == LEFT_RIGHT)
281 if (channel == RIGHT)
283 psc->psc_buffer_32 = data;
284 while (psc->tfnum > 400);
286 for(i = 0; i < (44100/(freq*2)); i ++) {
288 /* data format: right data left data) */
289 if (channel == LEFT_RIGHT)
291 if (channel == RIGHT)
293 psc->psc_buffer_32 = data;
294 while (psc->tfnum > 400);
297 while (psc->tfnum > 0); /* wait for fifo empty */
299 psc->command = (PSC_RX_DISABLE | PSC_TX_DISABLE);
304 static int cmd_sound(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
306 unsigned long reg, val, duration;
308 unsigned int freq, channel;
309 unsigned char volume;
312 #ifdef CONFIG_STK52XX_REV100
313 printf ("Revision 100 of STK52XX not supported!\n");
320 if ((tmp = getenv ("volume")) != NULL) {
321 volume = simple_strtoul (tmp, NULL, 10);
323 volume = DEFAULT_VOL;
325 set_attenuation(volume);
330 printf ("Usage:\n%s\n", cmdtp->usage);
333 if (strncmp(argv[1],"saw",3) == 0) {
334 printf ("Play sawtooth\n");
335 rcode = i2s_sawtooth (DEFAULT_DURATION, DEFAULT_FREQ,
338 } else if (strncmp(argv[1],"squ",3) == 0) {
339 printf ("Play squarewave\n");
340 rcode = i2s_squarewave (DEFAULT_DURATION, DEFAULT_FREQ,
345 printf ("Usage:\n%s\n", cmdtp->usage);
348 if (strncmp(argv[1],"saw",3) == 0) {
349 duration = simple_strtoul(argv[2], NULL, 10);
350 printf ("Play sawtooth\n");
351 rcode = i2s_sawtooth (duration, DEFAULT_FREQ,
354 } else if (strncmp(argv[1],"squ",3) == 0) {
355 duration = simple_strtoul(argv[2], NULL, 10);
356 printf ("Play squarewave\n");
357 rcode = i2s_squarewave (duration, DEFAULT_FREQ,
361 printf ("Usage:\n%s\n", cmdtp->usage);
364 if (strncmp(argv[1],"saw",3) == 0) {
365 duration = simple_strtoul(argv[2], NULL, 10);
366 freq = (unsigned int)simple_strtoul(argv[3], NULL, 10);
367 printf ("Play sawtooth\n");
368 rcode = i2s_sawtooth (duration, freq,
371 } else if (strncmp(argv[1],"squ",3) == 0) {
372 duration = simple_strtoul(argv[2], NULL, 10);
373 freq = (unsigned int)simple_strtoul(argv[3], NULL, 10);
374 printf ("Play squarewave\n");
375 rcode = i2s_squarewave (duration, freq,
378 } else if (strcmp(argv[1],"pcm1772") == 0) {
379 reg = simple_strtoul(argv[2], NULL, 10);
380 val = simple_strtoul(argv[3], NULL, 10);
381 printf("Set PCM1772 %lu. %lu\n", reg, val);
382 pcm1772_write_reg((uchar)reg, (uchar)val);
385 printf ("Usage:\n%s\n", cmdtp->usage);
388 if (strncmp(argv[1],"saw",3) == 0) {
389 duration = simple_strtoul(argv[2], NULL, 10);
390 freq = (unsigned int)simple_strtoul(argv[3], NULL, 10);
391 if (strncmp(argv[4],"l",1) == 0)
393 else if (strncmp(argv[4],"r",1) == 0)
396 channel = LEFT_RIGHT;
397 printf ("Play squarewave\n");
398 rcode = i2s_sawtooth (duration, freq,
401 } else if (strncmp(argv[1],"squ",3) == 0) {
402 duration = simple_strtoul(argv[2], NULL, 10);
403 freq = (unsigned int)simple_strtoul(argv[3], NULL, 10);
404 if (strncmp(argv[4],"l",1) == 0)
406 else if (strncmp(argv[4],"r",1) == 0)
409 channel = LEFT_RIGHT;
410 printf ("Play squarewave\n");
411 rcode = i2s_squarewave (duration, freq,
415 printf ("Usage:\n%s\n", cmdtp->usage);
418 printf ("Usage:\nsound cmd [arg1] [arg2] ...\n");
422 static int cmd_wav(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
424 unsigned long length, addr;
425 unsigned char volume;
429 #ifdef CONFIG_STK52XX_REV100
430 printf ("Revision 100 of STK52XX not supported!\n");
440 length = simple_strtoul(argv[2], NULL, 16);
441 addr = simple_strtoul(argv[1], NULL, 16);
445 if ((tmp = getenv ("filesize")) != NULL) {
446 length = simple_strtoul (tmp, NULL, 16);
448 puts ("No filesize provided\n");
451 addr = simple_strtoul(argv[1], NULL, 16);
454 if ((tmp = getenv ("filesize")) != NULL) {
455 length = simple_strtoul (tmp, NULL, 16);
457 puts ("No filesize provided\n");
460 if ((tmp = getenv ("loadaddr")) != NULL) {
461 addr = simple_strtoul (tmp, NULL, 16);
463 puts ("No loadaddr provided\n");
469 printf("Usage:\nwav <addr> <length[s]\n");
474 if ((tmp = getenv ("volume")) != NULL) {
475 volume = simple_strtoul (tmp, NULL, 10);
477 volume = DEFAULT_VOL;
479 set_attenuation(volume);
481 printf("Play wave file at %#p with length %#x\n", addr, length);
482 rcode = i2s_play_wave(addr, length);
487 static int cmd_beep(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
489 unsigned char volume;
490 unsigned int channel;
494 #ifdef CONFIG_STK52XX_REV100
495 printf ("Revision 100 of STK52XX not supported!\n");
505 channel = LEFT_RIGHT;
508 if (strncmp(argv[1],"l",1) == 0)
510 else if (strncmp(argv[1],"r",1) == 0)
513 channel = LEFT_RIGHT;
516 printf ("Usage:\n%s\n", cmdtp->usage);
520 if ((tmp = getenv ("volume")) != NULL) {
521 volume = simple_strtoul (tmp, NULL, 10);
523 volume = DEFAULT_VOL;
525 set_attenuation(volume);
530 else if (channel == RIGHT)
533 printf ("left and right ");
534 printf ("channel\n");
536 rcode = i2s_squarewave (DEFAULT_DURATION, DEFAULT_FREQ, channel);
543 struct mpc5xxx_gpio *gpio = (struct mpc5xxx_gpio *)MPC5XXX_GPIO;
544 struct mpc5xxx_gpt_0_7 *gpt = (struct mpc5xxx_gpt_0_7 *)MPC5XXX_GPT;
546 /* configure PSC3 for SPI and GPIO */
547 gpio->port_config &= ~(0x00000F00);
548 gpio->port_config |= 0x00000800;
550 gpio->simple_gpioe &= ~(0x00000F00);
551 gpio->simple_gpioe |= 0x00000F00;
553 gpio->simple_ddr &= ~(0x00000F00);
554 gpio->simple_ddr |= 0x00000F00;
556 /* configure timer 4-7 for simple GPIO output */
557 gpt->gpt4.emsr |= 0x00000024;
558 gpt->gpt5.emsr |= 0x00000024;
559 gpt->gpt6.emsr |= 0x00000024;
560 gpt->gpt7.emsr |= 0x00000024;
563 /* enable SM501 GPIO control (in both power modes) */
564 *(vu_long *) (SM501_MMIO_BASE+SM501_POWER_MODE0_GATE) |=
565 POWER_MODE_GATE_GPIO_PWM_I2C;
566 *(vu_long *) (SM501_MMIO_BASE+SM501_POWER_MODE1_GATE) |=
567 POWER_MODE_GATE_GPIO_PWM_I2C;
569 /* configure SM501 gpio pins 24-27 as output */
570 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_CTRL_LOW) &= ~(0xF << 24);
571 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_DIR_LOW) |= (0xF << 24);
573 /* configure SM501 gpio pins 48-51 as output */
574 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_DIR_HIGH) |= (0xF << 16);
578 * return 1 if led number unknown
581 int do_led(char *argv[])
583 struct mpc5xxx_gpio *gpio = (struct mpc5xxx_gpio *)MPC5XXX_GPIO;
584 struct mpc5xxx_gpt_0_7 *gpt = (struct mpc5xxx_gpt_0_7 *)MPC5XXX_GPT;
586 switch (simple_strtoul(argv[2], NULL, 10)) {
589 if (strcmp (argv[3], "on") == 0) {
590 gpio->simple_dvo |= (1 << 8);
592 gpio->simple_dvo &= ~(1 << 8);
597 if (strcmp (argv[3], "on") == 0) {
598 gpio->simple_dvo |= (1 << 9);
600 gpio->simple_dvo &= ~(1 << 9);
605 if (strcmp (argv[3], "on") == 0) {
606 gpio->simple_dvo |= (1 << 10);
608 gpio->simple_dvo &= ~(1 << 10);
613 if (strcmp (argv[3], "on") == 0) {
614 gpio->simple_dvo |= (1 << 11);
616 gpio->simple_dvo &= ~(1 << 11);
621 if (strcmp (argv[3], "on") == 0) {
622 gpt->gpt4.emsr |= (1 << 4);
624 gpt->gpt4.emsr &= ~(1 << 4);
629 if (strcmp (argv[3], "on") == 0) {
630 gpt->gpt5.emsr |= (1 << 4);
632 gpt->gpt5.emsr &= ~(1 << 4);
637 if (strcmp (argv[3], "on") == 0) {
638 gpt->gpt6.emsr |= (1 << 4);
640 gpt->gpt6.emsr &= ~(1 << 4);
645 if (strcmp (argv[3], "on") == 0) {
646 gpt->gpt7.emsr |= (1 << 4);
648 gpt->gpt7.emsr &= ~(1 << 4);
653 if (strcmp (argv[3], "on") == 0) {
654 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_LOW) |=
657 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_LOW) &=
663 if (strcmp (argv[3], "on") == 0) {
664 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_LOW) |=
667 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_LOW) &=
673 if (strcmp (argv[3], "on") == 0) {
674 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_LOW) |=
677 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_LOW) &=
683 if (strcmp (argv[3], "on") == 0) {
684 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_LOW) |=
687 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_LOW) &=
693 if (strcmp (argv[3], "on") == 0) {
694 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_HIGH) |=
697 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_HIGH) &=
703 if (strcmp (argv[3], "on") == 0) {
704 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_HIGH) |=
707 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_HIGH) &=
713 if (strcmp (argv[3], "on") == 0) {
714 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_HIGH) |=
717 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_HIGH) &=
723 if (strcmp (argv[3], "on") == 0) {
724 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_HIGH) |=
727 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_HIGH) &=
733 printf ("%s: invalid led number %s\n", __FUNCTION__, argv[2]);
741 * return 1 on CAN initialization failure
742 * return 0 if no failure
746 static int init_done = 0;
748 struct mpc5xxx_mscan *can1 =
749 (struct mpc5xxx_mscan *)(CFG_MBAR + 0x0900);
750 struct mpc5xxx_mscan *can2 =
751 (struct mpc5xxx_mscan *)(CFG_MBAR + 0x0980);
753 /* GPIO configuration of the CAN pins is done in TQM5200.h */
757 can1->canctl1 |= 0x80; /* CAN enable */
761 can1->canctl0 |= 0x02; /* sleep mode */
762 /* wait until sleep mode reached */
763 while (!(can1->canctl1 & 0x02)) {
767 printf ("%s: CAN1 initialize error, "
768 "can not enter sleep mode!\n",
774 can1->canctl0 = 0x01; /* enter init mode */
775 /* wait until init mode reached */
776 while (!(can1->canctl1 & 0x01)) {
780 printf ("%s: CAN1 initialize error, "
781 "can not enter init mode!\n",
786 can1->canctl1 = 0x80;
787 can1->canctl1 |= 0x40;
788 can1->canbtr0 = 0x0F;
789 can1->canbtr1 = 0x7F;
790 can1->canidac &= ~(0x30);
791 can1->canidar1 = 0x00;
792 can1->canidar3 = 0x00;
793 can1->canidar5 = 0x00;
794 can1->canidar7 = 0x00;
795 can1->canidmr0 = 0xFF;
796 can1->canidmr1 = 0xFF;
797 can1->canidmr2 = 0xFF;
798 can1->canidmr3 = 0xFF;
799 can1->canidmr4 = 0xFF;
800 can1->canidmr5 = 0xFF;
801 can1->canidmr6 = 0xFF;
802 can1->canidmr7 = 0xFF;
805 can1->canctl0 &= ~(0x01); /* leave init mode */
806 can1->canctl0 &= ~(0x02);
807 /* wait until init and sleep mode left */
808 while ((can1->canctl1 & 0x01) || (can1->canctl1 & 0x02)) {
812 printf ("%s: CAN1 initialize error, "
813 "can not leave init/sleep mode!\n",
820 can2->canctl1 |= 0x80; /* CAN enable */
824 can2->canctl0 |= 0x02; /* sleep mode */
825 /* wait until sleep mode reached */
826 while (!(can2->canctl1 & 0x02)) {
830 printf ("%s: CAN2 initialize error, "
831 "can not enter sleep mode!\n",
837 can2->canctl0 = 0x01; /* enter init mode */
838 /* wait until init mode reached */
839 while (!(can2->canctl1 & 0x01)) {
843 printf ("%s: CAN2 initialize error, "
844 "can not enter init mode!\n",
849 can2->canctl1 = 0x80;
850 can2->canctl1 |= 0x40;
851 can2->canbtr0 = 0x0F;
852 can2->canbtr1 = 0x7F;
853 can2->canidac &= ~(0x30);
854 can2->canidar1 = 0x00;
855 can2->canidar3 = 0x00;
856 can2->canidar5 = 0x00;
857 can2->canidar7 = 0x00;
858 can2->canidmr0 = 0xFF;
859 can2->canidmr1 = 0xFF;
860 can2->canidmr2 = 0xFF;
861 can2->canidmr3 = 0xFF;
862 can2->canidmr4 = 0xFF;
863 can2->canidmr5 = 0xFF;
864 can2->canidmr6 = 0xFF;
865 can2->canidmr7 = 0xFF;
866 can2->canctl0 &= ~(0x01); /* leave init mode */
867 can2->canctl0 &= ~(0x02);
870 /* wait until init mode left */
871 while ((can2->canctl1 & 0x01) || (can2->canctl1 & 0x02)) {
875 printf ("%s: CAN2 initialize error, "
876 "can not leave init/sleep mode!\n",
887 * return 1 on CAN failure
888 * return 0 if no failure
890 int do_can(char *argv[])
893 struct mpc5xxx_mscan *can1 =
894 (struct mpc5xxx_mscan *)(CFG_MBAR + 0x0900);
895 struct mpc5xxx_mscan *can2 =
896 (struct mpc5xxx_mscan *)(CFG_MBAR + 0x0980);
898 /* send a message on CAN1 */
899 can1->cantbsel = 0x01;
900 can1->cantxfg.idr[0] = 0x55;
901 can1->cantxfg.idr[1] = 0x00;
902 can1->cantxfg.idr[1] &= ~0x8;
903 can1->cantxfg.idr[1] &= ~0x10;
904 can1->cantxfg.dsr[0] = 0xCC;
905 can1->cantxfg.dlr = 1;
906 can1->cantxfg.tbpr = 0;
907 can1->cantflg = 0x01;
910 while ((can1->cantflg & 0x01) == 0) {
913 printf ("%s: CAN1 send timeout, "
914 "can not send message!\n",
923 while (!(can2->canrflg & 0x01)) {
926 printf ("%s: CAN2 receive timeout, "
927 "no message received!\n",
934 if (can2->canrxfg.dsr[0] != 0xCC) {
935 printf ("%s: CAN2 receive error, "
941 /* send a message on CAN2 */
942 can2->cantbsel = 0x01;
943 can2->cantxfg.idr[0] = 0x55;
944 can2->cantxfg.idr[1] = 0x00;
945 can2->cantxfg.idr[1] &= ~0x8;
946 can2->cantxfg.idr[1] &= ~0x10;
947 can2->cantxfg.dsr[0] = 0xCC;
948 can2->cantxfg.dlr = 1;
949 can2->cantxfg.tbpr = 0;
950 can2->cantflg = 0x01;
953 while ((can2->cantflg & 0x01) == 0) {
956 printf ("%s: CAN2 send error, "
957 "can not send message!\n",
966 while (!(can1->canrflg & 0x01)) {
969 printf ("%s: CAN1 receive timeout, "
970 "no message received!\n",
977 if (can1->canrxfg.dsr[0] != 0xCC) {
978 printf ("%s: CAN1 receive error 0x%02x\n",
979 __FUNCTION__, (can1->canrxfg.dsr[0]));
987 * return 1 if rs232 port unknown
988 * return 2 on txd/rxd failure (only rs232 2)
989 * return 3 on rts/cts failure
990 * return 0 if no failure
992 int do_rs232(char *argv[])
994 int error_status = 0;
995 struct mpc5xxx_gpio *gpio = (struct mpc5xxx_gpio *)MPC5XXX_GPIO;
996 struct mpc5xxx_psc *psc1 = (struct mpc5xxx_psc *)MPC5XXX_PSC1;
998 switch (simple_strtoul(argv[2], NULL, 10)) {
1001 /* check RTS <-> CTS loop */
1005 /* wait some time before requesting status */
1008 /* check status at cts */
1009 if ((psc1->ip & 0x01) != 0) {
1011 printf ("%s: failure at rs232_1, cts status is %d "
1013 __FUNCTION__, (psc1->ip & 0x01));
1019 /* wait some time before requesting status */
1022 /* check status at cts */
1023 if ((psc1->ip & 0x01) != 1) {
1025 printf ("%s: failure at rs232_1, cts status is %d "
1027 __FUNCTION__, (psc1->ip & 0x01));
1033 /* set PSC3_0, PSC3_2 as output and PSC3_1, PSC3_3 as input */
1034 gpio->simple_ddr &= ~(0x00000F00);
1035 gpio->simple_ddr |= 0x00000500;
1037 /* check TXD <-> RXD loop */
1039 gpio->simple_dvo |= (1 << 8);
1041 /* wait some time before requesting status */
1044 if ((gpio->simple_ival & 0x00000200) != 0x00000200) {
1046 printf ("%s: failure at rs232_2, rxd status is %d "
1049 (gpio->simple_ival & 0x00000200) >> 9);
1053 gpio->simple_dvo &= ~(1 << 8);
1055 /* wait some time before requesting status */
1058 if ((gpio->simple_ival & 0x00000200) != 0x00000000) {
1060 printf ("%s: failure at rs232_2, rxd status is %d "
1063 (gpio->simple_ival & 0x00000200) >> 9);
1066 /* check RTS <-> CTS loop */
1068 gpio->simple_dvo |= (1 << 10);
1070 /* wait some time before requesting status */
1073 if ((gpio->simple_ival & 0x00000800) != 0x00000800) {
1075 printf ("%s: failure at rs232_2, cts status is %d "
1078 (gpio->simple_ival & 0x00000800) >> 11);
1082 gpio->simple_dvo &= ~(1 << 10);
1084 /* wait some time before requesting status */
1087 if ((gpio->simple_ival & 0x00000800) != 0x00000000) {
1089 printf ("%s: failure at rs232_2, cts status is %d "
1092 (gpio->simple_ival & 0x00000800) >> 11);
1095 /* set PSC3_0, PSC3_1, PSC3_2 and PSC3_3 as output */
1096 gpio->simple_ddr &= ~(0x00000F00);
1097 gpio->simple_ddr |= 0x00000F00;
1101 printf ("%s: invalid rs232 number %s\n", __FUNCTION__, argv[2]);
1106 return error_status;
1109 static void sm501_backlight (unsigned int state)
1111 if (state == BL_ON) {
1112 *(vu_long *)(SM501_MMIO_BASE+SM501_PANEL_DISPLAY_CONTROL) |=
1113 (1 << 26) | (1 << 27);
1114 } else if (state == BL_OFF)
1115 *(vu_long *)(SM501_MMIO_BASE+SM501_PANEL_DISPLAY_CONTROL) &=
1116 ~((1 << 26) | (1 << 27));
1119 int cmd_fkt(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1123 #ifdef CONFIG_STK52XX_REV100
1124 printf ("Revision 100 of STK52XX not supported!\n");
1137 if (strncmp (argv[1], "can", 3) == 0) {
1138 rcode = do_can (argv);
1148 if (strncmp (argv[1], "rs232", 3) == 0) {
1149 rcode = do_rs232 (argv);
1155 } else if (strncmp (argv[1], "backlight", 4) == 0) {
1156 if (strncmp (argv[2], "on", 2) == 0) {
1157 sm501_backlight (BL_ON);
1160 else if (strncmp (argv[2], "off", 3) == 0) {
1161 sm501_backlight (BL_OFF);
1168 if (strcmp (argv[1], "led") == 0) {
1169 return (do_led (argv));
1177 printf ("Usage:\nfkt cmd [arg1] [arg2] ...\n");
1183 sound , 5, 1, cmd_sound,
1184 "sound - Sound sub-system\n",
1185 "saw [duration] [freq] [channel]\n"
1186 " - generate sawtooth for 'duration' ms with frequency 'freq'\n"
1187 " on left \"l\" or right \"r\" channel\n"
1188 "sound square [duration] [freq] [channel]\n"
1189 " - generate squarewave for 'duration' ms with frequency 'freq'\n"
1190 " on left \"l\" or right \"r\" channel\n"
1195 wav , 3, 1, cmd_wav,
1196 "wav - play wav file\n",
1198 " - play wav file at address 'addr' with length 'bytes'\n"
1202 beep , 2, 1, cmd_beep,
1203 "beep - play short beep\n",
1205 " - play short beep on \"l\"eft or \"r\"ight channel\n"
1209 fkt , 4, 1, cmd_fkt,
1210 "fkt - Function test routines\n",
1211 "led number on/off\n"
1212 " - 'number's like printed on STK52XX board\n"
1214 " - loopback plug for X83 required\n"
1215 "fkt rs232 number\n"
1216 " - loopback plug(s) for X2 required\n"
1217 "fkt backlight on/off\n"
1218 " - switch backlight on or off\n"
1220 #endif /* CONFIG_STK52XX */
1221 #endif /* CFG_CMD_BSP */