rtos/tinyara.git
6 years agoinclude/tls: summarize all error symbols in mbedTLS
Junyeon LEE [Tue, 18 Jul 2017 04:59:11 +0000 (13:59 +0900)]
include/tls: summarize all error symbols in mbedTLS

This commit integrates all error symbols in mbedTLS for
easy searching error number.

Change-Id: Ia7cff5b8380e6bee939e91143e27be2872c01675
Signed-off-by: Junyeon LEE <junyeon2.lee@samsung.com>
6 years agodrivers/sensors: s5j/ppd42ns: modify ppd42ns dust sensor driver
Wonsang Ryou [Mon, 24 Jul 2017 06:14:34 +0000 (15:14 +0900)]
drivers/sensors: s5j/ppd42ns: modify ppd42ns dust sensor driver

This patch modifies ppd42ns driver according to Tizen RT device driver
model. The previous ppd42ns driver has implemented according to common
sensor API definition (os/include/tinyara/sensors/sensor.h). The common
sensor API will be removed.

The details are as follows.

 1. remove common sensor API definition
      : os/include/tinyara/sensors/sensor.h
 2. modify ppd42ns driver according to Tizen RT device driver model
    - implement open, close and read operations
    - implement board dependent functions as callback
    - implement the function for registering character driver
      : os/drivers/sensors/ppd42ns.c
        os/include/tinyara/sensors/ppd42ns.h
 3. add Samsung S5JT200 code for implementing board dependent callback
      : os/arch/arm/src/s5j/s5j_ppd42ns.c
        os/arch/arm/src/s5j/s5j_ppd42ns.h
 4. add sensor driver registering code on board initialization
      : os/arch/arm/src/artik053/src/artik053_boot.c,
        os/arch/arm/src/sidk_s5jt200/src/s5jt200_boot.c
 5. modify ppd42ns example application using file operation
      : apps/examples/sensor_test/ppd42ns_test.c

Change-Id: I14ae5e10a3624cf8bb7125137323fcc3bb6c50ca
Signed-off-by: Wonsang Ryou <wonsang.yoo@samsung.com>
6 years agoexamples/dnsclient_test: make dns server port configurable in .config
Wonsang Ryou [Tue, 18 Jul 2017 10:27:08 +0000 (19:27 +0900)]
examples/dnsclient_test: make dns server port configurable in .config

This patch enables dnsclient_test app's server port to be configurable
in .config. You can set dns server's port number using the following
config variable.
 - CONFIG_EXAMPLES_DNSCLIENT_TEST_SERVER_PORT

CONFIG_EXAMPLES_DNSCLIENT_TEST_SERVER_PORT can be configurable only
when CONFIG_NETDB_DNSSERVER_IPv4 is enabled.

Change-Id: I9fae97c85ab3fe91a7e3be0cb1f9534255072370
Signed-off-by: Wonsang Ryou <wonsang.yoo@samsung.com>
6 years agonetutils/ntpclient: make debug message option configurable in .config
Wonsang Ryou [Tue, 18 Jul 2017 09:40:16 +0000 (18:40 +0900)]
netutils/ntpclient: make debug message option configurable in .config

This patch enables ntpclient's debug message option to be configurable
in .config. You can set debug message option using the following config
variable.
 - CONFIG_NETUTILS_NTPCLIENT_DEBUG

Change-Id: Idff252265478b6006fe1995ac33e094c097b03e1
Signed-off-by: Wonsang Ryou <wonsang.yoo@samsung.com>
6 years agoexamples/ntpclient_test: make ntp server port configurable in .config
Wonsang Ryou [Tue, 18 Jul 2017 09:50:26 +0000 (18:50 +0900)]
examples/ntpclient_test: make ntp server port configurable in .config

This patch enables ntp server's port number to be configurable in
.config. You can set ntp server's port number using the following
config variable.
 - CONFIG_EXAMPLES_NTPCLIENT_TEST_SERVER_PORT

Change-Id: I39e8f46cbfc677449771016ac4048abcc9165e78
Signed-off-by: Wonsang Ryou <wonsang.yoo@samsung.com>
6 years agonetutils/libcoap : patch to prevent memory leakage caused by observers
Jin-Seong Kim [Tue, 18 Jul 2017 05:32:00 +0000 (14:32 +0900)]
netutils/libcoap : patch to prevent memory leakage caused by observers

This commit is patch to prevent memory leakage caused by observers
 - there is no routine to free observers for libcoap-server
 - remained observers in a resource can cause memory leakage

Change-Id: Ib2aefc9cd5f9572f5170fc96f0f832e02692dfc9
Signed-off-by: Jin-Seong Kim <jseong82.kim@samsung.com>
6 years agonetutils/tls: fix error print
bossjisu [Tue, 18 Jul 2017 13:05:35 +0000 (06:05 -0700)]
netutils/tls: fix error print

make tls_handshake error print intuitive.
this makes error messages are matched with tls error codes directly.

Change-Id: Iafdc99ffa588318008d63078f0517af7bf241145
Signed-off-by: bossjisu <jisuu.kim@samsung.com>
6 years agoapps/webserver: misc change on callbacks
bossjisu [Mon, 17 Jul 2017 12:39:39 +0000 (05:39 -0700)]
apps/webserver: misc change on callbacks

update websocket callbacks in webserver with the recent one.

Change-Id: I106dd779e45232f2a75f562adb23bec7f51b054c
Signed-off-by: bossjisu <jisuu.kim@samsung.com>
6 years agonetutil/webserver,websocket: wrong initializing
bossjisu [Mon, 17 Jul 2017 10:40:11 +0000 (03:40 -0700)]
netutil/webserver,websocket: wrong initializing

