Skip to content

Commit

Permalink
samv71b: Fix CIDR for V71 Revision B Silicon
Browse files Browse the repository at this point in the history
For all V71 rev B silicon this changes the last CIDR byte to '1' instead
of '0', as described in the V71 Family Datasheet, page 129-130.

This fixes the warning '<wrn> soc: CIDR mismatch: chip = 0xa1220e01 vs
HAL = 0xa1220e00' seen during boot up for these silicon devices.

Signed-off-by: Nick Kraus <[email protected]>
  • Loading branch information
nick-kraus authored and nandojve committed Aug 15, 2022
1 parent bb4e710 commit 1d237f2
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion asf/sam/include/samv71b/samv71j19b.h
Original file line number Diff line number Diff line change
Expand Up @@ -827,7 +827,7 @@ void XDMAC_Handler ( void );
/* ************************************************************************** */
#define JTAGID _UL_(0X05B3D03F)
#define CHIP_JTAGID _UL_(0X05B3D03F)
#define CHIP_CIDR _UL_(0XA12D0A00)
#define CHIP_CIDR _UL_(0XA12D0A01)
#define CHIP_EXID _UL_(0X00000000)

/* ************************************************************************** */
Expand Down
2 changes: 1 addition & 1 deletion asf/sam/include/samv71b/samv71j20b.h
Original file line number Diff line number Diff line change
Expand Up @@ -827,7 +827,7 @@ void XDMAC_Handler ( void );
/* ************************************************************************** */
#define JTAGID _UL_(0X05B3D03F)
#define CHIP_JTAGID _UL_(0X05B3D03F)
#define CHIP_CIDR _UL_(0XA1220C00)
#define CHIP_CIDR _UL_(0XA1220C01)
#define CHIP_EXID _UL_(0X00000000)

/* ************************************************************************** */
Expand Down
2 changes: 1 addition & 1 deletion asf/sam/include/samv71b/samv71j21b.h
Original file line number Diff line number Diff line change
Expand Up @@ -827,7 +827,7 @@ void XDMAC_Handler ( void );
/* ************************************************************************** */
#define JTAGID _UL_(0X05B3D03F)
#define CHIP_JTAGID _UL_(0X05B3D03F)
#define CHIP_CIDR _UL_(0XA1220E00)
#define CHIP_CIDR _UL_(0XA1220E01)
#define CHIP_EXID _UL_(0X00000000)

/* ************************************************************************** */
Expand Down
2 changes: 1 addition & 1 deletion asf/sam/include/samv71b/samv71n19b.h
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,7 @@ void XDMAC_Handler ( void );
/* ************************************************************************** */
#define JTAGID _UL_(0X05B3D03F)
#define CHIP_JTAGID _UL_(0X05B3D03F)
#define CHIP_CIDR _UL_(0XA12D0A00)
#define CHIP_CIDR _UL_(0XA12D0A01)
#define CHIP_EXID _UL_(0X00000001)

/* ************************************************************************** */
Expand Down
2 changes: 1 addition & 1 deletion asf/sam/include/samv71b/samv71n20b.h
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,7 @@ void XDMAC_Handler ( void );
/* ************************************************************************** */
#define JTAGID _UL_(0X05B3D03F)
#define CHIP_JTAGID _UL_(0X05B3D03F)
#define CHIP_CIDR _UL_(0XA1220C00)
#define CHIP_CIDR _UL_(0XA1220C01)
#define CHIP_EXID _UL_(0X00000001)

/* ************************************************************************** */
Expand Down
2 changes: 1 addition & 1 deletion asf/sam/include/samv71b/samv71n21b.h
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,7 @@ void XDMAC_Handler ( void );
/* ************************************************************************** */
#define JTAGID _UL_(0X05B3D03F)
#define CHIP_JTAGID _UL_(0X05B3D03F)
#define CHIP_CIDR _UL_(0XA1220E00)
#define CHIP_CIDR _UL_(0XA1220E01)
#define CHIP_EXID _UL_(0X00000001)

/* ************************************************************************** */
Expand Down
2 changes: 1 addition & 1 deletion asf/sam/include/samv71b/samv71q19b.h
Original file line number Diff line number Diff line change
Expand Up @@ -941,7 +941,7 @@ void XDMAC_Handler ( void );
/* ************************************************************************** */
#define JTAGID _UL_(0X05B3D03F)
#define CHIP_JTAGID _UL_(0X05B3D03F)
#define CHIP_CIDR _UL_(0XA12D0A00)
#define CHIP_CIDR _UL_(0XA12D0A01)
#define CHIP_EXID _UL_(0X00000002)

/* ************************************************************************** */
Expand Down
2 changes: 1 addition & 1 deletion asf/sam/include/samv71b/samv71q20b.h
Original file line number Diff line number Diff line change
Expand Up @@ -941,7 +941,7 @@ void XDMAC_Handler ( void );
/* ************************************************************************** */
#define JTAGID _UL_(0X05B3D03F)
#define CHIP_JTAGID _UL_(0X05B3D03F)
#define CHIP_CIDR _UL_(0XA1220C00)
#define CHIP_CIDR _UL_(0XA1220C01)
#define CHIP_EXID _UL_(0X00000002)

/* ************************************************************************** */
Expand Down
2 changes: 1 addition & 1 deletion asf/sam/include/samv71b/samv71q21b.h
Original file line number Diff line number Diff line change
Expand Up @@ -941,7 +941,7 @@ void XDMAC_Handler ( void );
/* ************************************************************************** */
#define JTAGID _UL_(0X05B3D03F)
#define CHIP_JTAGID _UL_(0X05B3D03F)
#define CHIP_CIDR _UL_(0XA1220E00)
#define CHIP_CIDR _UL_(0XA1220E01)
#define CHIP_EXID _UL_(0X00000002)

/* ************************************************************************** */
Expand Down

0 comments on commit 1d237f2

Please sign in to comment.