Sign in

username:

password:



Not a member?

Search Comp.Arch.Embedded



Search tips

embedded by Keywords

68HC11 | 68HC12 | 8051 | 8052 | ARM | ARM7 | Asic | AT91 | AT91RM9200 | Atmel | AVR | AVRStudio | Bootloader | CFP | CompactFlash | Cygnal | Cypress | Dataflash | DSP | eCos | EEPROM | Embedded Linux | Emulator | Endian | Ethernet | Firewire | FPGA | Freescale | GCC | GNUARM | GSM | H8 | HDLC | I2C | Infineon | Interrupts | Java | JTAG | LCD | LED | LPC2000 | MCU | Microchip | MMC | MPLAB | MSP430 | PC104 | PCB | PCI | PCMCIA | PowerPC | Rabbit | RS232 | RS485 | RTOS | SBC | SDRAM | Sensor | SPI | STK500 | UART | UML | USART | USB | Verilog | VHDL | VxWorks | Xilinx

Discussion Groups

Discussion Groups | Comp.Arch.Embedded | Flash Interface with AT91RM9200

There are 3 messages in this thread.

You are currently looking at messages 0 to 3.

Flash Interface with AT91RM9200 - MaheshS - 06:29 06-12-05



Hi,
  I am doing a prototype baord based on AT91RM9200.I am planning to use 
Intel Strataflash memory (E28F640J3A)on the board.This flash memory is
having a program enable input.How can i connect this to the processor,
while interfacing?If anyone is using the same flash, please suggest.
  Also I would like to understand how does the USB_DP_PUP signal
enable/disable the pull-up resistor on DP?(Ref: Interfacing USB Device
peripheral-AT91RM9200 datasheet)
Best regards,
S Mahesh.


Re: Flash Interface with AT91RM9200 - PeteS - 07:09 06-12-05

MaheshS wrote:
> Hi,
>   I am doing a prototype baord based on AT91RM9200.I am planning to use
> Intel Strataflash memory (E28F640J3A)on the board.This flash memory is
> having a program enable input.How can i connect this to the processor,
> while interfacing?If anyone is using the same flash, please suggest.

The VPEN pin is used to lock/unlock the device globally for writing. If
you wish to have some certainty that the device may not be written to
in a spurious manner (during startup/shutdown, for example), connect
this pin (with a pulldown of about 100k) to an IO port bit. The
pulldown will ensure VPEN is invalid until the processor starts up and
initialises the port bit, preventing spurious writes. If you believe
there should be no problem, pull the line to Vdd through 100k. This
will make the device unlocked (at that level, anyway) at all times.
Note you still have to write to the device to unlock blocks.

>   Also I would like to understand how does the USB_DP_PUP signal
> enable/disable the pull-up resistor on DP?(Ref: Interfacing USB Device
> peripheral-AT91RM9200 datasheet)

The USB spec can clear this up. An upstream (slave) port has to signal
it is present. It does this by pulling the DP line high through 1.5k,
1%. Releasing this line permits the downstream (host) to pull *both*
lines low (through 15k). With both lines low, no active device is
assumed to be attached.

> Best regards,
> S Mahesh.

Cheers

PeteS


Re: Flash Interface with AT91RM9200 - MaheshS - 05:32 08-12-05

>MaheshS wrote:
>> Hi,
>>   I am doing a prototype baord based on AT91RM9200.I am planning to
use
>> Intel Strataflash memory (E28F640J3A)on the board.This flash memory is
>> having a program enable input.How can i connect this to the processor,
>> while interfacing?If anyone is using the same flash, please suggest.
>
>The VPEN pin is used to lock/unlock the device globally for writing. If
>you wish to have some certainty that the device may not be written to
>in a spurious manner (during startup/shutdown, for example), connect
>this pin (with a pulldown of about 100k) to an IO port bit. The
>pulldown will ensure VPEN is invalid until the processor starts up and
>initialises the port bit, preventing spurious writes. If you believe
>there should be no problem, pull the line to Vdd through 100k. This
>will make the device unlocked (at that level, anyway) at all times.
>Note you still have to write to the device to unlock blocks.
>
>>   Also I would like to understand how does the USB_DP_PUP signal
>> enable/disable the pull-up resistor on DP?(Ref: Interfacing USB Device
>> peripheral-AT91RM9200 datasheet)
>
>The USB spec can clear this up. An upstream (slave) port has to signal
>it is present. It does this by pulling the DP line high through 1.5k,
>1%. Releasing this line permits the downstream (host) to pull *both*
>lines low (through 15k). With both lines low, no active device is
>assumed to be attached.
>
>> Best regards,
>> S Mahesh.
>
>Cheers
>
>PeteS
>
>
Hi
  Thanks for the suggestion. If we are using a single flash memory IC, is
it possible to have a glueless connection? in that case, can we connect
the chip select signal from controller directly to CE0 (with CE1 and CE2
connected to GND)?
Regards,
S Mahesh.