websocket_find_table() set the state to WEBSOCKET_RUN_SERVER, but
webserver cleans the structure after websocket_find_table().

Change-Id: I6c59d18159860afb066ce7a99e99bb77b9e0bb57
Signed-off-by: bossjisu <jisuu.kim@samsung.com>
6 years agosidk_s5jt200/hello defconfig: enable CONFIG_NOPRINTF_FIELDWIDTH and
EunBong Song [Fri, 14 Jul 2017 13:04:48 +0000 (06:04 -0700)]
sidk_s5jt200/hello defconfig: enable CONFIG_NOPRINTF_FIELDWIDTH and
CONFIG_NOPRINTF_LONGLONG_TO_ASCII

This feature reduce hello config size up to 14KB.

Change-Id: Iacceb6d265d7aa2b70c4551b5ce7d6d230fb6e24
Signed-off-by: EunBong Song <eunb.song@samsung.com>
6 years agolibc: netdb: Fix bugs in lib_gethostbynamer.c
EunBong Song [Fri, 14 Jul 2017 13:20:23 +0000 (06:20 -0700)]
libc: netdb: Fix bugs in lib_gethostbynamer.c

This fix sets h_name in struct hostent returned by gethostbyname()

This patch comes from Nuttx community.
Commit id: 6ccc01ad

Change-Id: I8a92e862081e62ec2fa09c378eb86bb7c5736182
Signed-off-by: EunBong Song <eunb.song@samsung.com>
6 years agolibc: introduce NOPRINTF_LONGLONG_TO_ASCII
EunBong Song [Fri, 14 Jul 2017 13:03:04 +0000 (06:03 -0700)]
libc: introduce NOPRINTF_LONGLONG_TO_ASCII

This patch introduces NOPRINTF_LONGLONG_TO_ASCII config.
If you don't need to support long long type in printf, enable
this feature.

Change-Id: If01bf473292eec5525645cfff2c79d1c48297e1f
Signed-off-by: EunBong Song <eunb.song@samsung.com>
6 years agonetutils/libcoap : introduce CoAP over DTLS support
Jin-Seong Kim [Thu, 13 Jul 2017 02:20:03 +0000 (11:20 +0900)]
netutils/libcoap : introduce CoAP over DTLS support

This commit is to introduce CoAP over DTLS support
Known issues on libcoap-server example :
 - CoAP over DTLS supports NON message only
 - CoAP over DTLS supports only one transaction so, server should restart
   after a data transaction

Change-Id: Iec0fd57e3d2366a3af3bf88553b1ff6a13bb4df8
Signed-off-by: Jin-Seong Kim <jseong82.kim@samsung.com>
6 years agosidk_s5jt200/hello defconfig: remove unnecessary config for hello app.
EunBong Song [Fri, 14 Jul 2017 09:02:41 +0000 (02:02 -0700)]
sidk_s5jt200/hello defconfig: remove unnecessary config for hello app.

This patch removes unnecessary configs for hello app.
After applying this patch, binary size reduced to 17KB from 31KB.

Change-Id: I9262989cc1025e2324f56eae553fb1a51a7510fb
Signed-off-by: EunBong Song <eunb.song@samsung.com>
6 years agoBuild: change CONFIG_NSOCKET_DESCRIPTORS to CONFIG_NET in Makefile
EunBong Song [Fri, 14 Jul 2017 09:01:11 +0000 (02:01 -0700)]
Build: change CONFIG_NSOCKET_DESCRIPTORS to CONFIG_NET in Makefile

ifeq ($(CONFIG_NSOCKET_DESCRIPTORS), xx) does not work properly because
CONFIG_NSOCKET_DESCRIPTORS is defined automatically to zero when CONFIG_NET
is disable. So this should be changed to compare with CONFIG_NET.

Change-Id: I4d8acec4a71f01d6065b001b5a154c018891d671
Signed-off-by: EunBong Song <eunb.song@samsung.com>
6 years agofs: driver: Make configurable BCH driver
EunBong Song [Fri, 14 Jul 2017 08:40:24 +0000 (01:40 -0700)]
fs: driver: Make configurable BCH driver

BCH driver is always compiled. This patch makes BCH driver is
configurable.

Change-Id: I918e90d154f7fe2d361b2cd3d74915291b8ea449
Signed-off-by: EunBong Song <eunb.song@samsung.com>
6 years agonetutils/webserver: Add config parameter for setting client handler.
Junyeon LEE [Thu, 13 Jul 2017 14:00:36 +0000 (23:00 +0900)]
netutils/webserver: Add config parameter for setting client handler.

This commit addes Webserver's CLIENT_HANDLER number in Kconfig.
Because of this commit, it is more easy to set client handler number.

Change-Id: I785805865b3fb1e1e9673c7376a73c4f58ddee20
Signed-off-by: Junyeon LEE <junyeon2.lee@samsung.com>
6 years agokernel/sched: remove maximum boundary check for pid
Junyeon LEE [Tue, 11 Jul 2017 13:17:07 +0000 (22:17 +0900)]
kernel/sched: remove maximum boundary check for pid

This commit fixes maximum boundary checking in sched_gettcb().
If thread or task was created over 32767, g_lastpid value returns
to lower value and it makes wrong comparision in sched_gettcb().

For example)
System thread (pid = 32767) was already created and user creates
one more thread, then user's pid will be allocated lower than system's
thread (1 or above). In this case, not that g_lastpid is same with
user's pid, system's pid can not fit below condition.
(pid > 0 && pid <= g_lastpid)

Change-Id: I9a6d164dd5d7b49e7920e1f597015bd8211b1297
Signed-off-by: Junyeon LEE <junyeon2.lee@samsung.com>
6 years agoexamples/libcoap : increase pthread stack size to support security
Jin-Seong Kim [Mon, 10 Jul 2017 08:29:55 +0000 (17:29 +0900)]
examples/libcoap : increase pthread stack size to support security

