2020-01-19 02:02:21 +00:00
|
|
|
// Copyright 2020 Espressif Systems (Shanghai) PTE LTD
|
|
|
|
//
|
|
|
|
// 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 License 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.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2020-02-03 11:14:48 +00:00
|
|
|
#include <stdlib.h>
|
2020-01-19 02:02:21 +00:00
|
|
|
|
2020-07-21 05:07:34 +00:00
|
|
|
#include "sdkconfig.h"
|
2020-01-19 02:02:21 +00:00
|
|
|
#include "esp_err.h"
|
|
|
|
|
|
|
|
#include "hal/cpu_hal.h"
|
|
|
|
#include "hal/cpu_types.h"
|
|
|
|
|
2020-09-10 02:37:58 +00:00
|
|
|
#include "soc/soc_caps.h"
|
2020-01-19 02:02:21 +00:00
|
|
|
|
2020-03-03 04:10:38 +00:00
|
|
|
|
2020-02-03 06:58:19 +00:00
|
|
|
#if SOC_CPU_BREAKPOINTS_NUM > 0
|
2020-02-21 03:27:14 +00:00
|
|
|
void cpu_hal_set_breakpoint(int id, const void* addr)
|
2020-01-19 02:02:21 +00:00
|
|
|
{
|
|
|
|
cpu_ll_set_breakpoint(id, cpu_ll_ptr_to_pc(addr));
|
|
|
|
}
|
|
|
|
|
2020-02-21 03:27:14 +00:00
|
|
|
void cpu_hal_clear_breakpoint(int id)
|
2020-01-19 02:02:21 +00:00
|
|
|
{
|
|
|
|
cpu_ll_clear_breakpoint(id);
|
|
|
|
}
|
2020-02-03 06:58:19 +00:00
|
|
|
#endif // SOC_CPU_BREAKPOINTS_NUM > 0
|
2020-01-19 02:02:21 +00:00
|
|
|
|
2020-02-03 06:58:19 +00:00
|
|
|
#if SOC_CPU_WATCHPOINTS_NUM > 0
|
2020-02-21 03:27:14 +00:00
|
|
|
void cpu_hal_set_watchpoint(int id, const void* addr, size_t size, watchpoint_trigger_t trigger)
|
2020-01-19 02:02:21 +00:00
|
|
|
{
|
|
|
|
bool on_read = false, on_write = false;
|
|
|
|
|
|
|
|
if (trigger == WATCHPOINT_TRIGGER_ON_RO) {
|
|
|
|
on_read = true;
|
|
|
|
} else if (trigger == WATCHPOINT_TRIGGER_ON_WO) {
|
|
|
|
on_write = true;
|
|
|
|
} else {
|
|
|
|
on_read = on_write = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
cpu_ll_set_watchpoint(id, addr, size, on_read, on_write);
|
|
|
|
}
|
|
|
|
|
2020-02-21 03:27:14 +00:00
|
|
|
void cpu_hal_clear_watchpoint(int id)
|
2020-01-19 02:02:21 +00:00
|
|
|
{
|
|
|
|
cpu_ll_clear_watchpoint(id);
|
2020-02-03 06:58:19 +00:00
|
|
|
}
|
2020-03-06 03:08:10 +00:00
|
|
|
#endif // SOC_CPU_WATCHPOINTS_NUM > 0
|
|
|
|
|
|
|
|
void cpu_hal_set_vecbase(const void* base)
|
|
|
|
{
|
|
|
|
cpu_ll_set_vecbase(base);
|
2020-11-10 07:40:01 +00:00
|
|
|
}
|