Post Go back to editing

Blackfin glueless interface?

Thread Summary

The user is trying to implement a glueless interface using SMC in asynchronous mode to communicate with an Octal UART (SC28L) on a BlackFin processor. Despite configuring SMC and achieving local loopback, the user is unable to send or receive data through the Octal UART. The final answer suggests contacting private support for further assistance and to provide detailed configurations and requirements.
AI Generated Content
Category: Software
Product Number: Blackfin609
Software Version: 2.11

Hi

This is Raju i was Trying to Implement Glueless interface.

 I configured SMC as Asynchronous Mode

My application was BlackFin Will Write Specific Data in Specific Bank in SMC through Address Bus, Data bus FPGA, As per Conditions Octal UART receive / Transmits The Data?

I just Configured SMC as Asynchronous Mode to Write Data on SMC Memory Bank /Read Data From Memory Bank, BlackFin Input Clock 25MHZ

*PREG_SMC0_B1TIM = 0x3F010F01;

delay();

PREG_SMC0_B1ETIM = 0x31311;

delay();

PREG_SMC0_B1CTL = ((1<<BITP_SMC_B0CTL_En)|(Mode<<BITP_SMC_B0CTL_Mode);

delay();

I configured Bank 1 (0xB4000000 )

Smc_Write(0xB4000000, 0x12,0xADDA); -This is The Fun Call I Used Write into SMC Bank.

SMC_Write(uint32_t Add, uint32_t offset, uint32_t data)

{uint16_t* p = (uint16_t *)add, res;

*(p+offset) = data;

Delay();

}// as per POST i Configured SMC.

As Per My OctalUART i have some Register are there to Configure?  I configured as per Datasheet. Local loop back Was happened,  withis Configuration but I was Un able to Send Data To Octal UART. Or I was Unable to Receive data Through octal UART.

Can Any one help Me with SMC configuration or Should i Work on octal UART (SC28L)?

 Thank you

Best regards

E. Raju