This commit is to increase pthread stack size to support security
 - to support security through mbedTLS libarary,
   pthread stack size should be (16 * 1024) at least

Change-Id: Ic01b803dcb0b4bf3d6e4a0c2e8f3b6e5546ab434
Signed-off-by: Jin-Seong Kim <jseong82.kim@samsung.com>
6 years agonetutils/libcoap : fixes, including path of libcoap headers
Jin-Seong Kim [Mon, 10 Jul 2017 02:37:59 +0000 (11:37 +0900)]
netutils/libcoap : fixes, including path of libcoap headers

This commit is to fix including header path
 - header including path is fixed to absoulte path
   to give same experiences to developers as other netutil libraries

Change-Id: Idf5aa0c5e4684e9d206f8018e4532949eb410ed1
Signed-off-by: Jin-Seong Kim <jseong82.kim@samsung.com>
6 years agonetutils/websocket: add websocket state
bossjisu [Fri, 7 Jul 2017 10:51:53 +0000 (03:51 -0700)]
netutils/websocket: add websocket state

add state to let application know websocket_handler is stopped for error.

Change-Id: I6d21fe8f68e6947fbf2000253ad767ccb04a330c
Signed-off-by: bossjisu <jisuu.kim@samsung.com>
6 years agonetutils/websocket: separate state
bossjisu [Thu, 6 Jul 2017 09:21:39 +0000 (02:21 -0700)]
netutils/websocket: separate state

running state is splitted to run_client state and run_server state.
it's because mbed_tls function varies between client and server.
TLS code will be separated with websocket code in next update.

Change-Id: I0a7c2cff335a6b92e18cb0d1b52c1f28d4811f16
Signed-off-by: bossjisu <jisuu.kim@samsung.com>
6 years agonetutils/websocket: multi client is not supported
bossjisu [Wed, 5 Jul 2017 17:44:48 +0000 (10:44 -0700)]
netutils/websocket: multi client is not supported

Change-Id: I9eef55cb8ad93581f87c3ccaa6444340048ae526
Signed-off-by: bossjisu <jisuu.kim@samsung.com>
6 years agonetutils/websocket: Use defined free and close
bossjisu [Wed, 5 Jul 2017 13:58:08 +0000 (06:58 -0700)]
netutils/websocket: Use defined free and close

Use defines to close the socket and free the memory.
misc changes to organize codes

Change-Id: I826e3aff984883e614e6666de8e9c602d1ff798d
Signed-off-by: bossjisu <jisuu.kim@samsung.com>
6 years agonetutils/websocket: misc changes in handling loop
bossjisu [Wed, 5 Jul 2017 13:34:25 +0000 (06:34 -0700)]
netutils/websocket: misc changes in handling loop

websocket state is supposed to be changed at the last.
Otherwise, it can happen memory leaks.

Change-Id: I32d82a77dae1c17406c485a21f9b7d098da8a89e
Signed-off-by: bossjisu <jisuu.kim@samsung.com>
6 years agonetutils/websocket: set TCP_NODELAY
bossjisu [Wed, 5 Jul 2017 13:17:34 +0000 (06:17 -0700)]
netutils/websocket: set TCP_NODELAY

TCP_NODELAY option is recommended for the user application like websocket.
https://developers.slashdot.org/comments.pl?sid=174457&threshold=1&commentsort=0&mode=thread&cid=14515105

Change-Id: I1fa04271fa3b62a35221551670b0aa6fc024da0d
Signed-off-by: bossjisu <jisuu.kim@samsung.com>
6 years agoexamples/websocket: set default TLS debug level.
Junyeon LEE [Tue, 4 Jul 2017 11:15:31 +0000 (20:15 +0900)]
examples/websocket: set default TLS debug level.

This commit set default tls debug level to zero. Because of too
much debug log, socket recv function sometimes makes timeout error.

Change-Id: Icf51b8d6eedc36469b019b1b7e756706d8d9e2ec
Signed-off-by: Junyeon LEE <junyeon2.lee@samsung.com>
6 years agovfs: fdopen: add missing file stream flags clearing.
EunBong Song [Tue, 4 Jul 2017 06:01:34 +0000 (15:01 +0900)]
vfs: fdopen: add missing file stream flags clearing.

Clear file stream structure regardless of config options.
Structure clearing is needed as previous use of stream
list entry might leave fs_flags set.
Thia patch comes from nuttx community commit id: b8b9309d

Change-Id: I072757f092cedc179982af736d6d9a48ee90c97b
Signed-off-by: EunBong Song <eunb.song@samsung.com>
6 years agolibc netdb: gethostbyname_r: Fix check for space in buffer.
EunBong Song [Tue, 4 Jul 2017 04:11:26 +0000 (13:11 +0900)]
libc netdb: gethostbyname_r: Fix check for space in buffer.

This patch comes from Nuttx commit id: ee7217be

Change-Id: Ifc2b1973978b1b16e7fa1795a6009717bd67aa51
Signed-off-by: EunBong Song <eunb.song@samsung.com>
6 years agoMTD M2PX: Fix read problem when write/erase is pending
EunBong Song [Tue, 4 Jul 2017 02:19:30 +0000 (11:19 +0900)]
MTD M2PX: Fix read problem when write/erase is pending

If we READ while a write/erase is pending, the command is ignored
and the write/erase continues. If we dont catch this situation we will
return garbage to the user because the flash will not execute the command.
So READ MUST wait for write completion, and before that, the bus must be
locked since it's a precondition to calling waitwritecomplete().

This patch comes from Nuttx commit id: 2851959d

