Skip to content

Commit

Permalink
Merge pull request #672 from avinashmehtadelhi/musca
Browse files Browse the repository at this point in the history
Musca A, B related changes, update flash algo
  • Loading branch information
flit authored May 24, 2019
2 parents 4cd4947 + f736d4c commit a17145c
Show file tree
Hide file tree
Showing 2 changed files with 185 additions and 128 deletions.
8 changes: 4 additions & 4 deletions pyocd/target/builtin/target_musca_a1.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,13 @@ class MuscaA1(CoreSightTarget):
# of the 8 MB region can be read and written via register accesses only.
FlashRegion(name='nqspi', start=0x00200000, length=0x00040000, access='rx',
blocksize=0x10000,
page_size=0x100,
page_size=0x10000,
is_boot_memory=True,
is_external=True,
algo=FLASH_ALGO),
FlashRegion(name='sqspi', start=0x10200000, length=0x00040000, access='rxs',
blocksize=0x10000,
page_size=0x100,
page_size=0x10000,
is_boot_memory=True,
is_external=True,
algo=FLASH_ALGO,
Expand All @@ -118,14 +118,14 @@ class MuscaA1(CoreSightTarget):
# flash algo.
FlashRegion(name='nqspix', start=0x00240000, length=0x007c0000, access='',
blocksize=0x10000,
page_size=0x100,
page_size=0x10000,
is_default=False,
is_testable=False,
is_external=True,
algo=FLASH_ALGO),
FlashRegion(name='sqspix', start=0x10240000, length=0x007c0000, access='s',
blocksize=0x10000,
page_size=0x100,
page_size=0x10000,
is_default=False,
is_testable=False,
is_external=True,
Expand Down
Loading

0 comments on commit a17145c

Please sign in to comment.