/**

 * @file   gpio-mst.h

 * @brief  Contains common definitions for GPIO control 

 *

 * Copyright (c) 2018 Samsung Electronics Co., Ltd.

 **/

#ifndef __GPIO_MST_H__
#define __GPIO_MST_H__

#define NUM_GPIO_MST	2

/* MST solution */
#if !defined(PHYS_DEV_NAME)
#define PHYS_DEV_NAME "/dev/phys"
#endif
uint32_t gpio_phys_to_vaddr();
uint32_t gpio_set_mst_init();
uint32_t gpio_set_mst_exit();
uint32_t gpio_set_mst_data(uint8_t data, const uint8_t idx, uint8_t pin);


#endif /* __GPIO_MST_H__ */