Change-Id: I2934f7d5d96048a6a97a272d84267ae8551d1198
Signed-off-by: EunBong Song <eunb.song@samsung.com>
6 years agomemstats_gnueabil.py: minor fix
Vyacheslav Tyrtov [Tue, 6 Jun 2017 08:50:12 +0000 (11:50 +0300)]
memstats_gnueabil.py: minor fix

Drop subSymbol value at level1
Otherwise there is possibility of a bug during parsing of "fill" line.

Change-Id: I6800ced4cdf2143bb7a0dacc88f887b817d5e38a
Signed-off-by: Vyacheslav Tyrtov <v.tyrtov@samsung.com>
6 years agonetutils/webserver: fix chunked-encoding problem.
Junyeon LEE [Mon, 3 Jul 2017 14:13:26 +0000 (23:13 +0900)]
netutils/webserver: fix chunked-encoding problem.

This commit fixes chunked encoding problem in webserver. Webserver
sometimes misunderstood received data whether chunked or content-length.
This problem is caused by uninitialized request structure and fixed it.

Additinally, chunked routine added in PUT callback.

Change-Id: If63dace52e03feb3b71a4fc18f957c8822ec13d3
Signed-off-by: Junyeon LEE <junyeon2.lee@samsung.com>
6 years agoexamples/tls_benchmark: introduce new benchmark app
Junyeon LEE [Wed, 28 Jun 2017 19:57:55 +0000 (04:57 +0900)]
examples/tls_benchmark: introduce new benchmark app

This commit introduce a new crypto benchmark application.
You can get a each crypto's performance with this app.

  MD5                      :      24017 Kb/s
  SHA-1                    :      15548 Kb/s
  SHA-256                  :       7518 Kb/s
  3DES                     :       1103 Kb/s
  DES                      :       2714 Kb/s
  AES-CBC-128              :       4202 Kb/s
  AES-CBC-192              :       3991 Kb/s
  AES-CBC-256              :       3538 Kb/s
  AES-GCM-128              :       1789 Kb/s

                   ..........

Change-Id: I67fd6a9139e404208a02397c7fc49f1fe4e6905b
Signed-off-by: Junyeon LEE <junyeon2.lee@samsung.com>
6 years agoexternal/wakaama : change type to fix a error.
Seongeun Choi [Fri, 23 Jun 2017 12:06:54 +0000 (21:06 +0900)]
external/wakaama : change type to fix a error.

This commit is to fix a logical error.
Expression 'len < ((1 << 16) + 269)' is always true,
which may be caused by a logical error.

Change-Id: I07408010f17ff85458fd666baaedce7f8571f343
Signed-off-by: Seongeun Choi <seongeun.choi@samsung.com>
6 years agodrivers/sensors: introduce ppd42ns dust sensor driver
Wonsang Ryou [Mon, 19 Jun 2017 06:11:10 +0000 (15:11 +0900)]
drivers/sensors: introduce ppd42ns dust sensor driver

This commit introduces the sensor driver that controls ppd42ns dust
sensor.

Change-Id: Ic3781eeeb5c898a7cd9ab3b52dbf0788d36e168d
Signed-off-by: Wonsang Ryou <wonsang.yoo@samsung.com>
6 years agoMerge pull request #439 from junmin-kim/qemu_tc
sunghan-chang [Wed, 30 Aug 2017 03:50:48 +0000 (12:50 +0900)]
Merge pull request #439 from junmin-kim/qemu_tc

Add qemu tc build config

6 years agoMerge pull request #452 from iamsanjeev/master
sunghan-chang [Wed, 30 Aug 2017 03:39:21 +0000 (12:39 +0900)]
Merge pull request #452 from iamsanjeev/master

Fix Artik Demo example.

6 years agoMerge pull request #464 from pmarcinkiew/gcc720_double_t
sunghan-chang [Wed, 30 Aug 2017 03:34:47 +0000 (12:34 +0900)]
Merge pull request #464 from pmarcinkiew/gcc720_double_t

Fix compilation of arm-linux-gnueabi-gcc-

6 years agoMerge pull request #460 from jeongarmy/ttrace
sunghan-chang [Wed, 30 Aug 2017 03:31:01 +0000 (12:31 +0900)]
Merge pull request #460 from jeongarmy/ttrace

Fix incorrect logics and somethings in t-trace

6 years agoMerge pull request #449 from sunghan-chang/s5jt200_romfs
btheosam [Wed, 30 Aug 2017 02:02:22 +0000 (11:02 +0900)]
Merge pull request #449 from sunghan-chang/s5jt200_romfs

romfs

6 years agoMerge pull request #458 from jeongchanKim/kernel_tc
btheosam [Wed, 30 Aug 2017 02:02:00 +0000 (11:02 +0900)]
Merge pull request #458 from jeongchanKim/kernel_tc

Modify libgen tc to avoid constant string modification

6 years agoMerge pull request #454 from pillip8282/svace_fix
sangwon03 [Tue, 29 Aug 2017 23:23:40 +0000 (08:23 +0900)]
Merge pull request #454 from pillip8282/svace_fix

Svace Bug Fix

6 years agoFix compilation of arm-linux-gnueabi-gcc-
Jaroslaw Pelczar [Tue, 29 Aug 2017 08:26:18 +0000 (10:26 +0200)]
Fix compilation of arm-linux-gnueabi-gcc-

When compiling with Linux toolchain, there are build errors like:

math/lib_j1.c: In function â€˜pone’:
math/lib_j1.c:363:2: error: unknown type name â€˜double_t’; did you mean
‘double’?
  double_t z;
  ^~~~~~~~

This patch solves compilation using modern v7.2.0 toolchain.

