Ignore:
Timestamp:
2012-03-05T21:44:00Z (12 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
77b52f0
Parents:
fcc6224
Message:

kernel,arm32: Add BeagleBoard-xM (MD37x) memory information.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/arm32/src/mach/beagleboardxm/beagleboardxm.c

    rfcc6224 r161fbda  
    5252static size_t bbxm_get_irq_count(void);
    5353static const char *bbxm_get_platform_name(void);
     54
     55#define BBXM_MEMORY_START       0x80000000      /* physical */
     56#define BBXM_MEMORY_SIZE        0x10000000      /* 256 MB, first chunk */
    5457
    5558static struct beagleboard {
     
    123126{
    124127        // FIXME: This is just a guess...
    125         *start = 0;
    126         *size = 256 * 1024 * 1024;
     128        *start = BBXM_MEMORY_START;
     129        *size = BBXM_MEMORY_SIZE;
    127130}
    128131
Note: See TracChangeset for help on using the changeset viewer.