2014-05-03 18:27:38 -04:00
|
|
|
/*
|
2017-06-30 03:22:17 -04:00
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
2014-05-03 18:27:38 -04:00
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2013, 2014 Damien P. George
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2022-08-14 23:58:34 -04:00
|
|
|
// Options to control how MicroPython is built for this port, overriding
|
|
|
|
// defaults in py/mpconfig.h. This file is mostly about configuring the
|
|
|
|
// features to work on Unix-like systems, see mpconfigvariant.h (and
|
|
|
|
// mpconfigvariant_common.h) for feature enabling.
|
|
|
|
|
|
|
|
// For size_t and ssize_t
|
|
|
|
#include <unistd.h>
|
2019-10-22 20:20:07 -04:00
|
|
|
|
|
|
|
// Variant-specific definitions.
|
|
|
|
#include "mpconfigvariant.h"
|
|
|
|
|
2022-03-09 21:20:50 -05:00
|
|
|
#ifndef MICROPY_CONFIG_ROM_LEVEL
|
2022-08-14 23:58:34 -04:00
|
|
|
#define MICROPY_CONFIG_ROM_LEVEL (MICROPY_CONFIG_ROM_LEVEL_CORE_FEATURES)
|
2022-03-09 21:20:50 -05:00
|
|
|
#endif
|
2022-08-14 23:58:34 -04:00
|
|
|
|
|
|
|
#ifndef MICROPY_PY_SYS_PLATFORM
|
|
|
|
#if defined(__APPLE__) && defined(__MACH__)
|
|
|
|
#define MICROPY_PY_SYS_PLATFORM "darwin"
|
|
|
|
#else
|
|
|
|
#define MICROPY_PY_SYS_PLATFORM "linux"
|
2022-03-09 21:20:50 -05:00
|
|
|
#endif
|
|
|
|
#endif
|
2022-08-14 23:58:34 -04:00
|
|
|
|
|
|
|
#ifndef MICROPY_PY_SYS_PATH_DEFAULT
|
|
|
|
#define MICROPY_PY_SYS_PATH_DEFAULT ".frozen:~/.micropython/lib:/usr/lib/micropython"
|
2022-03-09 21:20:50 -05:00
|
|
|
#endif
|
|
|
|
|
2022-08-14 23:58:34 -04:00
|
|
|
#define MP_STATE_PORT MP_STATE_VM
|
|
|
|
|
|
|
|
// Configure which emitter to use for this target.
|
2014-09-03 17:40:15 -04:00
|
|
|
#if !defined(MICROPY_EMIT_X64) && defined(__x86_64__)
|
|
|
|
#define MICROPY_EMIT_X64 (1)
|
2014-07-13 06:49:51 -04:00
|
|
|
#endif
|
2014-09-06 18:06:36 -04:00
|
|
|
#if !defined(MICROPY_EMIT_X86) && defined(__i386__)
|
|
|
|
#define MICROPY_EMIT_X86 (1)
|
|
|
|
#endif
|
2014-12-13 20:24:17 -05:00
|
|
|
#if !defined(MICROPY_EMIT_THUMB) && defined(__thumb2__)
|
|
|
|
#define MICROPY_EMIT_THUMB (1)
|
2015-05-07 19:24:43 -04:00
|
|
|
#define MICROPY_MAKE_POINTER_CALLABLE(p) ((void *)((mp_uint_t)(p) | 1))
|
2014-12-13 20:24:17 -05:00
|
|
|
#endif
|
2015-05-07 19:24:43 -04:00
|
|
|
// Some compilers define __thumb2__ and __arm__ at the same time, let
|
|
|
|
// autodetected thumb2 emitter have priority.
|
|
|
|
#if !defined(MICROPY_EMIT_ARM) && defined(__arm__) && !defined(__thumb2__)
|
2014-12-13 20:24:17 -05:00
|
|
|
#define MICROPY_EMIT_ARM (1)
|
|
|
|
#endif
|
2022-08-14 23:58:34 -04:00
|
|
|
|
|
|
|
// Type definitions for the specific machine based on the word size.
|
|
|
|
#ifndef MICROPY_OBJ_REPR
|
|
|
|
#ifdef __LP64__
|
|
|
|
typedef long mp_int_t; // must be pointer size
|
|
|
|
typedef unsigned long mp_uint_t; // must be pointer size
|
|
|
|
#else
|
|
|
|
// These are definitions for machines where sizeof(int) == sizeof(void*),
|
|
|
|
// regardless of actual size.
|
|
|
|
typedef int mp_int_t; // must be pointer size
|
|
|
|
typedef unsigned int mp_uint_t; // must be pointer size
|
2022-07-01 15:06:10 -04:00
|
|
|
#endif
|
2022-08-14 23:58:34 -04:00
|
|
|
#else
|
|
|
|
// Assume that if we already defined the obj repr then we also defined types.
|
2020-04-09 07:59:11 -04:00
|
|
|
#endif
|
2022-08-14 23:58:34 -04:00
|
|
|
|
|
|
|
// Cannot include <sys/types.h>, as it may lead to symbol name clashes
|
|
|
|
#if _FILE_OFFSET_BITS == 64 && !defined(__LP64__)
|
|
|
|
typedef long long mp_off_t;
|
|
|
|
#else
|
|
|
|
typedef long mp_off_t;
|
2019-08-14 10:09:36 -04:00
|
|
|
#endif
|
2022-08-14 23:58:34 -04:00
|
|
|
|
|
|
|
// We need to provide a declaration/definition of alloca()
|
|
|
|
// unless support for it is disabled.
|
|
|
|
#if !defined(MICROPY_NO_ALLOCA) || MICROPY_NO_ALLOCA == 0
|
|
|
|
#if defined(__FreeBSD__) || defined(__NetBSD__)
|
|
|
|
#include <stdlib.h>
|
2015-08-03 16:13:34 -04:00
|
|
|
#else
|
2022-08-14 23:58:34 -04:00
|
|
|
#include <alloca.h>
|
2015-08-03 16:13:34 -04:00
|
|
|
#endif
|
2019-10-22 20:20:07 -04:00
|
|
|
#endif
|
2022-08-14 23:58:34 -04:00
|
|
|
|
|
|
|
// Always enable GC.
|
|
|
|
#define MICROPY_ENABLE_GC (1)
|
|
|
|
|
|
|
|
#if !(defined(MICROPY_GCREGS_SETJMP) || defined(__x86_64__) || defined(__i386__) || defined(__thumb2__) || defined(__thumb__) || defined(__arm__))
|
|
|
|
// Fall back to setjmp() implementation for discovery of GC pointers in registers.
|
|
|
|
#define MICROPY_GCREGS_SETJMP (1)
|
2021-12-11 07:04:01 -05:00
|
|
|
#endif
|
2014-06-27 20:03:47 -04:00
|
|
|
|
2022-08-14 23:58:34 -04:00
|
|
|
// Enable the VFS, and enable the posix "filesystem".
|
|
|
|
#define MICROPY_ENABLE_FINALISER (1)
|
|
|
|
#define MICROPY_VFS (1)
|
|
|
|
#define MICROPY_READER_VFS (1)
|
|
|
|
#define MICROPY_HELPER_LEXER_UNIX (1)
|
|
|
|
#define MICROPY_VFS_POSIX (1)
|
|
|
|
#define MICROPY_READER_POSIX (1)
|
2023-03-02 01:32:13 -05:00
|
|
|
#ifndef MICROPY_TRACKED_ALLOC
|
|
|
|
#define MICROPY_TRACKED_ALLOC (MICROPY_BLUETOOTH_BTSTACK)
|
|
|
|
#endif
|
2022-08-14 23:58:34 -04:00
|
|
|
|
|
|
|
// VFS stat functions should return time values relative to 1970/1/1
|
|
|
|
#define MICROPY_EPOCH_IS_1970 (1)
|
|
|
|
|
|
|
|
// Assume that select() call, interrupted with a signal, and erroring
|
|
|
|
// with EINTR, updates remaining timeout value.
|
|
|
|
#define MICROPY_SELECT_REMAINING_TIME (1)
|
|
|
|
|
|
|
|
// Disable stackless by default.
|
2017-12-16 13:43:04 -05:00
|
|
|
#ifndef MICROPY_STACKLESS
|
2015-03-27 19:14:45 -04:00
|
|
|
#define MICROPY_STACKLESS (0)
|
|
|
|
#define MICROPY_STACKLESS_STRICT (0)
|
2017-12-16 13:43:04 -05:00
|
|
|
#endif
|
2015-03-27 19:14:45 -04:00
|
|
|
|
2022-08-14 23:58:34 -04:00
|
|
|
// If settrace is enabled then we need code saving.
|
|
|
|
#if MICROPY_PY_SYS_SETTRACE
|
|
|
|
#define MICROPY_PERSISTENT_CODE_SAVE (1)
|
|
|
|
#define MICROPY_COMP_CONST (0)
|
2015-12-13 01:47:00 -05:00
|
|
|
#endif
|
2022-08-14 23:58:34 -04:00
|
|
|
|
|
|
|
// Unix-specific configuration of machine.mem*.
|
2015-12-13 19:11:20 -05:00
|
|
|
#define MICROPY_MACHINE_MEM_GET_READ_ADDR mod_machine_mem_get_addr
|
|
|
|
#define MICROPY_MACHINE_MEM_GET_WRITE_ADDR mod_machine_mem_get_addr
|
2014-06-27 20:03:47 -04:00
|
|
|
|
2016-02-13 16:03:23 -05:00
|
|
|
#define MICROPY_FATFS_ENABLE_LFN (1)
|
|
|
|
#define MICROPY_FATFS_RPATH (2)
|
|
|
|
#define MICROPY_FATFS_MAX_SS (4096)
|
2019-02-25 07:46:17 -05:00
|
|
|
#define MICROPY_FATFS_LFN_CODE_PAGE 437 /* 1=SFN/ANSI 437=LFN/U.S.(OEM) */
|
2016-02-13 16:03:23 -05:00
|
|
|
|
2022-08-14 23:58:34 -04:00
|
|
|
#define MICROPY_ALLOC_PATH_MAX (PATH_MAX)
|
2014-07-02 02:46:53 -04:00
|
|
|
|
2022-08-14 23:58:34 -04:00
|
|
|
// Ensure builtinimport.c works with -m.
|
|
|
|
#define MICROPY_MODULE_OVERRIDE_MAIN_IMPORT (1)
|
2013-10-12 09:30:21 -04:00
|
|
|
|
2023-06-05 02:52:29 -04:00
|
|
|
// Don't default sys.argv and sys.path because we do that in main.
|
2022-08-14 23:58:34 -04:00
|
|
|
#define MICROPY_PY_SYS_PATH_ARGV_DEFAULTS (0)
|
2017-03-30 20:21:18 -04:00
|
|
|
|
2022-10-06 11:13:58 -04:00
|
|
|
// Enable sys.executable.
|
|
|
|
#define MICROPY_PY_SYS_EXECUTABLE (1)
|
|
|
|
|
2022-08-18 01:01:26 -04:00
|
|
|
#define MICROPY_PY_SOCKET_LISTEN_BACKLOG_DEFAULT (SOMAXCONN < 128 ? SOMAXCONN : 128)
|
2013-12-29 20:38:32 -05:00
|
|
|
|
2022-08-14 23:58:34 -04:00
|
|
|
// Bare-metal ports don't have stderr. Printing debug to stderr may give tests
|
|
|
|
// which check stdout a chance to pass, etc.
|
|
|
|
extern const struct _mp_print_t mp_stderr_print;
|
|
|
|
#define MICROPY_DEBUG_PRINTER (&mp_stderr_print)
|
|
|
|
#define MICROPY_ERROR_PRINTER (&mp_stderr_print)
|
2014-11-16 17:16:14 -05:00
|
|
|
|
2022-08-14 23:58:34 -04:00
|
|
|
// For the native emitter configure how to mark a region as executable.
|
2017-03-30 20:21:18 -04:00
|
|
|
void mp_unix_alloc_exec(size_t min_size, void **ptr, size_t *size);
|
|
|
|
void mp_unix_free_exec(void *ptr, size_t size);
|
2015-01-13 19:11:09 -05:00
|
|
|
void mp_unix_mark_exec(void);
|
2014-09-03 10:59:33 -04:00
|
|
|
#define MP_PLAT_ALLOC_EXEC(min_size, ptr, size) mp_unix_alloc_exec(min_size, ptr, size)
|
|
|
|
#define MP_PLAT_FREE_EXEC(ptr, size) mp_unix_free_exec(ptr, size)
|
2016-06-17 17:18:01 -04:00
|
|
|
#ifndef MICROPY_FORCE_PLAT_ALLOC_EXEC
|
|
|
|
// Use MP_PLAT_ALLOC_EXEC for any executable memory allocation, including for FFI
|
|
|
|
// (overriding libffi own implementation)
|
|
|
|
#define MICROPY_FORCE_PLAT_ALLOC_EXEC (1)
|
|
|
|
#endif
|
2014-09-03 10:59:33 -04:00
|
|
|
|
2022-08-14 23:58:34 -04:00
|
|
|
// If enabled, configure how to seed random on init.
|
2022-08-18 01:01:26 -04:00
|
|
|
#ifdef MICROPY_PY_RANDOM_SEED_INIT_FUNC
|
2022-06-02 03:13:03 -04:00
|
|
|
#include <stddef.h>
|
|
|
|
void mp_hal_get_random(size_t n, void *buf);
|
2022-08-18 00:47:56 -04:00
|
|
|
static inline unsigned long mp_random_seed_init(void) {
|
2022-06-02 03:13:03 -04:00
|
|
|
unsigned long r;
|
|
|
|
mp_hal_get_random(sizeof(r), &r);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-07-05 17:08:33 -04:00
|
|
|
#ifdef __linux__
|
|
|
|
// Can access physical memory using /dev/mem
|
|
|
|
#define MICROPY_PLAT_DEV_MEM (1)
|
|
|
|
#endif
|
|
|
|
|
2015-10-14 17:10:26 -04:00
|
|
|
#ifdef __ANDROID__
|
|
|
|
#include <android/api-level.h>
|
|
|
|
#if __ANDROID_API__ < 4
|
|
|
|
// Bionic libc in Android 1.5 misses these 2 functions
|
2015-11-13 06:24:39 -05:00
|
|
|
#define MP_NEED_LOG2 (1)
|
2015-10-14 17:10:26 -04:00
|
|
|
#define nan(x) NAN
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2015-12-14 16:48:12 -05:00
|
|
|
// From "man readdir": "Under glibc, programs can check for the availability
|
|
|
|
// of the fields [in struct dirent] not defined in POSIX.1 by testing whether
|
|
|
|
// the macros [...], _DIRENT_HAVE_D_TYPE are defined."
|
|
|
|
// Other libc's don't define it, but proactively assume that dirent->d_type
|
|
|
|
// is available on a modern *nix system.
|
|
|
|
#ifndef _DIRENT_HAVE_D_TYPE
|
|
|
|
#define _DIRENT_HAVE_D_TYPE (1)
|
|
|
|
#endif
|
2015-12-16 09:17:56 -05:00
|
|
|
// This macro is not provided by glibc but we need it so ports that don't have
|
|
|
|
// dirent->d_ino can disable the use of this field.
|
|
|
|
#ifndef _DIRENT_HAVE_D_INO
|
|
|
|
#define _DIRENT_HAVE_D_INO (1)
|
|
|
|
#endif
|
2016-07-25 19:49:48 -04:00
|
|
|
|
2016-08-10 10:35:20 -04:00
|
|
|
#ifndef __APPLE__
|
2016-07-25 19:49:48 -04:00
|
|
|
// For debugging purposes, make printf() available to any source file.
|
|
|
|
#include <stdio.h>
|
2016-08-10 10:35:20 -04:00
|
|
|
#endif
|
2019-10-22 20:20:07 -04:00
|
|
|
|
2022-08-14 23:58:34 -04:00
|
|
|
// If threading is enabled, configure the atomic section.
|
2020-04-02 23:07:34 -04:00
|
|
|
#if MICROPY_PY_THREAD
|
2020-08-14 01:46:53 -04:00
|
|
|
#define MICROPY_BEGIN_ATOMIC_SECTION() (mp_thread_unix_begin_atomic_section(), 0xffffffff)
|
2020-04-02 23:07:34 -04:00
|
|
|
#define MICROPY_END_ATOMIC_SECTION(x) (void)x; mp_thread_unix_end_atomic_section()
|
|
|
|
#endif
|
|
|
|
|
2022-08-14 23:58:34 -04:00
|
|
|
// In lieu of a WFI(), slow down polling from being a tight loop.
|
2022-02-07 14:37:37 -05:00
|
|
|
#ifndef MICROPY_EVENT_POLL_HOOK
|
2020-10-15 19:10:26 -04:00
|
|
|
#define MICROPY_EVENT_POLL_HOOK \
|
|
|
|
do { \
|
|
|
|
extern void mp_handle_pending(bool); \
|
|
|
|
mp_handle_pending(true); \
|
2022-07-14 22:12:57 -04:00
|
|
|
usleep(500); /* equivalent to mp_hal_delay_us(500) */ \
|
2020-10-15 19:10:26 -04:00
|
|
|
} while (0);
|
2022-02-07 14:37:37 -05:00
|
|
|
#endif
|
2020-04-07 00:42:36 -04:00
|
|
|
|
2022-08-14 23:58:34 -04:00
|
|
|
// Configure the implementation of machine.idle().
|
2020-04-07 00:42:36 -04:00
|
|
|
#include <sched.h>
|
|
|
|
#define MICROPY_UNIX_MACHINE_IDLE sched_yield();
|
extmod: Make extmod.mk self-contained.
This makes it so that all a port needs to do is set the relevant variables
and "include extmod.mk" and doesn't need to worry about adding anything to
OBJ, CFLAGS, SRC_QSTR, etc.
Make all extmod variables (src, flags, etc) private to extmod.mk.
Also move common/shared, extmod-related fragments (e.g. wiznet, cyw43,
bluetooth) into extmod.mk.
Now that SRC_MOD, CFLAGS_MOD, CXXFLAGS_MOD are unused by both extmod.mk
(and user-C-modules in a previous commit), remove all uses of them from
port makefiles.
Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
2022-10-08 08:59:08 -04:00
|
|
|
|
|
|
|
#ifndef MICROPY_PY_BLUETOOTH_ENABLE_CENTRAL_MODE
|
|
|
|
#define MICROPY_PY_BLUETOOTH_ENABLE_CENTRAL_MODE (1)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MICROPY_PY_BLUETOOTH_ENABLE_L2CAP_CHANNELS
|
|
|
|
#define MICROPY_PY_BLUETOOTH_ENABLE_L2CAP_CHANNELS (MICROPY_BLUETOOTH_NIMBLE)
|
|
|
|
#endif
|