2015-07-21 05:04:22 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011-2015 Masahiro Yamada <yamada.masahiro@socionext.com>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
|
|
*/
|
|
|
|
|
2016-01-08 16:51:13 +00:00
|
|
|
#include "../init.h"
|
|
|
|
#include "../sg-regs.h"
|
2015-07-21 05:04:22 +00:00
|
|
|
|
2015-09-21 15:27:39 +00:00
|
|
|
void ph1_sld3_pin_init(void)
|
2015-07-21 05:04:22 +00:00
|
|
|
{
|
2016-02-02 12:11:39 +00:00
|
|
|
#ifdef CONFIG_USB_EHCI
|
2015-09-11 11:17:48 +00:00
|
|
|
sg_set_pinsel(13, 0, 4, 4); /* USB0OC */
|
|
|
|
sg_set_pinsel(14, 1, 4, 4); /* USB0VBUS */
|
2015-07-21 05:04:22 +00:00
|
|
|
|
2015-09-11 11:17:48 +00:00
|
|
|
sg_set_pinsel(15, 0, 4, 4); /* USB1OC */
|
|
|
|
sg_set_pinsel(16, 1, 4, 4); /* USB1VBUS */
|
2015-07-21 05:04:22 +00:00
|
|
|
|
2015-09-11 11:17:48 +00:00
|
|
|
sg_set_pinsel(17, 0, 4, 4); /* USB2OC */
|
|
|
|
sg_set_pinsel(18, 1, 4, 4); /* USB2VBUS */
|
2015-07-21 05:04:22 +00:00
|
|
|
|
2015-09-11 11:17:48 +00:00
|
|
|
sg_set_pinsel(19, 0, 4, 4); /* USB3OC */
|
|
|
|
sg_set_pinsel(20, 1, 4, 4); /* USB3VBUS */
|
2015-07-21 05:04:22 +00:00
|
|
|
#endif
|
|
|
|
}
|