sidk_s5jt200: add to support S8300 IC
authorJihoon Park <jh6186.park@samsung.com>
Fri, 31 Mar 2017 11:38:18 +0000 (20:38 +0900)
committerHeesub Shin <heesub.shin@samsung.com>
Tue, 18 Apr 2017 03:02:04 +0000 (12:02 +0900)
SIDK S5JT200 evaluation board has S8300 IC which regulates LED
brightness through pulse width modulation (PWM) inputs.

Change-Id: I667279d242716ca8b3cd566a93a0a48cfe61fa34
Signed-off-by: Jihoon Park <jh6186.park@samsung.com>
os/arch/arm/src/sidk_s5jt200/Kconfig
os/arch/arm/src/sidk_s5jt200/src/Makefile
os/arch/arm/src/sidk_s5jt200/src/s5jt200_boot.c
os/arch/arm/src/sidk_s5jt200/src/s5jt200_led.c [new file with mode: 0644]

index 999a24c..74801cf 100644 (file)
@@ -13,6 +13,14 @@ config SIDK_S5JT200_TLC59116
                SIDK S5JT200 evaluation board has TLC59116 IC attached to
                its I2C bus. It can generate PWM signals to control RGB LEDs.
 
+config SIDK_S5JT200_S8300
+       bool "Support S8300 IC"
+       default n
+       depends on S5J_PWM
+       ---help---
+               SIDK S5JT200 evaluation board has S8300 linear LED driver IC
+               which is driven by PWMs from S5J chipset.
+
 config SIDK_S5JT200_PWM_CHNUM
        int "Number of PWM channel"
        default 6
index fad0baa..bf950e2 100644 (file)
@@ -63,6 +63,10 @@ endif
 
 CSRCS += s5jt200_pwm.c
 
+ifeq ($(CONFIG_SIDK_S5JT200_S8300),y)
+CSRCS += s5jt200_led.c
+endif
+
 ifeq ($(CONFIG_ARCH_BUTTONS),y)
 CSRCS += s5jt200_buttons.c
 endif
index 3c4a6e6..20d76c5 100644 (file)
@@ -214,5 +214,9 @@ void board_initialize(void)
 #ifdef CONFIG_SIDK_S5JT200_TLC59116
        tlc59116_initialize();
 #endif
+
+#ifdef CONFIG_SIDK_S5JT200_S8300
+       s5j_ledinitialize();
+#endif
 }
 #endif /* CONFIG_BOARD_INITIALIZE */