Signed-off-by: Jaroslaw Pelczar <j.pelczar@samsung.com>
6 years agoFix Artik demo example link error by
Sanjeev BA [Mon, 28 Aug 2017 09:38:22 +0000 (18:38 +0900)]
Fix Artik demo example link error by

1. fixing typos in wifi API.
2. Replacing an get_security_config with getSecurityConfig.
3. Making 'dm' a dependency for this example.

Signed-off-by: Sanjeev BA <iamsanjeev@gmail.com>
6 years agoChange tash command to excute ttrace testcase and fix typo in ttrace testcase
Ahreum Jeong [Tue, 29 Aug 2017 08:38:20 +0000 (17:38 +0900)]
Change tash command to excute ttrace testcase and fix typo in ttrace testcase

6 years agoAdd qemu tc build config
junmin kim [Tue, 22 Aug 2017 05:36:59 +0000 (22:36 -0700)]
Add qemu tc build config

6 years agoMove logic of checking whether the tag is valid or not to upper level
Ahreum Jeong [Tue, 29 Aug 2017 08:17:49 +0000 (17:17 +0900)]
Move logic of checking whether the tag is valid or not to upper level
When tag is invalid, ttrace ioctl returns -1 and it is considered as error in upper level
But It is not failure of ioctl operation
So I changed that ioctl just returns value and a function which calls it should check whether ths tag is valid or not

6 years agoModify libgen tc to avoid constant string modification
jc_.kim [Tue, 29 Aug 2017 08:12:07 +0000 (17:12 +0900)]
Modify libgen tc to avoid constant string modification

6 years agoMerge pull request #436 from JeonginKim/master
sunghan-chang [Tue, 29 Aug 2017 07:55:25 +0000 (16:55 +0900)]
Merge pull request #436 from JeonginKim/master

External API -> Internal API for DM_Connectivity

6 years agoExternal API -> Internal API for DM_Connectivity
JeonginKim [Fri, 25 Aug 2017 00:42:42 +0000 (09:42 +0900)]
External API -> Internal API for DM_Connectivity

6 years agoMerge pull request #455 from jeongchanKim/kernel_svace
sunghan-chang [Tue, 29 Aug 2017 07:30:03 +0000 (16:30 +0900)]
Merge pull request #455 from jeongchanKim/kernel_svace

Modify tc and mm_heapinfo.c based on svace

6 years agoMerge pull request #456 from sunghan-chang/makefile
davidfather [Tue, 29 Aug 2017 07:03:33 +0000 (16:03 +0900)]
Merge pull request #456 from sunghan-chang/makefile

Deliver the EXTDIR definition for external folder path on Makefile

6 years agoMerge pull request #457 from HONGCHAEHEE/lwip-sem
pillip8282 [Tue, 29 Aug 2017 07:00:57 +0000 (16:00 +0900)]
Merge pull request #457 from HONGCHAEHEE/lwip-sem

Fix a lwip semaphore issue

6 years agoModify tc and mm_heapinfo.c based on svace
jc_.kim [Tue, 29 Aug 2017 06:30:26 +0000 (15:30 +0900)]
Modify tc and mm_heapinfo.c based on svace

tc_libc_syslog.c : Use of vulnerable function 'sprintf' at tc_libc_syslog.c:90. This function is unsafe, use snprintf instead.
tc_libc_unistd.c : Use of vulnerable function 'sprintf' at tc_libc_unistd.c:279. This function is unsafe, use snprintf instead.
tc_pthread.c : No unlock for mutex 'g_mutex' at tc_pthread.c:1284 after lock at tc_pthread.c:1278 by calling function 'pthread_mutex_lock'.
tc_sched.c : Dynamic memory referenced by 'status' was allocated at tc_sched.c:306 by calling function 'malloc' and lost at tc_sched.c
mm_heapinfo.c : Return value of a function 'sched_gettcb' is dereferenced at mm_heapinfo.c:277 without checking, but it is usually checked for this function

6 years agoFix a lwip semaphore issue
chaehee.hong [Tue, 29 Aug 2017 06:50:44 +0000 (23:50 -0700)]
Fix a lwip semaphore issue

6 years agoDeliver the EXTDIR definition for external folder path on Makefile
sunghan [Tue, 29 Aug 2017 06:35:03 +0000 (15:35 +0900)]
Deliver the EXTDIR definition for external folder path on Makefile

The external and apps folder need to use the external folder path.

6 years agoSvace Bug Fix
kang [Tue, 29 Aug 2017 05:25:31 +0000 (14:25 +0900)]
Svace Bug Fix

6 years agoMerge pull request #453 from GalkinIvan/audio
btheosam [Tue, 29 Aug 2017 01:38:38 +0000 (10:38 +0900)]
Merge pull request #453 from GalkinIvan/audio

Initial complete commit to test audio through i2schar path.

6 years agoi2schar: added code to enable I2Schar on Artik
Ivan [Mon, 28 Aug 2017 20:26:24 +0000 (05:26 +0900)]
i2schar: added code to enable I2Schar on Artik

Signed-off-by: Ivan <ivan.galkin@samsung.com>
6 years agoTizenRT: Fix code errors
Ivan [Mon, 28 Aug 2017 20:25:33 +0000 (05:25 +0900)]
TizenRT: Fix code errors

Signed-off-by: Ivan <ivan.galkin@samsung.com>
6 years agoMerge pull request #429 from sunghan-chang/0818
btheosam [Mon, 28 Aug 2017 06:52:39 +0000 (15:52 +0900)]
Merge pull request #429 from sunghan-chang/0818

change a file permission to 644

6 years agoMerge pull request #447 from sunghan-chang/gitignore
btheosam [Mon, 28 Aug 2017 06:52:12 +0000 (15:52 +0900)]
Merge pull request #447 from sunghan-chang/gitignore

