rp2040: Initial rp2350 support

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Kevin O'Connor
2024-10-25 14:43:05 -04:00
parent 61f81bdb26
commit 06bb49f135
6 changed files with 62 additions and 24 deletions

View File

@@ -1,8 +1,14 @@
#ifndef __RP2040_INTERNAL_H
#define __RP2040_INTERNAL_H
// Local definitions for rp2040
// Local definitions for RPxxxx chips
#include "RP2040.h"
#include "autoconf.h" // CONFIG_MACH_RP2040
#if CONFIG_MACH_RP2040
#include "RP2040.h"
#elif CONFIG_MACH_RP2350
#include "RP2350.h"
#endif
void enable_pclock(uint32_t reset_bit);
int is_enabled_pclock(uint32_t reset_bit);