• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

.github/03-Aug-2024-4134

include/03-Aug-2024-10,5935,702

src/hal/03-Aug-2024-9,4865,467

zephyr/03-Aug-2024-25,11214,352

CMakeLists.txtD03-Aug-20241.7 KiB5747

LICENSED03-Aug-20241.1 KiB2218

Makefile.amD03-Aug-202428 21

Makefile.inD03-Aug-202423.2 KiB747657

READMED03-Aug-2024872 2215

aclocal.m4D03-Aug-202443.6 KiB1,2301,117

ar-libD03-Aug-20245.7 KiB271210

compileD03-Aug-20247.2 KiB348258

config.guessD03-Aug-202441.9 KiB1,4211,229

config.subD03-Aug-202435 KiB1,8001,662

configureD03-Aug-2024174.8 KiB6,0124,944

configure.acD03-Aug-2024743 3729

depcompD03-Aug-202423 KiB792502

import-core.shD03-Aug-2024397 1410

install-shD03-Aug-202414.1 KiB535353

missingD03-Aug-20246.7 KiB216143

README

1General Notes for Cadence/Tensillica HAL Updates
2================================================
3
4The xtensa HAL is supplied by Cadence/Tensillica and is indended to support all
5xtensa ISA configurations used by different devices.
6
7Zephyr needs certain HAL modifications for ease of management for use within
8Zephyr and these changes need to be applied to any HAL updates from Cadence.
9
101) Remove usage of __SPLIT__ from HAL build.
11--------------------------------------------
12
13The HAL build script creates individual source files per functions by defining
14__SPLIT_* macros and including corresponding source files, in an attempt to
15compile one function per file. These should be removed. See
1684ff6039fc8f435551bb7915e098184c95fa24f2 and
1716324fd861596f57517524cd9d6fc66b077db4e8.
18
19
20This file should be updated accordingly to reflect any new changes required
21in new HALs.
22