summaryrefslogtreecommitdiff
path: root/atmel-samd/asf4/samd51/include/component
diff options
context:
space:
mode:
authorScott Shawcroft <scott@tannewt.org>2017-09-28 20:33:44 -0700
committerDan Halbert <halbert@halwitz.org>2017-09-28 23:33:44 -0400
commit0bbb7a8199db3f75cbd1f6151c011cad8fc85071 (patch)
tree57b3217fc78fbcbe603f314092d48199dec492ff /atmel-samd/asf4/samd51/include/component
parent8466d760f9990a0fbd735ebdc703cfb9a223805a (diff)
Add support for patching newer ASF4 code. (#292)
* atmel-samd: Support patching after updating ASF4. This makes it possible to automatically fix newer code. * atmel-samd: Update ASF4 to include flash APIs for SAMD51. This is the first automatic update that has caused a few deletions where code was previously copied instead of moved. This is a prerequisite for #260.
Diffstat (limited to 'atmel-samd/asf4/samd51/include/component')
-rw-r--r--atmel-samd/asf4/samd51/include/component/ac.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/adc.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/aes.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/ccl.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/cmcc.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/dac.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/dmac.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/dsu.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/eic.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/evsys.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/freqm.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/gclk.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/hmatrixb.h21
-rw-r--r--atmel-samd/asf4/samd51/include/component/i2s.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/icm.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/mclk.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/nvmctrl.h21
-rw-r--r--atmel-samd/asf4/samd51/include/component/osc32kctrl.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/oscctrl.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/pac.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/pcc.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/pdec.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/pm.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/port.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/qspi.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/ramecc.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/rstc.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/rtc.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/sdhc.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/sercom.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/supc.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/tal.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/tc.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/tcc.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/trng.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/usb.h19
-rw-r--r--atmel-samd/asf4/samd51/include/component/wdt.h19
37 files changed, 373 insertions, 334 deletions
diff --git a/atmel-samd/asf4/samd51/include/component/ac.h b/atmel-samd/asf4/samd51/include/component/ac.h
index 7f7796beb..24623d00a 100644
--- a/atmel-samd/asf4/samd51/include/component/ac.h
+++ b/atmel-samd/asf4/samd51/include/component/ac.h
@@ -3,22 +3,23 @@
*
* \brief Component description for AC
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/adc.h b/atmel-samd/asf4/samd51/include/component/adc.h
index a81149106..33c38ae3f 100644
--- a/atmel-samd/asf4/samd51/include/component/adc.h
+++ b/atmel-samd/asf4/samd51/include/component/adc.h
@@ -3,22 +3,23 @@
*
* \brief Component description for ADC
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/aes.h b/atmel-samd/asf4/samd51/include/component/aes.h
index 6d85768c9..5a74eac28 100644
--- a/atmel-samd/asf4/samd51/include/component/aes.h
+++ b/atmel-samd/asf4/samd51/include/component/aes.h
@@ -3,22 +3,23 @@
*
* \brief Component description for AES
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/ccl.h b/atmel-samd/asf4/samd51/include/component/ccl.h
index 73967aef2..890e81edf 100644
--- a/atmel-samd/asf4/samd51/include/component/ccl.h
+++ b/atmel-samd/asf4/samd51/include/component/ccl.h
@@ -3,22 +3,23 @@
*
* \brief Component description for CCL
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/cmcc.h b/atmel-samd/asf4/samd51/include/component/cmcc.h
index 1f7513be4..92fa6813e 100644
--- a/atmel-samd/asf4/samd51/include/component/cmcc.h
+++ b/atmel-samd/asf4/samd51/include/component/cmcc.h
@@ -3,22 +3,23 @@
*
* \brief Component description for CMCC
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/dac.h b/atmel-samd/asf4/samd51/include/component/dac.h
index 72f4df29f..c67efda30 100644
--- a/atmel-samd/asf4/samd51/include/component/dac.h
+++ b/atmel-samd/asf4/samd51/include/component/dac.h
@@ -3,22 +3,23 @@
*
* \brief Component description for DAC
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/dmac.h b/atmel-samd/asf4/samd51/include/component/dmac.h
index 2ab792bcb..295b31fe4 100644
--- a/atmel-samd/asf4/samd51/include/component/dmac.h
+++ b/atmel-samd/asf4/samd51/include/component/dmac.h
@@ -3,22 +3,23 @@
*
* \brief Component description for DMAC
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/dsu.h b/atmel-samd/asf4/samd51/include/component/dsu.h
index 9585bc447..43ae26d20 100644
--- a/atmel-samd/asf4/samd51/include/component/dsu.h
+++ b/atmel-samd/asf4/samd51/include/component/dsu.h
@@ -3,22 +3,23 @@
*
* \brief Component description for DSU
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/eic.h b/atmel-samd/asf4/samd51/include/component/eic.h
index f3a92e921..53d9e1c08 100644
--- a/atmel-samd/asf4/samd51/include/component/eic.h
+++ b/atmel-samd/asf4/samd51/include/component/eic.h
@@ -3,22 +3,23 @@
*
* \brief Component description for EIC
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/evsys.h b/atmel-samd/asf4/samd51/include/component/evsys.h
index a9732fa78..c5fdcf53e 100644
--- a/atmel-samd/asf4/samd51/include/component/evsys.h
+++ b/atmel-samd/asf4/samd51/include/component/evsys.h
@@ -3,22 +3,23 @@
*
* \brief Component description for EVSYS
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/freqm.h b/atmel-samd/asf4/samd51/include/component/freqm.h
index ccdea6384..3eca2144e 100644
--- a/atmel-samd/asf4/samd51/include/component/freqm.h
+++ b/atmel-samd/asf4/samd51/include/component/freqm.h
@@ -3,22 +3,23 @@
*
* \brief Component description for FREQM
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/gclk.h b/atmel-samd/asf4/samd51/include/component/gclk.h
index b143ffd4d..6de7d5cdb 100644
--- a/atmel-samd/asf4/samd51/include/component/gclk.h
+++ b/atmel-samd/asf4/samd51/include/component/gclk.h
@@ -3,22 +3,23 @@
*
* \brief Component description for GCLK
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/hmatrixb.h b/atmel-samd/asf4/samd51/include/component/hmatrixb.h
index 99e4b42eb..e0526c0d8 100644
--- a/atmel-samd/asf4/samd51/include/component/hmatrixb.h
+++ b/atmel-samd/asf4/samd51/include/component/hmatrixb.h
@@ -3,22 +3,23 @@
*
* \brief Component description for HMATRIXB
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
@@ -74,7 +75,7 @@ typedef struct {
#if !(defined(__ASSEMBLY__) || defined(__IAR_SYSTEMS_ASM__))
typedef struct {
RoReg8 Reserved1[0x80];
- HmatrixbPrs Prs[5]; /**< \brief Offset: 0x080 HmatrixbPrs groups [CLK_AHB_ID] */
+ HmatrixbPrs Prs[16]; /**< \brief Offset: 0x080 HmatrixbPrs groups */
} Hmatrixb;
#endif /* !(defined(__ASSEMBLY__) || defined(__IAR_SYSTEMS_ASM__)) */
diff --git a/atmel-samd/asf4/samd51/include/component/i2s.h b/atmel-samd/asf4/samd51/include/component/i2s.h
index 1df00524d..5583c69f6 100644
--- a/atmel-samd/asf4/samd51/include/component/i2s.h
+++ b/atmel-samd/asf4/samd51/include/component/i2s.h
@@ -3,22 +3,23 @@
*
* \brief Component description for I2S
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/icm.h b/atmel-samd/asf4/samd51/include/component/icm.h
index 14ed710a6..eb4b28e6f 100644
--- a/atmel-samd/asf4/samd51/include/component/icm.h
+++ b/atmel-samd/asf4/samd51/include/component/icm.h
@@ -3,22 +3,23 @@
*
* \brief Component description for ICM
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/mclk.h b/atmel-samd/asf4/samd51/include/component/mclk.h
index bdc17d19f..23f84a9b1 100644
--- a/atmel-samd/asf4/samd51/include/component/mclk.h
+++ b/atmel-samd/asf4/samd51/include/component/mclk.h
@@ -3,22 +3,23 @@
*
* \brief Component description for MCLK
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/nvmctrl.h b/atmel-samd/asf4/samd51/include/component/nvmctrl.h
index ab027e769..50f95f5d0 100644
--- a/atmel-samd/asf4/samd51/include/component/nvmctrl.h
+++ b/atmel-samd/asf4/samd51/include/component/nvmctrl.h
@@ -3,22 +3,23 @@
*
* \brief Component description for NVMCTRL
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
@@ -636,6 +637,8 @@ typedef struct {
#define SECTION_NVMCTRL_SW7
+#define SECTION_NVMCTRL_TEMP_LOG
+
#define SECTION_NVMCTRL_TEMP_LOG_W0
#define SECTION_NVMCTRL_TEMP_LOG_W1
diff --git a/atmel-samd/asf4/samd51/include/component/osc32kctrl.h b/atmel-samd/asf4/samd51/include/component/osc32kctrl.h
index feb079c18..8e41c450e 100644
--- a/atmel-samd/asf4/samd51/include/component/osc32kctrl.h
+++ b/atmel-samd/asf4/samd51/include/component/osc32kctrl.h
@@ -3,22 +3,23 @@
*
* \brief Component description for OSC32KCTRL
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/oscctrl.h b/atmel-samd/asf4/samd51/include/component/oscctrl.h
index ca2ad0245..ee9ad2113 100644
--- a/atmel-samd/asf4/samd51/include/component/oscctrl.h
+++ b/atmel-samd/asf4/samd51/include/component/oscctrl.h
@@ -3,22 +3,23 @@
*
* \brief Component description for OSCCTRL
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/pac.h b/atmel-samd/asf4/samd51/include/component/pac.h
index a383245d9..d8c27d2a4 100644
--- a/atmel-samd/asf4/samd51/include/component/pac.h
+++ b/atmel-samd/asf4/samd51/include/component/pac.h
@@ -3,22 +3,23 @@
*
* \brief Component description for PAC
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/pcc.h b/atmel-samd/asf4/samd51/include/component/pcc.h
index 7f8143cce..899c23da0 100644
--- a/atmel-samd/asf4/samd51/include/component/pcc.h
+++ b/atmel-samd/asf4/samd51/include/component/pcc.h
@@ -3,22 +3,23 @@
*
* \brief Component description for PCC
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/pdec.h b/atmel-samd/asf4/samd51/include/component/pdec.h
index 53d3c6f85..2cb862c05 100644
--- a/atmel-samd/asf4/samd51/include/component/pdec.h
+++ b/atmel-samd/asf4/samd51/include/component/pdec.h
@@ -3,22 +3,23 @@
*
* \brief Component description for PDEC
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/pm.h b/atmel-samd/asf4/samd51/include/component/pm.h
index 78c928412..b6161047b 100644
--- a/atmel-samd/asf4/samd51/include/component/pm.h
+++ b/atmel-samd/asf4/samd51/include/component/pm.h
@@ -3,22 +3,23 @@
*
* \brief Component description for PM
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/port.h b/atmel-samd/asf4/samd51/include/component/port.h
index 7c64027e4..9727dcb0a 100644
--- a/atmel-samd/asf4/samd51/include/component/port.h
+++ b/atmel-samd/asf4/samd51/include/component/port.h
@@ -3,22 +3,23 @@
*
* \brief Component description for PORT
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/qspi.h b/atmel-samd/asf4/samd51/include/component/qspi.h
index 0ab56e5cd..208a955d6 100644
--- a/atmel-samd/asf4/samd51/include/component/qspi.h
+++ b/atmel-samd/asf4/samd51/include/component/qspi.h
@@ -3,22 +3,23 @@
*
* \brief Component description for QSPI
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/ramecc.h b/atmel-samd/asf4/samd51/include/component/ramecc.h
index 46387ea88..c5f044685 100644
--- a/atmel-samd/asf4/samd51/include/component/ramecc.h
+++ b/atmel-samd/asf4/samd51/include/component/ramecc.h
@@ -3,22 +3,23 @@
*
* \brief Component description for RAMECC
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/rstc.h b/atmel-samd/asf4/samd51/include/component/rstc.h
index 32455d35e..65f4ed76f 100644
--- a/atmel-samd/asf4/samd51/include/component/rstc.h
+++ b/atmel-samd/asf4/samd51/include/component/rstc.h
@@ -3,22 +3,23 @@
*
* \brief Component description for RSTC
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/rtc.h b/atmel-samd/asf4/samd51/include/component/rtc.h
index 506ef4c15..aafac662b 100644
--- a/atmel-samd/asf4/samd51/include/component/rtc.h
+++ b/atmel-samd/asf4/samd51/include/component/rtc.h
@@ -3,22 +3,23 @@
*
* \brief Component description for RTC
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/sdhc.h b/atmel-samd/asf4/samd51/include/component/sdhc.h
index 55a1dd817..a42b9fc56 100644
--- a/atmel-samd/asf4/samd51/include/component/sdhc.h
+++ b/atmel-samd/asf4/samd51/include/component/sdhc.h
@@ -3,22 +3,23 @@
*
* \brief Component description for SDHC
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/sercom.h b/atmel-samd/asf4/samd51/include/component/sercom.h
index e32189106..f884c127a 100644
--- a/atmel-samd/asf4/samd51/include/component/sercom.h
+++ b/atmel-samd/asf4/samd51/include/component/sercom.h
@@ -3,22 +3,23 @@
*
* \brief Component description for SERCOM
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/supc.h b/atmel-samd/asf4/samd51/include/component/supc.h
index ae898d78b..9963fa336 100644
--- a/atmel-samd/asf4/samd51/include/component/supc.h
+++ b/atmel-samd/asf4/samd51/include/component/supc.h
@@ -3,22 +3,23 @@
*
* \brief Component description for SUPC
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/tal.h b/atmel-samd/asf4/samd51/include/component/tal.h
index 81dfd265b..dc904e556 100644
--- a/atmel-samd/asf4/samd51/include/component/tal.h
+++ b/atmel-samd/asf4/samd51/include/component/tal.h
@@ -3,22 +3,23 @@
*
* \brief Component description for TAL
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/tc.h b/atmel-samd/asf4/samd51/include/component/tc.h
index ded57ffc9..f4c0daf34 100644
--- a/atmel-samd/asf4/samd51/include/component/tc.h
+++ b/atmel-samd/asf4/samd51/include/component/tc.h
@@ -3,22 +3,23 @@
*
* \brief Component description for TC
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/tcc.h b/atmel-samd/asf4/samd51/include/component/tcc.h
index b60085cf5..a32abe964 100644
--- a/atmel-samd/asf4/samd51/include/component/tcc.h
+++ b/atmel-samd/asf4/samd51/include/component/tcc.h
@@ -3,22 +3,23 @@
*
* \brief Component description for TCC
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/trng.h b/atmel-samd/asf4/samd51/include/component/trng.h
index c7a5ba380..f81d22838 100644
--- a/atmel-samd/asf4/samd51/include/component/trng.h
+++ b/atmel-samd/asf4/samd51/include/component/trng.h
@@ -3,22 +3,23 @@
*
* \brief Component description for TRNG
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/usb.h b/atmel-samd/asf4/samd51/include/component/usb.h
index 5bed6c7e1..1c56e1dd0 100644
--- a/atmel-samd/asf4/samd51/include/component/usb.h
+++ b/atmel-samd/asf4/samd51/include/component/usb.h
@@ -3,22 +3,23 @@
*
* \brief Component description for USB
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
diff --git a/atmel-samd/asf4/samd51/include/component/wdt.h b/atmel-samd/asf4/samd51/include/component/wdt.h
index 050250a1b..ce1947dcc 100644
--- a/atmel-samd/asf4/samd51/include/component/wdt.h
+++ b/atmel-samd/asf4/samd51/include/component/wdt.h
@@ -3,22 +3,23 @@
*
* \brief Component description for WDT
*
- * Copyright (c) 2017 Atmel Corporation,
- * a wholly owned subsidiary of Microchip Technology Inc.
+ * Copyright (c) 2017 Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the Licence at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * SPDX-License-Identifier: Apache-2.0
*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the Licence at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*