add .gitignore to block adding built file for specific configs

6 years agotools/fs: add x option, messages and modify volume name on mkromfsimg.sh
sunghan [Mon, 28 Aug 2017 06:36:19 +0000 (15:36 +0900)]
tools/fs: add x option, messages and modify volume name on mkromfsimg.sh

1. Because the .gitignore should not be included at romfs.img, x option
is added.
2. Messages are added to know the start and end of making romfs.
3. The volume name is changed to "TinyAraROMVol" from "NuttXBootVol".

6 years agoremove usages of res folder on making romfs
sunghan [Mon, 28 Aug 2017 06:12:01 +0000 (15:12 +0900)]
remove usages of res folder on making romfs

We don't need to copy contents of romfs to res folder.
Let's make a romfs image in contents folder directly.

6 years agoadd .gitignore at contents
sunghan [Mon, 28 Aug 2017 06:05:14 +0000 (15:05 +0900)]
add .gitignore at contents

Currently we don't need to add any contents on remote.
Let's ignore everything in contents except .gitignore.

6 years agomove mkromfsimg.sh script and contents folder to tools/fs folder
sunghan [Mon, 28 Aug 2017 05:50:54 +0000 (14:50 +0900)]
move mkromfsimg.sh script and contents folder to tools/fs folder

The location of them is not correct. ROMFS is not a part of application and
external so that we move them to under tools folder.

6 years agoaudio: fix compile error when enable sensorbd
Bongryul Lee [Thu, 17 Aug 2017 05:01:43 +0000 (14:01 +0900)]
audio: fix compile error when enable sensorbd

Fixed a problem where alc5658char.c was not built

Change-Id: Icd908920c028bb359ed596b7c6f46770502ae2a9
Signed-off-by: Bongryul Lee <bongryul.lee@samsung.com>
6 years agoexamples/i2schar: add i2s character device example
Ivan [Wed, 16 Aug 2017 06:11:33 +0000 (15:11 +0900)]
examples/i2schar: add i2s character device example

Example for checking i2s rx / tx behavior

Change-Id: If7b367bdeb1d166ea1bced83c2d17bd637e982c9
Signed-off-by: Bongryul Lee <bongryul.lee@samsung.com>
6 years agoaudio: fix to use i2s character device
Bongryul Lee [Wed, 16 Aug 2017 06:09:11 +0000 (15:09 +0900)]
audio: fix to use i2s character device

Change-Id: Ie7d5c45aba10e8831506eb6d0c32b58f431fbd92
Signed-off-by: Bongryul Lee <bongryul.lee@samsung.com>
6 years agoartik053: add artik053 i2schar devinit interface
Bongryul Lee [Mon, 14 Aug 2017 08:21:32 +0000 (17:21 +0900)]
artik053: add artik053 i2schar devinit interface

Added initialization part to artik053 to use i2schar example

Change-Id: I8a2c0b35bcc3a47310b32bba6c9ee66376eba7d1
Signed-off-by: Bongryul Lee <bongryul.lee@samsung.com>
6 years agoartik053: remove unnecessary codes
Bongryul Lee [Mon, 14 Aug 2017 07:28:18 +0000 (16:28 +0900)]
artik053: remove unnecessary codes

Since alc5658 is not included in artik053, the related code is removed.
If you want to test alc5658 just enable CONFIG_EXAMPLES_SENSORBOARD.

Change-Id: I030627e16ec7cc3996d77109c88709f77b4dd71d
Signed-off-by: Bongryul Lee <bongryul.lee@samsung.com>
6 years agos5j/i2s: add i2s disable feature when no fifo transfer.
Ivan [Wed, 9 Aug 2017 09:11:14 +0000 (18:11 +0900)]
s5j/i2s: add i2s disable feature when no fifo transfer.

Change-Id: I7f86759d3aad87de2e7e3cad8392bbbe03306f01
Signed-off-by: Ivan <ivan.galkin@samsung.com>
Signed-off-by: Bongryul Lee <bongryul.lee@samsung.com>
6 years agoexamples/alc5658char: fix an invalid types
Bongryul Lee [Mon, 7 Aug 2017 07:17:24 +0000 (16:17 +0900)]
examples/alc5658char: fix an invalid types

Change variables and functions to static and delete invalid comments.

Change-Id: I7f55d9d5f6751f1c6d13d0e370d52c9128123d74
Signed-off-by: Bongryul Lee <bongryul.lee@samsung.com>
6 years agodefconfig: disable CONFIG_AUDIO_FORMAT_MP3 in audio defconfig
Bongryul Lee [Fri, 4 Aug 2017 06:20:33 +0000 (15:20 +0900)]
defconfig: disable CONFIG_AUDIO_FORMAT_MP3 in audio defconfig

Change-Id: I2f13c9e0dd1758f709f773130ba4f348893e6dda
Signed-off-by: Bongryul Lee <bongryul.lee@samsung.com>
6 years agoexamples/nxplayer: fix build error when CONFIG_AUDIO_FORMAT_MIDI=y
Bongryul Lee [Fri, 4 Aug 2017 06:15:18 +0000 (15:15 +0900)]
examples/nxplayer: fix build error when CONFIG_AUDIO_FORMAT_MIDI=y

nxplayer_getmidisubformat() did not consider default case in the switch
statement.

Change-Id: I8e0fb2d2c72caab8038eaddeb5886128e0037051
Signed-off-by: Bongryul Lee <bongryul.lee@samsung.com>
6 years agoaudio/alc5658: fix trivial typo
Junhwan Park [Tue, 1 Aug 2017 11:06:50 +0000 (20:06 +0900)]
audio/alc5658: fix trivial typo

We tested Realtek's ALC5658 codec.