diff --git a/os/arch/arm/src/sidk_s5jt200/src/s5jt200_led.c b/os/arch/arm/src/sidk_s5jt200/src/s5jt200_led.c
new file mode 100644 (file)
index 0000000..aecba05
--- /dev/null
@@ -0,0 +1,187 @@
+/****************************************************************************
+ *
+ * Copyright 2017 Samsung Electronics All Rights Reserved.
+ *
+ * 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.
+ *
+ ****************************************************************************/
+/****************************************************************************
+ * arch/arm/src/sidk_s5jt200/src/s5jt200_led.c
+ *
+ *   Copyright (C) 2009, 2011, 2013, 2015 Gregory Nutt. All rights reserved.
+ *   Author: Gregory Nutt <gnutt@nuttx.org>
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in
+ *    the documentation and/or other materials provided with the
+ *    distribution.
+ * 3. Neither the name NuttX nor the names of its contributors may be
+ *    used to endorse or promote products derived from this software
+ *    without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+ * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+ * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
+ * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
+ * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
+ * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGE.
+ *
+ ****************************************************************************/
+
+/****************************************************************************
+ * Included Files
+ ****************************************************************************/
+#include <tinyara/config.h>
+
+#include <debug.h>
+#include <assert.h>
+#include <errno.h>
+#include <sys/types.h>
+#include <tinyara/pwm.h>
+
+#include <tinyara/board.h>
+#include <arch/board/board.h>
+
+pid_t g_rgbled_tid;
+FAR struct pwm_lowerhalf_s    *ledr;
+FAR struct pwm_lowerhalf_s    *ledg;
+FAR struct pwm_lowerhalf_s    *ledb;
+
+int s5jt200_rgbled_state_task(void)
+{
+       char freq;
+       struct pwm_info_s info;
+
+       info.duty = 30;
+
+       while(1) {
+               /* pwm pulse frequency will be set from 0KHz to 50Khz */
+               for (freq = 0; freq < 50; freq++) {
+                       info.frequency = freq * 1000;
+
+                       switch(freq % 3) {
+                       case 0:
+                               ledb->ops->start(ledr, &info);
+                               break;
+                       case 1:
+                               ledg->ops->start(ledg, &info);
+                               break;
+                       case 2:
+                               ledr->ops->start(ledb, &info);
+                               break;
+                       default:
+                               break;
+                       }
+
+                       sleep(1);
+               }
+       }
+
+       return OK;
+}
+
+/*
+ * PWM1 to B1 Out
+ * PWM2 to G1 Out
+ * PWM3 to R1 Out
+ */
+int s5jt200_rgbled_setup(void)
+{
+       static bool initialized = false;
+       struct pwm_info_s info;
+
+       /* Have we already initialized? */
+       if (!initialized) {
+               lldbg("RGB on!!\n");
+
+               /* Initialize LED B */
+               /* Call s5j_pwminitialize() to get an instance of the PWM interface */
+               ledb = (struct pwm_lowerhalf_s*)s5j_pwminitialize(1);
+               if (!ledb) {
+                       lldbg("ERROR: Failed to get the STM32 PWM lower half to LEDR\n");
+                       return -ENODEV;
+               }
+
+               /* Define frequency and duty cycle */
+               info.frequency = 5000;
+               info.duty = 20;
+
+               ledb->ops->setup(ledb);
+               ledb->ops->start(ledb, &info);
+
+               /* Initialize LED G */
+               /* Call s5j_pwminitialize() to get an instance of the PWM interface */
+               ledg = (struct pwm_lowerhalf_s*)s5j_pwminitialize(2);
+               if (!ledg) {
+                       lldbg("ERROR: Failed to get the STM32 PWM lower half to LEDG\n");
+                       return -ENODEV;
+               }
+
+               ledg->ops->setup(ledg);
+               ledg->ops->start(ledg, &info);
+
+               /* Initialize LED R */
+               /* Call s5j_pwminitialize() to get an instance of the PWM interface */
+               ledr = (struct pwm_lowerhalf_s*)s5j_pwminitialize(3);
+               if (!ledr) {
+                       lldbg("ERROR: Failed to get the STM32 PWM lower half to LEDB\n");
+                       return -ENODEV;
+               }
+
+               ledr->ops->setup(ledr);
+               ledr->ops->start(ledr, &info);
+
+#ifdef CONFIG_RGBLED
+               /* Register the RGB LED diver at "/dev/rgbled0" */
+               ret = rgbled_register("/dev/rgbled0", ledr, ledg, ledb);
+               if (ret < 0) {
+                       lldbg("ERROR: rgbled_register failed: %d\n", ret);
+                       return ret;
+               }
+#endif
+
+               /* Now we are initialized */
+               initialized = true;
+       }
+
+       return OK;
+}
+
+int s5j_ledinitialize(void)
+{
+       /* RGB LED controlled by S8300 LED DRIVER ID with PWM */
+       s5jt200_rgbled_setup();
+
+       g_rgbled_tid = task_create("s5jt200 rgbstate", 100, 1024,
+                                       s5jt200_rgbled_state_task, NULL);
+       lldbg("Create rgbled task..\n");
+
+       if (!g_rgbled_tid) {
+               lldbg("Failed to run rgbled task..\n");
+               return -ESRCH;
+       }
+
+       return OK;
+}