2010-02-26 20:04:10 +01:00
|
|
|
#include <mc1322x.h>
|
2010-03-03 14:09:19 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2010-02-26 20:04:10 +01:00
|
|
|
#include "put.h"
|
2010-02-26 23:44:39 +01:00
|
|
|
#include "tests.h"
|
2010-02-26 20:04:10 +01:00
|
|
|
|
2010-02-26 20:21:46 +01:00
|
|
|
void uart1_init(uint16_t inc, uint16_t mod) {
|
2010-02-26 20:04:10 +01:00
|
|
|
/* Restore UART regs. to default */
|
|
|
|
/* in case there is still bootloader state leftover */
|
|
|
|
|
|
|
|
*UART1_CON = 0x0000c800; /* mask interrupts, 16 bit sample --- helps explain the baud rate */
|
|
|
|
|
|
|
|
/* INC = 767; MOD = 9999 works: 115200 @ 24 MHz 16 bit sample */
|
|
|
|
*UART1_BR = (inc << 16) | mod;
|
|
|
|
|
|
|
|
/* see Section 11.5.1.2 Alternate Modes */
|
|
|
|
/* you must enable the peripheral first BEFORE setting the function in GPIO_FUNC_SEL */
|
|
|
|
/* From the datasheet: "The peripheral function will control operation of the pad IF */
|
|
|
|
/* THE PERIPHERAL IS ENABLED. */
|
|
|
|
*UART1_CON = 0x00000003; /* enable receive and transmit */
|
|
|
|
*GPIO_FUNC_SEL0 = ( (0x01 << (14*2)) | (0x01 << (15*2)) ); /* set GPIO15-14 to UART (UART1 TX and RX)*/
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void print_welcome(char* testname) {
|
2010-03-03 14:09:19 +01:00
|
|
|
printf("mc1322x-test: %s\n\r",testname);
|
2010-03-03 20:07:00 +01:00
|
|
|
printf("board: %s\n\r", STR2(BOARD));
|
2010-02-26 20:04:10 +01:00
|
|
|
}
|
2010-02-26 23:44:39 +01:00
|
|
|
|
2010-03-07 21:39:56 +01:00
|
|
|
void print_packet(volatile packet_t *p) {
|
2010-03-07 03:47:22 +01:00
|
|
|
volatile uint8_t i,j,k;
|
|
|
|
#define PER_ROW 16
|
|
|
|
if(p) {
|
|
|
|
printf("len 0x%02x\n\r",p->length);
|
2010-03-07 22:50:32 +01:00
|
|
|
for(j=0, k=0; j <= ((p->length)%PER_ROW); j++) {
|
2010-03-07 03:47:22 +01:00
|
|
|
for(i=0; i < PER_ROW; i++, k++) {
|
2010-03-07 21:39:56 +01:00
|
|
|
if(k >= (p->length + 1) ) { goto out; } /* + 1 since first byte is len+2 */
|
2010-03-07 23:04:30 +01:00
|
|
|
printf("%02x ",p->data[j*PER_ROW + i + p->offset]);
|
2010-03-07 03:47:22 +01:00
|
|
|
}
|
|
|
|
printf("\n\r");
|
|
|
|
}
|
|
|
|
}
|
2010-03-07 22:50:32 +01:00
|
|
|
out:
|
2010-03-07 03:47:22 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-02-26 23:44:39 +01:00
|
|
|
void dump_regs(uint32_t base, uint32_t len) {
|
|
|
|
volatile uint32_t i;
|
2010-03-02 04:07:43 +01:00
|
|
|
|
2010-03-03 14:09:19 +01:00
|
|
|
printf("base +0 +4 +8 +c +10 +14 +18 +1c \n\r");
|
2010-03-02 04:07:43 +01:00
|
|
|
for (i = 0; i < len; i ++) {
|
|
|
|
if ((i & 7) == 0) {
|
2010-03-03 14:09:19 +01:00
|
|
|
printf("%02x",4 * i);
|
2010-03-02 04:07:43 +01:00
|
|
|
}
|
2010-03-03 14:09:19 +01:00
|
|
|
printf(" %08x",*mem32(base+(4*i)));
|
2010-03-02 04:07:43 +01:00
|
|
|
if ((i & 7) == 7)
|
2010-03-03 14:09:19 +01:00
|
|
|
printf(NL);
|
2010-03-02 04:07:43 +01:00
|
|
|
}
|
2010-03-03 14:09:19 +01:00
|
|
|
printf(NL);
|
2010-02-26 23:44:39 +01:00
|
|
|
}
|