Change-Id: I8dcce0afc01ac79aaf441bc54e7418f391ddcd4f
Signed-off-by: Junhwan Park <junhwan.park@samsung.com>
6 years agoaudio/alc5658: fix codec initialization procedure
Bongryul Lee [Tue, 1 Aug 2017 10:06:06 +0000 (19:06 +0900)]
audio/alc5658: fix codec initialization procedure

If the codec id is not alc5658, the initialization stops.

Change-Id: I79a0be9ab858b39923f7fc4f6ce7c142970eec9e
Signed-off-by: Bongryul Lee <bongryul.lee@samsung.com>
6 years agoaudio/alc5658: del unusing irq functions
Junhwan Park [Mon, 31 Jul 2017 14:03:33 +0000 (23:03 +0900)]
audio/alc5658: del unusing irq functions

This version of TizenRT does not use the critical_section functions. Use
the functions of irqsave() and irqrestrore().

Change-Id: I81c71c67a4ea55cfb7c4e31d586fba7b2db57ea9
Signed-off-by: Junhwan Park <junhwan.park@samsung.com>
Signed-off-by: Bongryul Lee <bongryul.lee@samsung.com>
6 years agoaudio/alc5658char: fix timeout value naming
Junhwan Park [Fri, 28 Jul 2017 05:45:11 +0000 (14:45 +0900)]
audio/alc5658char: fix timeout value naming

The names of the values indicating TX/RX TIMEOUT are incorrect.

Change-Id: I81a9488a399652aaea863ff5177681f430bfa786
Signed-off-by: Junhwan Park <junhwan.park@samsung.com>
6 years agoexamples/alc5658char_test: add alc5658 char codec test app
Bongryul Lee [Thu, 27 Jul 2017 05:39:08 +0000 (14:39 +0900)]
examples/alc5658char_test: add alc5658 char codec test app

This patch includes record, play and loopback to test the alc5658
character codec.
This code is for reference only.

Change-Id: Ieacfd55520b74c06144e6a2a62646ac7b871da35
Signed-off-by: Bongryul Lee <bongryul.lee@samsung.com>
Signed-off-by: Junhwan Park <junhwan.park@samsung.com>
6 years agoaudio/alc5658char: add reference alc5658 character device driver
Ivan [Thu, 27 Jul 2017 05:36:39 +0000 (14:36 +0900)]
audio/alc5658char: add reference alc5658 character device driver

This patch contains code for ALC5658 codec character device driver.
This code is for reference only.

Change-Id: I1a0bb368cede15130b5f6821f575884eba8427e6
Signed-off-by: Ivan <ivan.galkin@samsung.com>
Signed-off-by: Bongryul Lee <bongryul.lee@samsung.com>
Signed-off-by: Junhwan Park <junhwan.park@samsung.com>
6 years agoexamples/wave_gen: fix Kconfig to prevent invalied enable
Bongryul Lee [Thu, 27 Jul 2017 05:49:48 +0000 (14:49 +0900)]
examples/wave_gen: fix Kconfig to prevent invalied enable

wave_gen can be enabled when CONFIG_AUDIO=y

Change-Id: I01f38fedf3e23c358cf01d80594a79e324fe845f
Signed-off-by: Bongryul Lee <bongryul.lee@samsung.com>
6 years agoMakefile: fix build error when select a nettest config
Bongryul Lee [Mon, 3 Jul 2017 04:58:04 +0000 (13:58 +0900)]
Makefile: fix build error when select a nettest config

fixed artik053_alc5658.c to be built when CONFIG_AUDIO_ALC5658 is declared.

Change-Id: I2e83d132a4729e8dee24b5b44eccfc9706af37aa
Signed-off-by: Bongryul Lee <bongryul.lee@samsung.com>
6 years agodefconfig: Add audio defconfig for artik055 audio test
Bongryul Lee [Fri, 30 Jun 2017 05:45:22 +0000 (14:45 +0900)]
defconfig: Add audio defconfig for artik055 audio test

You can use this defconfig to enable audio related config.
Also can use nxplayer and wave_gen app.

Change-Id: I9de5d4f8932b1363f4087f2b5c3a5db11803605c
Signed-off-by: Bongryul Lee <bongryul.lee@samsung.com>
6 years agoartik053: Add support for the alc5658 audio CODEC
Bongryul Lee [Fri, 30 Jun 2017 05:33:50 +0000 (14:33 +0900)]
artik053: Add support for the alc5658 audio CODEC

This patch includes to use alc5653 codec on the artik055 board

Change-Id: I164ae01db200a038f124da111f480905a52ff475
Signed-off-by: Bongryul Lee <bongryul.lee@samsung.com>
Signed-off-by: Junhwan Park <junhwan.park@samsung.com>
6 years agos5j/dma: fixed DMA code for correct operation
Ivan [Thu, 15 Jun 2017 17:15:09 +0000 (02:15 +0900)]
s5j/dma: fixed DMA code for correct operation

For M2P and P2M transactions code is fixed to
make it able correctly transfer buffers sizes
from 4B to 4*(64K + 256)B

Change-Id: I90a2c058c3427574b0ca47a71be50b968564bea6
Signed-off-by: Ivan <ivan.galkin@samsung.com>
Signed-off-by: Bongryul Lee <bongryul.lee@samsung.com>
6 years agoaudio: fix inavlid debug message macro
Bongryul Lee [Wed, 14 Jun 2017 06:24:39 +0000 (15:24 +0900)]
audio: fix inavlid debug message macro

Change-Id: Id7170e6de898e0bce3e7f69772990532bd2aee6e
Signed-off-by: Bongryul Lee <bongryul.lee@samsung.com>
6 years agos5j/i2s: fix compilation errors
Bongryul Lee [Wed, 14 Jun 2017 05:11:24 +0000 (14:11 +0900)]
s5j/i2s: fix compilation errors

