This adds the enable/disable hooks for the port clock to sh-sci.
Signed-off-by: dmitry pervushin <dimka@nomadgs.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
/* Break timer */
struct timer_list break_timer;
int break_flag;
+
+ /* Port clock */
+ struct clk *clk;
};
#ifdef CONFIG_SH_KGDB
if (s->enable)
s->enable(port);
+ s->clk = clk_get(NULL, "module_clk");
+
sci_request_irq(s);
sci_start_tx(port);
sci_start_rx(port, 1);
if (s->disable)
s->disable(port);
+
+ clk_put(s->clk);
+ s->clk = NULL;
}
static void sci_set_termios(struct uart_port *port, struct ktermios *termios,
default:
{
#if defined(CONFIG_SUPERH) && !defined(CONFIG_SUPERH64)
- struct clk *clk = clk_get(NULL, "module_clk");
- t = SCBRR_VALUE(baud, clk_get_rate(clk));
- clk_put(clk);
+ t = SCBRR_VALUE(baud, clk_get_rate(s->clk));
#else
t = SCBRR_VALUE(baud);
#endif