Change-Id: Ib87227eb3cb0fa0974019f388705baf2516a0663
Signed-off-by: Bongryul Lee <bongryul.lee@samsung.com>
6 years agoexamples/wave_gen: add wave file generator
Ivan [Wed, 7 Jun 2017 21:08:19 +0000 (06:08 +0900)]
examples/wave_gen: add wave file generator

generate sign wave file and store

Change-Id: I9d7bf6fdf186e9d9b10891a23a6285141930cc99
Signed-off-by: Ivan <ivan.galkin@samsung.com>
Signed-off-by: Bongryul Lee <bongryul.lee@samsung.com>
6 years agoexamples/nxplayer: add nxplayer from NuttX
Bongryul Lee [Wed, 7 Jun 2017 21:07:24 +0000 (06:07 +0900)]
examples/nxplayer: add nxplayer from NuttX

add command line media player.

Change-Id: I8ee94dff717833e0d64ac9655502fba663110f1d
Signed-off-by: Gregory Nutt <gnutt@nuttx.org>
[Lee: backported from NuttX]
Signed-off-by: Bongryul Lee <bongryul.lee@samsung.com>
Signed-off-by: Junhwan Park <junhwan.park@samsung.com>
6 years agoaudio/alc5658: Add alc5658 codec driver
Ivan [Thu, 1 Jun 2017 11:24:49 +0000 (20:24 +0900)]
audio/alc5658: Add alc5658 codec driver

Add alc5658 codec driver

Change-Id: Ia65453c8e961f0b7c3d404418ba81419f2ceabe7
Signed-off-by: Ivan <ivan.galkin@samsung.com>
6 years agos5j/pwrcal: add to support I2S MUX
Ivan [Wed, 31 May 2017 09:38:43 +0000 (18:38 +0900)]
s5j/pwrcal: add to support I2S MUX

Powercal code updated to support I2S mux.
Clocks sould come from I2S BCLK input, not PCLK.

Change-Id: I1014d4669c43b354fdfb9d4cf4c1390db0ee609a
Signed-off-by: Ivan <ivan.galkin@samsung.com>
Signed-off-by: Bongryul Lee <bongryul.lee@samsung.com>
6 years agos5j/dma: Add dma driver for i2s
Ivan [Tue, 30 May 2017 08:30:53 +0000 (17:30 +0900)]
s5j/dma: Add dma driver for i2s

This DMA code initally is intended to be used with I2S driver.
Can be also used with common memory transfers, and other IPs.

Change-Id: If2a30e00a1f2ec7f5d410d11a8b4a3a59814ecf3
Signed-off-by: Ivan <ivan.galkin@samsung.com>
Signed-off-by: Bongryul Lee <bongryul.lee@samsung.com>
Signed-off-by: Junhwan Park <junhwan.park@samsung.com>
6 years agoaudio: import audio framework from NuttX
Ivan [Mon, 29 May 2017 11:15:28 +0000 (20:15 +0900)]
audio: import audio framework from NuttX

Audio subsystem migrated from Nuttx prior to start defelopment of
audio codec and I2S drivers.

Change-Id: I442147d5481af28653de5d7e49ca463341a06b0b
Signed-off-by: Ivan <ivan.galkin@samsung.com>
Signed-off-by: Bongryul Lee <bongryul.lee@samsung.com>
Signed-off-by: Junhwan Park <junhwan.park@samsung.com>
6 years agoRevert "Initial commit of I2S minimal driver without of any BSP support for any hardware"
Ivan Galkin [Sun, 27 Aug 2017 05:24:56 +0000 (14:24 +0900)]
Revert "Initial commit of I2S minimal driver without of any BSP support for any hardware"

This reverts commit 146b9e3f105c4e15b1d90fc02ef63705311d0ef3.

Conflicts:
os/drivers/audio/Make.defs

6 years agoRevert "Audio devices and audio pipeline buffer support"
Ivan Galkin [Sun, 27 Aug 2017 05:18:44 +0000 (14:18 +0900)]
Revert "Audio devices and audio pipeline buffer support"

This reverts commit bba9f1f8265e900131961fdfa4dd5bd9a180db60.

6 years agos5j/gpio: fix incorrect pinmux configuration on I2S
Ivan [Tue, 25 Apr 2017 13:47:04 +0000 (22:47 +0900)]
s5j/gpio: fix incorrect pinmux configuration on I2S

Change-Id: Ic97a2ca79220efd94725afab52888d792f2b29a1
Signed-off-by: Ivan <ivan.galkin@samsung.com>
6 years agos5j/i2s: Add device driver for I2S
Ivan [Mon, 24 Apr 2017 18:44:42 +0000 (03:44 +0900)]
s5j/i2s: Add device driver for I2S

I2S supports only 48KHz Stereo playback.
I2S supports both read and write channels.

Change-Id: Iba94830758e5b90a56fe33e33333f3709d6e2823
Signed-off-by: Ivan <ivan.galkin@samsung.com>
Signed-off-by: Bongryul Lee <bongryul.lee@samsung.com>
Signed-off-by: Junhwan Park <junhwan.park@samsung.com>
6 years agoMerge pull request #437 from jeongchanKim/kernel_sample
sunghan-chang [Fri, 25 Aug 2017 01:19:25 +0000 (10:19 +0900)]
Merge pull request #437 from jeongchanKim/kernel_sample

Add kernel_sample config for artik053

6 years agoAdd kernel_sample config for artik053
jc_.kim [Tue, 22 Aug 2017 03:56:56 +0000 (12:56 +0900)]
Add kernel_sample config for artik053